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

Multiple-Choice Quiz on Java Arrays

Quiz
•
Other
•
University
•
Medium
Robin Arcilla
Used 5+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 2 pts
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
Similar Resources on Quizizz
10 questions
B4 - Common Array Algorithms

Quiz
•
University
10 questions
Java set3

Quiz
•
University
20 questions
Logika & Algoritma Pemrograman

Quiz
•
University
10 questions
Java Set 2

Quiz
•
University
10 questions
Structuri de date în C++

Quiz
•
7th Grade - University
10 questions
Recordando JavaScript

Quiz
•
University
13 questions
Java Programming Quiz

Quiz
•
University
10 questions
Praktisi Mengajar - Java Test

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade