Answer:
2.
Explanation:
Annotating in PowerPoint is the create notes while delivering a PowerPoint presentation. This could be done in two ways.
First, right click with the mouse and select 'pointer options'. Then you can choose either pen or highlighter to circle certain word or highlight any line.
The second way of creating annotation is by going to View→Normal→Notes.
After you select 'notes', a pane will appear at the bottom of your presentation.
So, the correct answer that annotation tools menu is available in Normal. Thus option 2 is correct.
Answer:
informative, discrimiitive,critical thats the order
Answer:
Project managers use status reports to keep stakeholders informed of progress and monitor costs, risks, time and work. Project status reports allow project managers and stakeholders to visualize project data through charts and graphs.
Answer:
- import java.util.Scanner;
-
- public class Main {
- public static void main(String[] args) {
- Scanner input = new Scanner(System.in);
- String numStr = input.nextLine();
- double num;
- try{
- num = Double.parseDouble(numStr);
- }
- catch(NumberFormatException e){
- num = 0;
- System.out.println("Value entered cannot be converted to a floating point number.");
- }
- }
- }
Explanation:
The solution code is written in Java.
Firstly, we create a Scanner object and prompt user to input a number (Line 5-6). Next, we create a try -catch block and place the parseDouble inside the try block. If the input is invalid (e.g. "abc"), a NumberFormatException error will be thrown and captured and set the num to 0 and display the error message (Line 11 - 13).