Bootcamp Day 3 - Java Array

Quiz
•
Computers
•
University
•
Medium
Karthick M
Used 7+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following is the correct way to declare a multidimensional array in Java?
int array(5,5);
int[][] array = new int[5][5];
int array[] = new int[5,5];
array int[][] = new array[5][5];
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the default value of elements in a newly declared array of type double in Java?
0
0.0
Garbage value
null
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Identify the correct statement for the following code:
int arr[] = new int[5];
System.out.println(arr[5]);
Prints 0
Prints null
Compilation error
Runtime ArrayIndexOutOfBoundsException
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following statements correctly creates and initializes an array?
int arr[] = new int();
int arr[] = new int[5]{1,2,3,4,5};
int arr[] = {1,2,3,4,5};
int[] arr = new int[5] = {1,2,3,4,5};
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following array declarations is invalid?
char[] ch = new char[10];
float arr[] = new float[];
boolean[] flags = new boolean[2];
String[] names = {"John", "Doe"};
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will the following code output?
int[] a = {1, 2, 3};
int[] b = a;
b[0] = 10;
System.out.println(a[0]);
1
10
Compilation Error
0
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does Arrays.toString(arr) return for arr = new int[]{3, 4, 5}?
"[3 4 5]"
"3, 4, 5"
"[3, 4, 5]"
{3, 4, 5}
Create a free account and access millions of resources
Similar Resources on Wayground
12 questions
Array

Quiz
•
University
15 questions
Array Java

Quiz
•
University
20 questions
РЭУ тест по Python

Quiz
•
University
17 questions
Quiz 9

Quiz
•
University
20 questions
Pointers

Quiz
•
University
10 questions
Weekly Contest #3 - TechXNinjas

Quiz
•
University
15 questions
Java Programming

Quiz
•
University
15 questions
DATA STRUCTURES QUIZ

Quiz
•
University
Popular Resources on Wayground
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
20 questions
PBIS-HGMS

Quiz
•
6th - 8th Grade
10 questions
"LAST STOP ON MARKET STREET" Vocabulary Quiz

Quiz
•
3rd Grade
19 questions
Fractions to Decimals and Decimals to Fractions

Quiz
•
6th Grade
16 questions
Logic and Venn Diagrams

Quiz
•
12th Grade
15 questions
Compare and Order Decimals

Quiz
•
4th - 5th Grade
20 questions
Simplifying Fractions

Quiz
•
6th Grade
20 questions
Multiplication facts 1-12

Quiz
•
2nd - 3rd Grade