JAVA ARRAYS Q1 Flashcards

1
Q

What is the value of nums[4] after the code is execude?

int[] nums = new int[10];

for (int i = 0 ; i < 10 ; i++) for (int j = 1 ; j <= 10 ; j++)

nums[i] += i;

A

40

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

What is the value of nums[5] after this code is executed?

int[] nums = new int[10];

for (int i = 0 ; i < 10 ; i++) for (int j = 1 ; j <= 10 ; j++) nums[i] += j;

A

55

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

What is the result of this code executing?

nums[2]=nums[1];

nums[1]=nums[2];

A

nums[1] and nums[2] will both have the original nums[1] value.

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

which value is not valid as an index for the following array?

String[] words = new String[10];

A

10

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

TRUE OR FALSE

Java array indexes starts at 0

A

TRUE

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

what is the value of nums[3]?

int[] nums = new int[5];

for(int i=0; i <= 5 ; i++)

nums[i]= 4 * i;

A

12

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

Multiple choice

Which is the correct way to declare an array of 10 integers? (select 2)

A.) int[] nums = new int[10];
B.) int[] nums1 = {3, 5, 6, 1, 2, 7, 8, 12, 45, 6};
C.) int[] nums = new int[11];
D.) int[] nums1 = {6, 1, 2, 7, 8, 12, 45, 6);

A

A & B

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

Multiple Choice

What is the correct way to assign 4 to the 3rd position of the nums1 array?

A.) nums1[2]=3;
B.) nums1[3]=3;
C.) nums1[3]=4;
D.) nums1[2]=4;

A

D.) nums1[2]=4;

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

What number is at index 6?

int[] nums1 = {6, 1, 2, 7, 8, 12, 45, 6};

A

45

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

What is the length of the following array: int[] data = {12, 34, 9, 0, -62, 88 };

A

6

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

TRUE OR FALSE

A java array can hold multiple types of data

A

False

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

Which of the following is FALSE about arrays on java

A.) The size of an array can be changed after creation.
B.) Array inexes must be integers.
C.) Arrays can hold Strings.
D.) Arrays can hold doubles.

A

A.) The size of an array can be changed after creation.

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

What are the legal indexes for the array ar, given the following declaration:int[] ar = {2, 4, 6, 8}

A

0, 1, 2, 3

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

For the array:int stats [5]; What is the range of the index?

A

0-4

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

for(int i=0; i<10; i++) numbers[i] = 2 * i + 1;//Which index of the array holds the value of 7?