Toggle Navigation
Games
Blog
Class PIN
Join for Free
Sign in
Toggle Navigation
Games
PIN
Join for Free
Blog
Pricing
Contact us
Help center
Sign in
Study
Arrays
0
%
0
0
0
Back
Restart
What is the index of the last element of the array values? int[ ] values = new int[10]
9
Oops!
Okay!
What is the value that represents the length of the extra array that is declared in the following code segment?
22
Oops!
Okay!
What is the output of the following code segment?
3040
Oops!
Okay!
What is the problem in the following code segment? double[] score = new int[99];
Type mismatch
Oops!
Okay!
Which one of the following statements is correct for the given code segment?
b) Line 2 causes a bounds error because 3 is an invalid index number.
Oops!
Okay!
Write a Java statement to print the first element of the array values. int[ ] values = new int[10]
System.out.print(values[0]);
Oops!
Okay!
What is the content of rooster array after executing the following code segment?
7.3
Oops!
Okay!
What is the valid range of index values for an array of size 20?
0 to 19
Oops!
Okay!
What is the output of the given code segment?
2345
Oops!
Okay!
What output is generated by the following code segment?
4
Oops!
Okay!
What is the final output of the following code segment?
ArrayIndexOutOfBoundsException
Oops!
Okay!
What will be the output of the following code segment?
0
Oops!
Okay!
What is the final value of the variable counter after executing the following code segment?
6
Oops!
Okay!
Mention one disadvantage of using an enhanced for loop.
Cannot assign a value to an element of an array.
Oops!
Okay!
Your experience on this site will be improved by allowing cookies.
Allow cookies