Question: Look at the following code and choose the right option for the word : / / Shape.java public class Shape { protected void display (

Look at the following code and choose the right option for the word :
// Shape.java
public class Shape {
protected void display(){
}
system.out.println("Display-base");
}
// Circle.java
public class Circle extends Shape {
access - modifier > void display(){
}
System.out.println("Display-derived");
}
a. public and protected both can be used.
b. Only the public can be used.
c. Only the protected can be used.
d. public, protected, and private can be used.
 Look at the following code and choose the right option for

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!