Multidimensional Arrays
- Ex-1
- Ex-2
- Ex-3
- Ex-4

Array Traversal
Exercise
Exercise 1
- Question
- Answer
- Create an array that can hold integers
- Fill up the array with user inputs
- Ask the user to enter a value that they want to find
- Show if the value is in the array

Exercise 2
- Question
- Answer
- Create an array that can hold integers
- Fill up the array with user inputs
- Ask the user to enter a value that they want to find
- Show how many times the value appears in the array

Exercise 3
- Question
- Answer
- Create an array that can hold integers
- Fill up the array with user inputs
- Ask the user to enter a value that they want to find
- Show whether the value is in the array or not

Exercise 4
- Question
- Answer
- Create an array that can hold integers
- Fill up the array with user inputs
- Ask the user to enter a value that they want to find
- Show on which index the value appears in the array

Exercise 5
- Question
- Answer
- Create an array that can hold integers
- Fill up the array with user inputs
- Find the largest value in the array
- Also display on which index the maximum value appears in the array

Exercise 6
- Question
- Answer
- Create a 2-dimensional array that can hold m x n integers
- Fill up the array with user inputs
- Display the contents of the array

Exercise 7
- Question
- Answer
- Create a 2-dimensional array that can hold m x n integers
- Fill up the array with user inputs
- Ask the user to enter a value that they want to find
- Show how many times the value appears in the array

Exercise 8
- Question
- Answer
- Create a 2-dimensional array that can hold m x n integers
- Fill up the array with user inputs
- Find the largest value in the array
- Also display on which index the maximum value appears in the array

