Search Header Logo

Array Basics Quiz

Authored by Arasaka Teacher

Computers

7th - 11th Grade

Used 1+ times

Array Basics Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code create? int[] numbers = new int[5];

An array that can store 5 decimal numbers

An array that can store 4 whole numbers

A single whole number variable with the value 5

An array that can store 5 whole numbers

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

After running int[] numbers = new int[5], what is the value of numbers[2]?

2

null

undefined

0

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int[] scores = {85, 92, 78, 95, 88};

int x = scores[1] + scores[3];

System.out.println(x);

What is the output of the code above?

163

187

170

180

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int[] values = {4, 8, 12, 16};

values[2] = values[0] + values[1];

System.out.println(values[2]);

What is the output of the code above?

12

16

20

24

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given: int[] data = new int[4]; Which of these lines will cause an ArrayIndexOutOfBoundsException?

data[0] = 5;

data[3] = 12;

data[4] = 8;

data[2] = 15;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which line correctly creates an array to store 6 string values?

String names[6];

String[] names = new String[6];

String[] names = 6;

names[] = new String[6];

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the index of the first element in an array?

1

-1

0

None of the above

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?