Area and Arrays

Area and Arrays

10th - 12th Grade

15 Qs

quiz-placeholder

Similar activities

OOP - Java Classes

OOP - Java Classes

12th Grade - University

15 Qs

1D Arrays

1D Arrays

9th Grade - University

14 Qs

Java Base

Java Base

9th - 12th Grade

19 Qs

Unit 6 Comp Sci A Arrays

Unit 6 Comp Sci A Arrays

10th - 12th Grade

14 Qs

Unit 6 Computer Science

Unit 6 Computer Science

10th - 12th Grade

14 Qs

APCSA Unit 6 Review Arrays

APCSA Unit 6 Review Arrays

10th - 12th Grade

14 Qs

Arrays in Java

Arrays in Java

9th - 12th Grade

20 Qs

Single Array

Single Array

10th - 12th Grade

15 Qs

Area and Arrays

Area and Arrays

Assessment

Quiz

Computers

10th - 12th Grade

Hard

Created by

Barbara White

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the following segment of code print out? int[] numArray = { 2, 7, 4, 12, 0, 2 };
System.out.println(numArray[2]);
2
7
4
12

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the following segment of code print out? int[] numArray = { 2, 7, 4, 12, 0, 2 };
System.out.println(numArray[0]);
2
7
4
12

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the following segment of code print out? int[] numArray = { 2, 7, 4, 12, 0, 2 };
System.out.println(numArray[numArray.length - 1]);
2
0
12
6

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the following segment of code print out? int[] numArray = { 2, 7, 4, 12, 0, 2 };
System.out.println(numArray.length);
4
5
6
7

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the correct way to initialize an integer array with 10 positions?
int numbers = new int[10];
int[] numbers = new int[];
int[10] numbers = new int[10];
int[] numbers = new int[10];

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What value is stored in each of the 5 positions in this array? (What is the default value provided by Java?).
int[] numbers = new int[10];
null
1
0
nothing

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What value is at index 1 in this array?  String[] names = {"Mack", "Dennis", "Dee", "Charlie"};
Mack
Dennis
Dee
Charlie

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?