Java Array

Java Array

University

10 Qs

quiz-placeholder

Similar activities

2025_PE_U4_act19

2025_PE_U4_act19

University

10 Qs

Arrays in CQuiz

Arrays in CQuiz

1st Grade - University

10 Qs

Aula07 - Matrizes

Aula07 - Matrizes

University

12 Qs

SWE111_quiz 2

SWE111_quiz 2

University

10 Qs

Computer Programming I Finals

Computer Programming I Finals

University

11 Qs

แข่งขันcodingม.ปลาย

แข่งขันcodingม.ปลาย

12th Grade - University

15 Qs

Refresh Python

Refresh Python

University

10 Qs

Test wiedzy: Tablice jednowymiarowe w C++

Test wiedzy: Tablice jednowymiarowe w C++

10th Grade - University

15 Qs

Java Array

Java Array

Assessment

Quiz

Information Technology (IT)

University

Medium

Created by

Adlina Anwar

Used 22+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the default value of an array element of type int in Java?

0

null

undefined

0.0

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you find the length of an array in Java?

  • arr.length()

arr.length

arr.size()

arr.capacity()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the wrong way to creates an array of strings?

A) String[] arr = new String[5];

B) String arr = new String[5];

C) String[] arr; arr = new String[5];

D) both A and C

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output?

1

4

3

5

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you initialize an array with the values 1, 2, 3, 4, and 5?

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

int[] arr = new int[5]

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

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the index of the first element in an array?

-1

  • 1

0

2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What will the following code print?

1

2

3

4

5

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?