Java | Arrays | Question 4
class Test { public static void main(String args[]) { int arr[] = new int [ 2 ]; System.out.println(arr[ 0 ]); System.out.println(arr[ 1 ]); } } |
(A)
0 0
(B)
garbage value garbage value
(C) Compiler Error
(D) Exception
Answer: (A)
Explanation: Java arrays are first class objects and all members of objects are initialized with default values like o, null.
Quiz of this Question
Please Login to comment...