ArrayList Practice Questions

ArrayList Practice Questions

11th Grade

18 Qs

quiz-placeholder

Similar activities

Mid Semester Codeigniter

Mid Semester Codeigniter

11th Grade

20 Qs

QUIZ 3 MYOB XI

QUIZ 3 MYOB XI

11th - 12th Grade

20 Qs

Parcial - Adaptación

Parcial - Adaptación

11th - 12th Grade

20 Qs

Conceitos de Programação, códigos, e de array

Conceitos de Programação, códigos, e de array

11th Grade

20 Qs

Program_Vocab

Program_Vocab

11th Grade

20 Qs

CPT Practice

CPT Practice

9th - 12th Grade

13 Qs

GAMBAR SEDERHANA

GAMBAR SEDERHANA

11th Grade

20 Qs

IT Dasar

IT Dasar

1st - 12th Grade

15 Qs

ArrayList Practice Questions

ArrayList Practice Questions

Assessment

Quiz

Instructional Technology

11th Grade

Medium

Created by

Geoff Pritchard

Used 1+ times

FREE Resource

18 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What method is used to get the number of elements in an ArrayList?

length()

count()

size()

numberOfElements()

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is NOT true about ArrayLists?

They can hold primitive types directly

They are mutable

They are part of the java.util package

They can change size during runtime

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Why do ArrayLists use get and set methods instead of the index operator?

Because ArrayLists are not built-in types.

Because ArrayLists are a class with methods.

Because ArrayLists do not support indexing.

Because ArrayLists are immutable.

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which statement below is the correct way to retrieve the first element in the nums ArrayList?

nums.get(0)

nums[0]

nums(0)

nums[1]

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the starting index of an ArrayList?

1

0

-1

10

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What happens automatically when primitive types are added to an ArrayList?

They are converted to strings

They are wrapped in objects

They are ignored

They are stored as is

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the correct way to add an integer to an ArrayList in all Java versions?

list.add(new Integer(5));

list.add(5);

list.add(Integer.valueOf(5));

list.add(5.0);

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?