Answer:
public Balloon(){
//Invokes the 2 argument constructor for balloon with relevant
//parameters
this(10,new Color(135,206,250));
}
Step-by-step explanation:
class Balloon{
//Private fields in the Balloon class
private double radius = 0;
private Color c = null;
// Constructor with two arguments - radius and Color
public Balloon(double radius,Color c){
this.radius = radius;
this.c = c;
}
// No argument constructor
public Balloon(){
//Invokes the 2 argument constructor for balloon with relevant
//parameters
this(10,new Color(135,206,250));
}
}