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

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. Only the public can be used.
b. Only the protected can be used.
c. public, protected, and private can be used.
d. public and protected both can be used.

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!