PreTrainingCollectionsArrays

PreTrainingCollectionsArrays

Professional Development

9 Qs

quiz-placeholder

Similar activities

Blockchain Day 2 Final Quiz

Blockchain Day 2 Final Quiz

Professional Development

10 Qs

Estructura de datos II

Estructura de datos II

Professional Development

12 Qs

Blockchain Basics: Algorithm and Techniques

Blockchain Basics: Algorithm and Techniques

University - Professional Development

12 Qs

Java Collections

Java Collections

Professional Development

10 Qs

PJP Apr 23

PJP Apr 23

Professional Development

10 Qs

WCF - Day8

WCF - Day8

Professional Development

10 Qs

Android Fundamentals - Day 1: Java

Android Fundamentals - Day 1: Java

University - Professional Development

10 Qs

DDIA, lesson 3, Storage and Retrieval, DS that Power your DB

DDIA, lesson 3, Storage and Retrieval, DS that Power your DB

Professional Development

11 Qs

PreTrainingCollectionsArrays

PreTrainingCollectionsArrays

Assessment

Quiz

Computers, Professional Development

Professional Development

Medium

Created by

Keven N Mitchell

Used 22+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Which of the following is a difference between an Array and an ArrayList?

Arrays can change in size

ArrayLists can store primitive values

Arrays are not a class in the collections Framework

ArrayLists can be created with an array literal

2.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

How do we retrieve an element at a particular index from an ArrayList?

using square brackets

using the find method

using the get method

using the pop method

3.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

True/False: collections can contain primitive variables

True

False

4.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

Which of the following is true for a HashMap?

HashMaps can be used in a for-each loop

HashMaps can store duplicate keys

HashMaps store entries in Key,Value pairs

HashMaps can store primitive values

5.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Queues store values in __in, __out order

Last, First

First, Last

First, First

6.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Stacks store values in __in, __out order

Last, Last

First, First

Last, First

7.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

To pull an element from a queue and reduce the size by 1, we use the ____ method

find

push

poll

get

8.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Array indexes start at _

0

1

10

11

9.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

To get the 5th item in an array or ArrayList, we would get index _

6

5

4