Search Header Logo

Arrays Review

Authored by Adeline Finkler

Computers, Mathematics

9th - 12th Grade

Used 2+ times

Arrays Review
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to create an array?

int array = int[4];

new int array = {2,3,4,5};

int [] array = new int[4]

int [] array = new int {4}

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

An array is...

an object.

a variable.

a primitive type.

a string.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which would be considered an "element" of the array below?


double [] temp = {1.2, 3.4, 5.6, 7.8};

double

temp

[]

1.2

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement prints out the number 5 for this array:


int [] test = {5,4,3,2,1};

test[0];

test[1];

System.out.println(test[0]);

System.out.println(test[1]);

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How can I traverse an array?

Using a for loop.

Using a while loop.

Using an enhanced for loop.

Using an if statement.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would the output be for this code:


int [] array = new int[10];

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

null

0

2

error

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

Fill in the blank of the for loop so that it traverses the entire array.

length

i.length

names.length()

names.length

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?