Arrays

Arrays

10th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

Unit 6 Arrays

Unit 6 Arrays

10th - 12th Grade

14 Qs

AP CS A Unit 6 Quiz PRACTICE

AP CS A Unit 6 Quiz PRACTICE

9th - 12th Grade

10 Qs

C#

C#

11th Grade

10 Qs

AP Computer Science A Review 1

AP Computer Science A Review 1

10th - 12th Grade

15 Qs

Variables and Data Types

Variables and Data Types

10th - 12th Grade

10 Qs

Random Number Generation in Java

Random Number Generation in Java

12th Grade

13 Qs

ArrayLists

ArrayLists

11th - 12th Grade

10 Qs

Arrays

Arrays

12th Grade

10 Qs

Arrays

Arrays

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Daniel Wespetal

Used 524+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

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

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

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

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

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

4.

MULTIPLE CHOICE QUESTION

2 mins • 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

2 mins • 1 pt

What is the correct way to initialize an 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

2 mins • 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[5];
null
1
0
nothing

7.

MULTIPLE CHOICE QUESTION

2 mins • 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?