Java Array Review Quiz

Java Array Review Quiz

12th Grade

9 Qs

quiz-placeholder

Similar activities

[AP CSP] Unit 4 Review: Functions and Lists

[AP CSP] Unit 4 Review: Functions and Lists

9th - 12th Grade

10 Qs

Unit 6 Arrays

Unit 6 Arrays

10th - 12th Grade

14 Qs

2.1.3 CSE Arrays

2.1.3 CSE Arrays

9th - 12th Grade

9 Qs

Understanding Pseudocode Basics

Understanding Pseudocode Basics

6th Grade - University

10 Qs

Practice for 10th AP Java quiz (old)

Practice for 10th AP Java quiz (old)

10th - 12th Grade

11 Qs

Basics of C Quiz

Basics of C Quiz

9th - 12th Grade

8 Qs

SC025: Control Structures Lecture Quiz

SC025: Control Structures Lecture Quiz

12th Grade

10 Qs

APCSA Unit 4

APCSA Unit 4

9th - 12th Grade

10 Qs

Java Array Review Quiz

Java Array Review Quiz

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Nichole Niebur

Used 10+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Media Image

What is printing to the screen?

Three

Two

One

Blast off!

Blast off!

Three

Two

One

Blast off!

One

Two

Three

Three

Blast off!

One

Two

Nothing, the program will not compile as written

Answer explanation

Media Image

Notice the loop is starting at the length (4) minus 1, so index 3 and then moving backwards through the array each time.

2.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Media Image

What will print to the screen?

3 3 6 4 8 13 6 7 9 7 4 12 12

6 7 12

4 9 12

3 3 12 12

Answer explanation

The loop asks u to print when the number matches the index location, and we start counting array indexes at 0, not 1.

3.

FILL IN THE BLANK QUESTION

5 mins • 2 pts

Media Image

What are the values of the array after the loop fully executes. If the array goes Out Of Bounds, please write OOBound.

4.

FILL IN THE BLANK QUESTION

5 mins • 2 pts

Media Image

What are the values of the array after the loop fully executes. If the array goes Out Of Bounds, please write OOBound.

5.

FILL IN THE BLANK QUESTION

5 mins • 2 pts

Media Image

What are the values of the array after the loop fully executes. If the array goes Out Of Bounds, please write OOBound.

6.

FILL IN THE BLANK QUESTION

5 mins • 2 pts

Media Image

What are the values of the array after the loop fully executes. If the array goes Out Of Bounds, please write OOBound.

7.

FILL IN THE BLANK QUESTION

5 mins • 2 pts

Media Image

What are the values of the array after the loop fully executes. If the array goes Out Of Bounds, please write OOBound.

8.

OPEN ENDED QUESTION

5 mins • 2 pts

Media Image

What prints to the screen after this code segment executes?​

Evaluate responses using AI:

OFF

9.

OPEN ENDED QUESTION

15 mins • 4 pts

Media Image

Write a Java program that will join all elements of the following array into a string with exclamation points between each element (!) then, print the string to the screen. 

You can write your code in BlueJ and upload a screenshot as your answer.

Evaluate responses using AI:

OFF