Answer:
Make a goal
Explanation:
She could make a goal achieve it and reward herself. Do this multiple times and she will be done
if alone, you would give care first for which situation
The answer is B: Annotating with the pen or highlighter
When you annotate a word or a phrase in PowerPoint, you put emphasis on that word or phrase during a presentation. If something is not clear, you can always jump back to that previous point in your presentation. To annotate a phrase on your slide, right click on your slide and choose pointer options. You can either choose to use a “Pen” or a “Highlighter”
Answer:
public class num8 {
public static void main(String[] args) {
System.out.println("Average Temperature in New York is 85 degrees fahrenheit");
System.out.println("Average Temperature in Denver is 88 degrees fahrenheit");
System.out.println("Average Temperature in Phoenix is 106 degrees fahrenheit");
// Calculating the new average Temperatures
System.out.println("The New Average Temperature in New York " +
"is "+ ((0.02*85)+85 )+ " degrees fahrenheit");
System.out.println("The New Average Temperature in Denver " +
"is " +((0.02*88)+88 )+ " degrees fahrenheit");
System.out.println("The New Average Temperature in Phoenix " +
"is "+((0.02*106)+106 )+ " degrees fahrenheit");
}
}
Explanation:
- Using Java first display the previous average temperatures for the three cities as given in the question
- Then calculates the new average temperature by multiplying by 0.02, because of a 2 percent increase in the average temperature
- Display the new temperature using the System.out,println