Predict the output of following Java program
class Test { int i; } class Main { public static void main(String args[]) { Test t = new Test(); System.out.println(t.i); } } |
(A) garbage value
(B) 0
(C) compiler error
(D) runtime error
Answer: (B)
Explanation: In Java, fields of classes and objects that do not have an explicit initializer and elements of arrays are automatically initialized with the default value for their type (false for boolean, 0 for all numerical types, null for all reference types). Local variables in Java must be definitely assigned to before they are accessed, or it is a compile error.
Quiz of this Question
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.