Question: class A { private void someMeth ( ) { System.out.println ( from class A ) ; } } class B extends A {

class A {
private void someMeth(){
System.out.println("from class A");
}
}
class B extends A {
public void someMeth(String x){
System.out.println("from 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.println("from class A");
}
}
class B extends A {
public void someMeth(String x){
System.out.println("from 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 blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!