Your parents,your school,google,your social media accounts
The answer is C to this question
Answer:
Check the explanation
Explanation:
//Ball.java
public abstract class Ball {
double value;
String color;
public Ball() {
}
public Ball(double value, String color) {
this.value = value;
this.color = color;
}
public abstract void howToPlay();
}
////////////////////////////////////////////
//SoccerBall.java
public class SoccerBall extends Ball {
public void howToPlay() {
System.out.println("Description to how to play soccer ball");
}
}
Answer:
im not sure
Explanation: is their supposed to be a picture or something?