Array Basics Quiz

Array Basics Quiz

7th - 11th Grade

30 Qs

quiz-placeholder

Similar activities

AP CSA Unit 6 Arrays

AP CSA Unit 6 Arrays

10th - 12th Grade

26 Qs

Arrays and Algorithms

Arrays and Algorithms

10th - 12th Grade

26 Qs

Arrays Unit 6 AP CSA

Arrays Unit 6 AP CSA

10th - 12th Grade

26 Qs

CS Arrays

CS Arrays

10th - 12th Grade

26 Qs

AP CSA Unit Review

AP CSA Unit Review

11th - 12th Grade

25 Qs

Java Basics

Java Basics

11th - 12th Grade

35 Qs

Java Arrays and ArrayLists

Java Arrays and ArrayLists

11th Grade

25 Qs

Java Arrays

Java Arrays

11th Grade

25 Qs

Array Basics Quiz

Array Basics Quiz

Assessment

Quiz

Computers

7th - 11th Grade

Medium

Created by

Arasaka Teacher

Used 1+ times

FREE Resource

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

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?