Which of the following is NOT an option from the New Slide button arrow?

A) You can reuse slides from another presentation.
B) You can cut and paste slides from another PowerPoint presentation.
C) You can duplicate an existing slide.
D) You can select a different slide layout for a new slide.

B

Computer Science & Information Technology

You might also like to view...

List some attributes and operations that might be defined for a class called Meeting that represents a business meeting.

What will be an ideal response?

Computer Science & Information Technology

Write an application that performs various temperature conversions. The application should be capable of performing two types of con- versions: degrees Fahrenheit to degrees Celsius and degrees Celsius to degrees Fahrenheit. Your output should look like Fig. 13.24.


The conversion should take place when the user enters a temperature in one of the JTextFields and presses Enter. Pressing Enter while the focus is on a JTextField generates an ActionEvent and calls event handler actionPerformed.
a) Copying the template to your working directory. Copy the C:Examples Tutorial13ExercisesTemperatureConversion2 directory to your C:Simply- Java directory.
b) Opening the template file. Open the TemperatureConversion.java file in your text editor.
c) Completing the actionPerformed event handler for fahrenheitJTextField. On line 57, add code to call method fahrenheitJTextFieldActionPerformed. Pass to the method the ActionEvent object event as the argument.
d) Coding the fahrenheitJTextFieldActionPerformed method. Starting after the createUserInterface method, on line 97, declare the fahrenheit- JTextFieldActionPerformed method. This method should get the value from fahrenheitJTextField, convert it to Celsius and display it in

Computer Science & Information Technology