The ________ is located at the bottom of the program window, contains information relative to the open file and is specific to each application.

A. title bar
B. Dialog Box Launcher
C. status bar
D. Quick Access Toolbar


Answer: C

Computer Science & Information Technology

You might also like to view...

To retrieve specific columns from a table, use _________ to separate the column names.

a. ? b. * c. , d. -

Computer Science & Information Technology

________ define the type and contents of a security descriptor.

A) SACLs B) Flags C) Owners D) DACLs

Computer Science & Information Technology

The basic unit of a Windows 2000 client/server network is a __________, a group of computers that share a directory database and have a common security policy.

a. workgroup b. node c. domain d. realm

Computer Science & Information Technology

In Exercise 8, you created an application that modeled a telephone keypad. We would like to improve the operation of the application. Here is a list of the improvements to be made:

• The first number in the number cannot be 0. If the user types 0 as the first number, do nothing with it. • Format the number using dashes, as follows: • 1-000-000-0000 if the first digit entered is a 1. • (000) 000-0000 if ten digits are entered. • 000-0000 if seven digits are entered. • Do not accept extra digits. This application is pretty simple for the most part. A number of buttons must be created and multi-way switch used to detect which button on the keypad was pressed. But if we set an integer value, the rest of the code is simple. Create a method that checks to see if the digit entered is valid. Create methods that format the number in the different ways.

Computer Science & Information Technology