ArrayList Quiz Review

ArrayList Quiz Review

10th - 12th Grade

15 Qs

quiz-placeholder

Similar activities

Graphs of Hyperbolas

Graphs of Hyperbolas

9th - 12th Grade

15 Qs

Target Practice #8: Ordering Rationals

Target Practice #8: Ordering Rationals

7th - 12th Grade

20 Qs

IDT Unit 2 Review (practice for Test 2)

IDT Unit 2 Review (practice for Test 2)

8th - 12th Grade

20 Qs

7.4 Solving Polynomials in Factored Form

7.4 Solving Polynomials in Factored Form

8th - 10th Grade

10 Qs

Zero Product Property & Factoring

Zero Product Property & Factoring

9th - 12th Grade

15 Qs

Unit 6 Review APCS

Unit 6 Review APCS

9th - 12th Grade

18 Qs

Unit 7 Quiz review

Unit 7 Quiz review

12th Grade

10 Qs

Attributes of Polynomial Functions

Attributes of Polynomial Functions

9th - 12th Grade

14 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?