L7 Flashcards

1
Q

What is an array in C#?

A

An array is a collection of variables (elements) of the same type, identified by an index starting at 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you declare and initialize a one-dimensional array in C#?

A

int[] myArray = { 1, 2, 3, 4, 5 };

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the default value of array elements in C#?

A

Array elements are initialized to their default values (e.g., 0 for integers, null for strings, false for booleans).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you create an array with a fixed length?

A

int[] myArray = new int[6]; // Creates an array with 6 elements initialized to 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How can you access or modify an element in an array?

A

Use the element’s index:

myArray[0] = 10; // Assigns 10 to the first element.
int firstElement = myArray[0]; // Accesses the first element.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What happens if you try to access an array index out of bounds?

A

An IndexOutOfRangeException is thrown.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the purpose of the foreach loop with arrays?

A

The foreach loop iterates through each element of an array.

foreach (int number in myArray) {
Console.WriteLine(number);
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do you iterate through an array using a for loop?

A

for (int i = 0; i < myArray.Length; i++) {
Console.WriteLine(myArray[i]);
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you create and initialize a multidimensional array in C#?

A

int[,] matrix = {
{1, 2, 3},
{4, 5, 6}
};

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you access elements in a two-dimensional array?

A

Use two indices:

int value = matrix[1, 2]; // Accesses row 1, column 2.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the difference between a one-dimensional and two-dimensional array?

A

One-dimensional array: Linear structure (e.g., int[]).

Two-dimensional array: Grid-like structure with rows and columns (e.g., int[,] ).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you read input into an array from the console?

A

int n = int.Parse(Console.ReadLine());
int[] array = new int[n];
for (int i = 0; i < n; i++) {
array[i] = int.Parse(Console.ReadLine());
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you print an array to the console?

A

foreach (int value in array) {
Console.WriteLine(value);
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the purpose of the Length property in arrays?

A

The Length property returns the total number of elements in an array.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do you declare an array of strings in C#?

A

string[] daysOfWeek = { “Monday”, “Tuesday”, “Wednesday” };

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are zero-based arrays?

A

Arrays in C# are zero-based, meaning the first element has an index of 0 and the last element has an index of Length - 1.

17
Q

How do you create a dynamic array in C#?

A

Use a collection like List<T> instead of an array.</T>

18
Q

How should you use arrays effectively in exams or projects?

A
  1. Know the syntax for declaring, initializing, and iterating arrays.
  2. Be careful with index boundaries to avoid exceptions.
  3. Use foreach for readability and for for flexibility.
19
Q

What is the best way to handle multidimensional arrays?

A

Always visualize rows and columns when working with two-dimensional arrays. Label indices for clarity in nested loops.

20
Q

How do you choose between arrays and collections?

A

Use arrays for fixed sizes and collections (e.g., List<T>) for dynamic resizing.</T>