Question: Given the following Java classes, what will be the printed output of executing the Java statement: new Sub().go(); public class Super { public Super()
Given the following Java classes, what will be the printed output of executing the Java statement: new Sub().go(); public class Super { public Super() { System.out.print("S"); } public void go() { System.out.print("g"); } } public class Sub extends Super { public Sub() { System.out.print("B"); } @Override public void go() { System.out.print("o");} }
Step by Step Solution
3.41 Rating (154 Votes )
There are 3 Steps involved in it
d SBo The output will be SBO because the subclass will inherit the pri... View full answer
Get step-by-step solutions from verified subject matter experts
