Question: class A { private void someMeth ( ) { System.out.println ( from class A ) ; } } class B extends A {
class A
private void someMeth
System.out.printlnfrom class A;
class B extends A
public void someMethString x
System.out.printlnfrom class B: x;
What kind of object oriented methods implemented in the above code?
Group of answer choices
method overriding
method overloading
both method overriding and method overloading
neither method overriding nor method overloadingclass A
private void someMeth
System.out.printlnfrom class A;
class B extends A
public void someMethString x
System.out.printlnfrom class B: x;
What kind of object oriented methods implemented in the above code?
Group of answer choices
method overriding
method overloading
both method overriding and method overloading
neither method overriding nor method overloading
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
