Which statement will correctly call the super
class's show()
method in the following scenario?
class Parent {
void show() {
System.out.println("Parent show");
}
}
class Child extends Parent {
void show() {
//////////// Insert statement here //////////////////
System.out.println("Child show");
}
}