Advanced Arrays Flashcards

1
Q

What is the range of numeric indices for an array of size N?

A

0 to (N-1).

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

What is one advantage of using arrays?

A

Code optimization for efficient data retrieval or sorting.

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

What is a disadvantage of using arrays?

A

Fixed size

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

How is a specific value in an array referenced?

A

Using the array name followed by the index in brackets.

e.g array[i]

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

How do you declare an array in Java?

A

int[] array;

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

What does instantiating an array mean?

A

Creating an array object with a specified size.

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

What is bounds checking in arrays?

A

Ensures that an index used must specify a valid element.

0 to N-1

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

What exception is thrown if an array index is out of bounds?

A

ArrayIndexOutOfBoundsException.

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

What is an initializer list in arrays?

A

A way to instantiate and initialize an array in one step.

e.g int[] array = {1,67,42,7,9}

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

Fill in the blank: An entire array can be passed as a ______ to a method.

A

parameter.

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

What is a two-dimensional array?

A

An array that can be thought of as a table of elements with rows and columns.

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

How is a two-dimensional array declared in Java?

A

By specifying the size of each dimension separately.

e.g int[][]array = {{1, 8}, {6, 80}, {4, 23}}

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

What does the length property of a 2D array return?

A

The number of rows in the array.

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

What is the purpose of nested for loops in processing 2D arrays?

A

To process each element in the array.

For Loop within a For Loop

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

What is an anonymous array in Java?

A

An array that is created without a variable name.

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

How do you initialize a 5x5 array?

A

int[][] array = new int[5][5];

17
Q

Can an entire array be passed as a parameter to a method?

A

Yes, an array can be passed as a parameter

18
Q

What is a jagged array?

A

An array of arrays with different number of columns

19
Q

How is a jagged array declared in Java?

A

int array[][] = new int[3][]

20
Q

What is this array called?
new int [] {10, 22, 44, 66}

A

Anonymous Array

21
Q

Which statement won’t execute?

22
Q

Array is called nums

How would we print 7?

A

System.out.print(nums[1][2]);