Multiple-Choice Quiz on Java Arrays

Multiple-Choice Quiz on Java Arrays

University

15 Qs

quiz-placeholder

Similar activities

IT203 Java Unit4 Post Test

IT203 Java Unit4 Post Test

University

10 Qs

Pertemuan 3

Pertemuan 3

University

11 Qs

CODEATHON'22

CODEATHON'22

University

20 Qs

Post-test array c++

Post-test array c++

University

10 Qs

P3 Quiz 😸

P3 Quiz 😸

University

10 Qs

Data Structure 1

Data Structure 1

University

10 Qs

Javapie Quiz

Javapie Quiz

University

20 Qs

Java Arrays

Java Arrays

5th Grade - University

10 Qs

Multiple-Choice Quiz on Java Arrays

Multiple-Choice Quiz on Java Arrays

Assessment

Quiz

Other

University

Medium

Created by

Robin Arcilla

Used 5+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

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

5

6

7

8

2.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What is the output of the following code fragment? int[] egArray = { 2, 4, 6, 8, 10, 1, 3, 5, 7, 9 }; for (int index = 0; index < 5; index++) System.out.print(egArray[index] + " ");

2 4 6 8 10

2 4 6 8 1

2 4 6 8 0

2 4 6 8

3.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What is the output of the following code fragment? int[] egArray = { 2, 4, 6, 8, 10, 1, 3, 5, 7, 9 }; for (int index = 0; index < egArray.length; index++) System.out.print(egArray[index] + " ");

2 4 6 8 10 1 3 5 7 9

2 4 6 8 1 3 5 7 9

2 4 6 8 10

2 4 6 8

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What is the output of the following code fragment? int[] egArray = { 2, 4, 6, 8, 10, 1, 3, 5, 7, 9 }; for (int index = 0; index < egArray.length; index = index + 2) System.out.print(egArray[index] + " ");

2 6 10 3 7

2 8 10 5 9

2 6 10 7

2 8 3 7

5.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Examine the following program fragment: int[] array = { 1, 4, 3, 6, 8, 2, 5 }; int what = array[0]; for (int index = 0; index < array.length; index++) { if (array[index] > what) what = array[index]; } System.out.println(what); What does the fragment write to the monitor?

1

5

8

6

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Examine the following program fragment: int[] array = { 1, 4, 3, 6, 8, 2, 5 }; int what = array[0]; for (int index = 0; index < array.length; index++) { if (array[index] < what) what = array[index]; } System.out.println(what); What does the fragment write to the monitor?

1

5

8

0

7.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Examine the following program fragment: int[] array = { 1, 4, 3, 6 }; int what = 0; for (int index = 0; index < array.length; index++) { what = what + array[index]; } System.out.println(what); What does the fragment write to the monitor?

10

11

14

15

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?