Critical Thinking QuestionsCase 8-2Ann, in the engineering department, is working on a new presentation template. She sends you an email asking for your help with a couple of issues.
Ann also wants to know if, when she has finished creating the slide master, she can ensure that it will not be changed when she creates future presentations. You tell her ____.
a. no, there is no way to ensure thisc. yes, she can preserve it by selecting the thumbnail that represents it and then clicking the Do Not Discard button in the Slide Master groupb. yes, but only if she has designed more than one layout to create presentation slidesd. yes, she can preserve it by selecting the thumbnail that represents it and then clicking the Preserve button in the Edit Master group

What will be an ideal response?


Answer: D

Computer Science & Information Technology

You might also like to view...

Which of the following are valid on the left side of an assignment operator?

A. A numeric constant B. An expression such as 8*6 C. A declared constant D. A variable

Computer Science & Information Technology

The Factorial application calculates the factorial of an integer input by the user. The factorial of an integer is the product of each integer from one to that integer. For example, the factorial of 3—represented in mathematics as 3!— is 6 (1 2 3). While testing the application, you notice that it does not execute correctly. Use the debugger to find and correct the logic error(s) in the application. Figure 9.26 displays the correct out- put for the Factorial application.

5
a) Copying the template to your working directory. Copy the C:Examples Tutorial09ExercisesDebuggerFactorial directory to your C:SimplyJava directory.
b) Opening the Command Prompt window and changing directories. Open the Com- mand Prompt window by selecting Start > Programs > Accessories > Command Prompt. Change to your working directory by typing cd C:SimplyJavaDebug- gerFactorial.
c) Running the application. Run the Factorial application by typing java Factorial.
Enter the value 3 into the Enter number: JTextField and press the Calculate JBut- ton. Notice that the result displayed in the Factorial: JTextField (0) is not the cor- rect value (6).
d) Closing the application. Close your running application by clicking its close button. e) Compiling with the -g option. For debugging, compile the application by typing
javac -g Factorial.java.
f) Starting the debugger. Start the debugger by typing jdb.
g) Opening the template file. Open the Factorial.

Computer Science & Information Technology

What is another name for the notification area on Windows?

A) Control panels B) Balloon area C) Systray D) Device Manager

Computer Science & Information Technology

A query that prompts for input whenever it is run is a run-time query.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology