What is the output? int[] a = {1, 2, 3, 4, 5}; System.out.println(a[a.length - 1]);

Java Array Questions

Quiz
•
Computers
•
University
•
Easy
Satish T
Used 3+ times
FREE Resource
50 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
1
4
5 (Correct)
Compilation error
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will happen? int[][] m = new int[2][2]; System.out.println(m[1][1]);
0 (Correct)
Compilation error
NullPointerException
ArrayIndexOutOfBoundsException
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be printed? int[] a = {5, 4, 3}; System.out.println(a[-1]);
5
-1
ArrayIndexOutOfBoundsException (Correct)
Compilation error
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Identify the result of the following snippet: int[][] arr = new int[2]; arr[0] = new int[2]; arr[1] = new int[3]; System.out.println(arr[1].length);
2
3 (Correct)
1
Compilation error
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which is valid declaration?
int arr[] = new int[3]; (Correct)
int[3] arr = new int[];
int[] arr = new int[];
int arr = new int[3];
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output? int[] a = {1, 2, 3, 4, 5}; System.out.println(a[a.length - 1]);
1
4
5 (Correct)
Compilation error
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output? int[] x = new int[]{1, 2, 3}; x = new int[]{4, 5}; System.out.println(x[1]);
1
2
5 (Correct)
Compilation error
Create a free account and access millions of resources
Similar Resources on Quizizz
50 questions
Quiz Python

Quiz
•
University
49 questions
Quiz on C Operators

Quiz
•
University
50 questions
codinggss

Quiz
•
University
50 questions
Orientation Quiz

Quiz
•
University - Professi...
50 questions
Quiz

Quiz
•
University
53 questions
C Programming Quiz

Quiz
•
University
50 questions
Python and C Programming Quiz

Quiz
•
University
47 questions
PPS TEST 4

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade