java - Arrays, Arraylist, vectors, wrapper class

java - Arrays, Arraylist, vectors, wrapper class

University

10 Qs

quiz-placeholder

Similar activities

CID421 Introduction to 3D CAD SOLIDWORK

CID421 Introduction to 3D CAD SOLIDWORK

University

12 Qs

Algoritma dan Pemrograman Bab 1

Algoritma dan Pemrograman Bab 1

University

15 Qs

ESBrotherX_Medical AI_Lecture

ESBrotherX_Medical AI_Lecture

University

7 Qs

GIS Unit-1

GIS Unit-1

University

15 Qs

Microcontroller

Microcontroller

11th Grade - University

10 Qs

Input, output and storage de

Input, output and storage de

8th Grade - Professional Development

14 Qs

Computer Architecture Unit 3

Computer Architecture Unit 3

University

15 Qs

Assessment 08

Assessment 08

University

15 Qs

java - Arrays, Arraylist, vectors, wrapper class

java - Arrays, Arraylist, vectors, wrapper class

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

Sowparnika A

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does array.length return?

The memory size of the array

The last element of the array

The number of elements in the array

The first element of the array

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

int[] numbers = {1, 2, 3, 4, 5};

System.out.println(numbers[2]);

1

2

3

4

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to instantiate a 2x3 (2 rows, 3 columns) two-dimensional array in Java?

int[][] array = new int[2][3];

int array[][] = {{1, 2, 3}, {4, 5, 6}};

int[] array = new int[2, 3];

Both A and B

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following Java code?

int[][] numbers = {{1, 2}, {3, 4}, {5, 6}};

System.out.println(numbers[1][1]);

1

2

3

4

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a Vector in Java?

A fixed-size collection of elements

A dynamic array that can grow or shrink in size

A collection that allows duplicate and does not preserve the insertion order

A high-performance, thread-safe collection designed for multi-threaded access

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you remove an element from a Vector?

Using the delete(int index) method

Using the removeElement(Object obj) method

Using the remove(int index) method

Both B and C are correct

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of Wrapper classes in Java?

To provide a way to use primitive data types as objects.

To enhance the performance of collections that store objects.

To provide a mechanism for synchronizing primitive data types.

To allow primitive data types to be used in generic collections.

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?