Java 17 If a program has several objects declared as type Solid, the decision ab
ID: 3814096 • Letter: J
Question
Java 17
If a program has several objects declared as type Solid, the decision about which volume method to call will be resolved at run time. (B) If the Solid class were modified to provide a default implementation for the volume method, it would no longer need to be an abstract class. (C) If the Sphere and RectangularPrian classes failed to provide an implementation for the volume method, they would need to be declared as abstract classes. (D) The fact that there is no reasonable default implementation for the volume method in the Solid class suggests that it should be an abstract method. (E) Since Solid is abstract and its subclasses are nonabstract, polymorphism no longer applies when these classes are used in a program.Explanation / Answer
Please provide below classes.
Solid and Rectangularprism,Sphere,
and volume method
A,B,C,D is correct
Answer might be E.
If you provide sample code i can easily explain to you