Can you provide a screenshot maybe?
There are many menu items.
Answer:
Honestly there could be a number of reasons
Explanation:
could be that you have a virus.
could be unfinished tasks
there's really lot of reasons this could be happening.
I suggest if its your browser task manager to reset your browser (via browser settings)
If its the system task manager, i suggest trying to restart the computer and go from there.
depending on the root of your problem, it may work, it may not.
Hope this helps :P
I don’t understand. Please tell me the question
This question is incomplete. The complete question, answer & explanation for this question is given in the attachment below.
Answer:ublic class Circle {
public int radius = 1;
public double diameter;
public double area;
//Constructor for circle class
public double Circle(int First){
return radius;
}
//Start set and get for radius
private double setRadius(int r){
return radius = 5;
}
private double getRadius(){
return radius;
}
//Start set and get for diameter
public double setDiamter(double d){
return diameter = 7;
}
public double getDiamter(){
return radius * diameter;
}