1. ARRAYS Loop through a 2D array and print each element to the console window.html
 2. ARRAYS Access elements of a 2D array in C#.html
 3. ARRAYS Create a 2D array and print its elements to the console window.html
 4. ARRAYS Change the element at position [1,1] of a 2D array to 7.html
 5. ARRAYS Access the first element of an array and print it to the console.html
 6. ARRAYS Create an array of integers and display its elements in the console window.html
 7. ARRAYS Using foreach loop to iterate through an array and print its elements.html
 8. ARRAYS Find the length of an array and display it in the console window.html
 9. ARRAYS Loop through an array and print all the elements.html
 10. ARRAYS Sort an Array in C#.html
 11. ARRAYS Change the value of an element in an integer array at a specified index.html
 12. CASTING Convert a decimal value to an integer value using explicit casting.html
 13. CASTING Explicitly cast a double variable to an integer.html
 14. implicit casting.html
 15. CASTING Implicit Casting in C# INTFLOAT.html
 16. SWITCH Using the `default` keyword in a switch statement.html
 17. IF Display a message based on user input using conditional statements.html
 18. IF Convert a given integer `num` to its corresponding string representation.html
 19. SWITCH Create a program that uses a switch statement to display the corresponding month of a given.html
 20. loop in C#.html
 21. LOOPS C# The DoWhile Loop Print numbers from 1 to 10 using DoWhile loop.html
 22. LOOPS Calculate the sum of all numbers between 1 and a given number using a dowhile loop.html
 23. multiplication table.html
 24. LOOPS Print all even numbers between 1 and 20 using a for loop.html
 25. LOOPS Iterate over an array of integers using foreach loop and print each element.html
 26. LOOPS Using break statement to exit a loop.html
 27. LOOPS Print all even numbers between 0 and 10 using a while loop.html
 28. MATH Calculate the absolute value of a number.html
 29. MATH Calculate the rounded value of a decimal number to the nearest integer.html
 30. Math Find the square root of a number.html
 31. passes a string parameter.html
 32. METHODS Create a C# method to calculate the sum of two integers.html
 33. optional parameters.html
 34. METHODS Calculate the sum of two numbers and display the result in the console window.html
 35. named arguments.html
 36. METHODS Overloading Calculate the area of a rectangle or a circle based on the given input.html
 37. METHODS Return the sum of two integers.html
 38. OPERATORS Calculate the sum of two numbers and display the result.html
 39. OPERATORS Divide two numbers and return the result.html
 40. OPERATORS Determine if two integers are equal.html
 41. OPERATORS Check if x is greater than y and return a boolean value.html
 42. OPERATORS Check if x is greater than or equal to y.html
 43. OPERATORS Find if x is less than y and return a boolean.html
 44. OPERATORS Logical AND operation exercse.html
 45. OPERATORS Logical Not Reverse the result, returns False if the result is true.html
 46. OPERATORS Check if a number is even or odd using logical OR operator.html
 47. OPERATORS Decrement the value of a variable by 1.html
 48. OPERATORS Calculate the remainder of dividing two integers.html
 49. OPERATORS Multiplication of two values in C#.html
 50. OPERATORS Check if two integer variables are not equal and print the result.html
 51. OPERATORS Increment a variables value by 1 using an operator.html
 52. OPERATORS Subtract two integers and return the result.html
 53. STRINGS Accessing Strings.html
 54. STRINGS Concatenate two strings using  a method.html
 55. STRINGS Using Backslash Escape Character to Print Quotes.html
 56. STRINGS Display a message using string interpolation.html
 57. STRINGS Find the index of a specific character in a string.html
 58. STRINGS Replace all occurrences of a character in a string.html
 59. STRINGS Reverse a given string.html
 60. STRINGS Extract a substring from a given string.html
 61. STRINGS Replace a substring in a given string.html