17. What will be the output of the following
Java program?
class selection_statements
{
public static void main(String args[])
{
int var 1 = 5;
int var2 = 6;
if ((var2 = 1) == var)
System.out.print(var2);
else
System.out.print(++var2);
}
}
Answers
Answered by
0
Answer:
class A {
public int i;
private int j;
}
class B extends A {
void display()
{
super.j = super.i + 1;
System.out.println(super.i + " " + super.j);
}
}
class inheritance {
public static void main(String args[])
{
B obj = new B();
obj.i = 1;
obj.j = 2;
obj.display();
}
}
Similar questions