ArrayList Quiz Review

ArrayList Quiz Review

10th - 12th Grade

15 Qs

quiz-placeholder

Similar activities

Elipse en el origen

Elipse en el origen

10th - 12th Grade

10 Qs

Persamaan dan Fungsi Kuadrat

Persamaan dan Fungsi Kuadrat

10th - 12th Grade

15 Qs

Kuiz Matematik Tingkatan 4(Asas Nombor)

Kuiz Matematik Tingkatan 4(Asas Nombor)

1st Grade - University

10 Qs

Linear Functions

Linear Functions

10th - 11th Grade

18 Qs

Factored Form and the Graph

Factored Form and the Graph

9th - 12th Grade

10 Qs

Penilaian untuk materi Refleksi kelas XI_IS

Penilaian untuk materi Refleksi kelas XI_IS

11th Grade - University

15 Qs

Intercepts

Intercepts

8th - 10th Grade

20 Qs

Comp Sci A Review Unit 7

Comp Sci A Review Unit 7

12th Grade

13 Qs

ArrayList Quiz Review

ArrayList Quiz Review

Assessment

Quiz

Mathematics

10th - 12th Grade

Medium

CCSS
6.SP.B.5C, HSS.ID.A.3

Standards-aligned

Created by

David Guy

Used 24+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which index is the last element in an ArrayList called nums at?

nums.length

nums.length-1

nums.size()

nums.size()-1

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

nums[0]

nums[1]

nums.first()

nums.get(0)

nums.get(1)

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

nums[1] = 5;

nums[2] = 5;

nums.set(1, 5);

nums.set(5,1);

nums.set(2, 5);

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

nums.remove(3);

nums.remove(1);

nums.remove(0);

nums.remove(2);

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

nums.add(2, 0);

nums.add(2, 1);

nums.add(0, 2);

nums.add(1, 2);

nums.add(2, 2);

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What will print when the following code executes?

[2,3]

[1,2,3]

[1,2]

[1,3]

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What will print when the following code executes?

["Sarah", "Destini", "Layla", "Sharrie"]

["Sarah", "Destini", "Anaya", "Layla", "Sharrie"]

["Sarah", "Layla", "Sharrie"]

["Destini", "Layla", "Sharrie", "Sarah"]

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?