Java Ch. 7 (arrays and ArrayLists

Java Ch. 7 (arrays and ArrayLists

10th - 12th Grade

29 Qs

quiz-placeholder

Similar activities

AP CSP Unit 7: Parameters, Returns, and Libraries

AP CSP Unit 7: Parameters, Returns, and Libraries

9th - 12th Grade

26 Qs

AP CS A FRQ ArrayLists

AP CS A FRQ ArrayLists

10th - 12th Grade

30 Qs

Java Arrays and ArrayLists

Java Arrays and ArrayLists

11th Grade

25 Qs

Informatica 3c - array ed ordinamento

Informatica 3c - array ed ordinamento

12th Grade

25 Qs

AP CSA Java Arrays

AP CSA Java Arrays

9th - 12th Grade

34 Qs

Babylon and Javascript Review

Babylon and Javascript Review

9th - 12th Grade

25 Qs

7.8.1: ArrayList Quiz

7.8.1: ArrayList Quiz

12th Grade

24 Qs

Graded IB Computer Science Units 1 and 2 Overview

Graded IB Computer Science Units 1 and 2 Overview

11th - 12th Grade

33 Qs

Java Ch. 7 (arrays and ArrayLists

Java Ch. 7 (arrays and ArrayLists

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Kyle Wiechens

Used 130+ times

FREE Resource

29 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 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

1 min • 1 pt

What is the first index of an array?

1

0

2

3

3.

MULTIPLE CHOICE QUESTION

1 min • 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

1 min • 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]);

5.

MULTIPLE CHOICE QUESTION

1 min • 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[];

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image
Given the following method, what would test return if
a = {0, 2, 3, 4} and v = 1?
-1
0
1
2

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What value is at index 1 in this array?  String[] names = {"Mack", "Dennis", "Dee", "Charlie"};
Mack
Dennis
Dee
Charlie

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?