?You can add the DEVELOPER tab to the Ribbon with options in the _____ dialog box.

A. ?Customize Ribbon
B. ?Main Tabs list
C. ?Trust Center
D. ?none of the above


Answer: B

Computer Science & Information Technology

You might also like to view...

What is the value of y after the following code executes:

float y = 3.4 + sqrt (25.0);

Computer Science & Information Technology

Which statement about ultrabook computers is false?

a. Ultrabooks have the fastest optical drives. b. Ultrabooks are equipped with SSD drives for fast start-up. c. Ultrabooks typically weigh less than 3 pounds. d. Ultrabooks are available for either Windows or the OS X operating systems.

Computer Science & Information Technology

If you want to chart the value of a summed column, use a ________ chart

A) column B) line C) pie D) bar

Computer Science & Information Technology

Enhance the Flag Quiz application by counting the number of questions that were answered correctly. After all the questions have been answered, display a message in a JTextField that describes how well the user performed (Fig. 16.39). The JTextField, called commentJTextField, has already been added in the exercise template. The following table (Fig. 16.40) shows which messages to display:


a) Copying the template to your working directory. Copy the C:Examples Tutorial16ExercisesEnhancedFlagQuiz directory to your C:SimplyJava directory.
b) Opening the template file. Open the FlagQuiz.java file in your text editor.
c) Adding a variable to count the number of correct answers. On line 24, add a com- ment indicating that the variable you are about to create will be used to store the number of correct answers from the user. On line 25, declare int variable correct and initialize it to 0.
d) Counting the correct answers. On line 196, increment correct. This statement causes correct to be incremented each time a correct answer is submitted.
e) Displaying the message. Add a switch statement on lines 209–227 that displays the proper message in commentJTextField depending on the value of correct.
f) Saving the application. Save your modified source code file.
g) Opening the Command Prompt window and changing directories. Open the Com- mand Pro

Computer Science & Information Technology