Open In App

Java | Constructors | Question 1

Like Article
Like
Save
Share
Report

Predict the output?




package main;
class T {
  int t = 20;
}
class Main {
   public static void main(String args[]) {
      T t1 = new T();
      System.out.println(t1.t);
   }
}


(A) 20
(B) 0
(C) Compiler Error


Answer: (A)

Explanation: In Java, member variables can assigned a value with declaration. In C++, only static const variables can be assigned like this.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads