πŸ“Š JAVA
Q. What will be the output of the following Java code?
class A
{
int i;
int j;
A()
{
i = 1;
j = 2;
}
}
class Output
{
public static void main(String args[])
{
A obj1 = new A();
System.out.print(obj1.toString());
}
}
  • (A) true
  • (B) this
  • (C) String associated with obj1
  • (D) Compilation Error
πŸ’¬ Discuss
βœ… Correct Answer: (C) String associated with obj1

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
107
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Gopal Sharma
Publisher
πŸ“ˆ
89%
Success Rate