What Will Be The Output Of The Following Java Code P Pre #884
What will be the output of the following Java code? </p> <pre><code class="language-java"> class X { int a=4,b=8; } class Y extends X { public void B() { System.out.println(Math.pow(a,b)); } } class Z extends X { public void C() { System.out.println(Math.sqrt(a)); } } class V extends Y { public void D() { System.out.println(Math.cbrt(b)); } } public class Operations { public static void main(String[] args) { V obj=new V(); Z obj2=new Z(); obj.B(); obj.D(); obj2.C(); } } </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs111 OOP Object Oriented Programming Java. It can also be found in gs gs111 Inheritance (Using Java) - Hybrid Inheritance - Quiz No.2.
What will be the output of the following Java code?
class X { int a=4,b=8; } class Y extends X { public void B() { System.out.println(Math.pow(a,b)); } } class Z extends X { public void C() { System.out.println(Math.sqrt(a)); } } class V extends Y { public void D() { System.out.println(Math.cbrt(b)); } } public class Operations { public static void main(String[] args) { V obj=new V(); Z obj2=new Z(); obj.B(); obj.D(); obj2.C(); } }
2.0 2.0 2.0
1024.0 2.0 2.0
2.0 4.0 8.0
65536.0 2.0 2.0