Java 1D Arrays

Java 1D Arrays

9th Grade - University

14 Qs

quiz-placeholder

Similar activities

Algorithm analysis: divide & conquer theory

Algorithm analysis: divide & conquer theory

University

10 Qs

Lenguaje de Definición de Datos

Lenguaje de Definición de Datos

University

18 Qs

Bài 29. Nhận biết lỗi chương trình

Bài 29. Nhận biết lỗi chương trình

9th - 12th Grade

14 Qs

Programacion Orientada a Objetos

Programacion Orientada a Objetos

12th Grade - University

10 Qs

Data Structures: 1D,2D & List

Data Structures: 1D,2D & List

11th Grade

17 Qs

PBO Inheritance Episode 2

PBO Inheritance Episode 2

University

18 Qs

Loops

Loops

9th Grade

19 Qs

Basic Python Bug Squashing

Basic Python Bug Squashing

9th Grade

11 Qs

Java 1D Arrays

Java 1D Arrays

Assessment

Quiz

Computers

9th Grade - University

Hard

Created by

Thomas Martinez

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

14 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the legal indexes for the array ar, given the following declaration:
int[] ar = {2, 4, 6, 8 }

 0, 1, 2, 3
 1, 2, 3, 4
2, 4, 6, 8
 0, 2, 4, 6

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

For the array:

int stats[3];

What is the range of the index?

0 to 3

0 to 2

1 to 3

0 to 4

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int [] nums = {2, 3, 5, 8, 9, 11};

How would you access the fourth element in nums?

nums[4]

nums[3]

nums(4)

nums(3)

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

The first value of an array called quizzes can be accessed with which of the following statements?

quizzes[1] = 100;
quizzes[0] = 100;
quizzes[zero] = 100;
quizzes[one] = 100;

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which of the following statements outputs the fifth value in the quizzes array?

System.out.println(quizzes[5]);
quizzes[4];
quizzes[5];
System.out.println(quizzes[4]);

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Index values of an array range from ______________.

0 to length – 1
1 to length
0 to length
0 to length + 1

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Create an array of 12 strings called months.

String[] months = new String[12];
String months = new String[12];
String[] months = new String[];
String[12] months = new String[];

Create a free account and access millions of resources

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?