Array

Array

10th - 12th Grade

15 Qs

quiz-placeholder

Similar activities

Functions in C++

Functions in C++

11th Grade

20 Qs

Les variables sous Python

Les variables sous Python

10th - 12th Grade

10 Qs

Parcial-Dibujo

Parcial-Dibujo

12th Grade

10 Qs

OOP 1 Undiksha

OOP 1 Undiksha

12th Grade - University

13 Qs

 Unit 4 Advanced AP CSP

Unit 4 Advanced AP CSP

9th - 12th Grade

10 Qs

IP ADDRESSING AND ITS VERSION

IP ADDRESSING AND ITS VERSION

11th Grade

15 Qs

8525 AQA GCSE  3.1.1 Pseudo-code

8525 AQA GCSE 3.1.1 Pseudo-code

10th - 11th Grade

14 Qs

Array

Array

Assessment

Quiz

Computers

10th - 12th Grade

Practice Problem

Easy

Created by

Charles Martinez

Used 1+ 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

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

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?