Hi!to control nose bleeding is to sit down and firmly pinch the soft part of your nose,just above the nose strils,for at lest 10-15 minutes if that doesn't work it is best ot get a doctor.
Answer:
public class Fan {
/** Main method */
public static void main(String[] args) {
final int SLOW = 1; // Fan speed slow
final int MEDIUM = 2; // Fan speed medium
final int FAST = 3; // Fan speed fast
// Create two Fan objects
Fan fan1 = new Fan();
Fan fan2 = new Fan();
fan1.setSpeed(FAST);
fan1.setRadius(10);
fan1.setColor("yellow");
fan1.turnOn();
fan2.setSpeed(MEDIUM);
fan2.setRadius(5);
fan2.setColor("blue");
fan2.turnOff();
System.out.println(fan1.toString());
System.out.println(fan2.toString());
}
}
The correct answer is C. Obsessive-compulsive disorder
Explanation
Obsessive-compulsive disorder or OCD is a psychiatric or mental disorder in which people mainly shows compulsion or repetitive behaviors and obsession which become repetitive and automatic as the individual is unable to control these behaviors which leads to issues in the individual's daily life. Because of this, in OCDs behaviors such as counting certain elements compulsively, storing objects in a certain way, repetitive hand washing, doing certain actions a specific number of times and checking if the doors are locked over and over are common. Additionally, this type of disorder is linked to anxiety disorder as irrational anxiety and fears can lead to compulsions and disorders. Considering this, it can be concluded it is Obsessive-compulsive disorder the disorder that consists of behaviors such as repetitive hand washing, checking if doors are locked, etc.