Multiple-Choice Quiz on Java Arrays

Multiple-Choice Quiz on Java Arrays

University

15 Qs

quiz-placeholder

Similar activities

Taller 1 (4to): Captura y codificación de los datos en SPSS

Taller 1 (4to): Captura y codificación de los datos en SPSS

University

10 Qs

Políticas Públicas para Idosos no Brasil

Políticas Públicas para Idosos no Brasil

University - Professional Development

15 Qs

¿Qué tanto se ?

¿Qué tanto se ?

11th Grade - University

10 Qs

Personal finance 1

Personal finance 1

University

15 Qs

Rehab 105 Short Quiz 4 - Endterms

Rehab 105 Short Quiz 4 - Endterms

University

20 Qs

CCHU5001_Week 3_Quiz

CCHU5001_Week 3_Quiz

University

10 Qs

NHẬN DẠNG DIODE

NHẬN DẠNG DIODE

University

10 Qs

Pentagon

Pentagon

KG - Professional Development

10 Qs

Multiple-Choice Quiz on Java Arrays

Multiple-Choice Quiz on Java Arrays

Assessment

Quiz

Other

University

Practice Problem

Medium

Created by

Robin Arcilla

Used 5+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?