What will be the output of the code given below?
class A {
public int count;
public A() {
count = 10;
}
public int method1() {
int count = 20;
return this.count;
}
}
class B extends A {
public int method1() {
return this.count = 15;
}
public int method2() {
return 20;
}
}
class C extends B {
public int method2() {
return 40;
}
}
public class Tester {
public static void main(String args[]) {
A obj1 = new A();
B obj2 = new B();
C obj3 = new C();
System.out.println(obj1.method1() + obj3.method1() + obj3.method2());
}
}
75
65
70
45
To get all Self Assessment - Programming using Java Exam questions Join Telegram Group https://rebrand.ly/lex-telegram-236dee