In the accompanying figure, the value $19.33 in the column labeled Hourly Pay Rate is formatted with a ____ dollar sign.

A. fixed
B. formatted
C. floating
D. none of the above


Answer: C

Computer Science & Information Technology

You might also like to view...

If the capacity of a vector named names is 20 and the size of names is 19, which of the following statements are legal?

a. names.push_back("myName"); b. names[18]="myNmae"; c. all of the above d. none of the above

Computer Science & Information Technology

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

1. When you use a strongly typed enumerator in C++11 you must prefix the enumerator with the name of the enum followed by the :: operator. 2. The names of enumerators in an enumerated data type must be enclosed in quotation marks. 3. In C++11 if you want to retrieve a strongly typed enumerator's underlying integer value, you must use a cast operator. 4. Given the structure definition shown, assume that circle1 and circle2 are variables of the Circle type and their members have been initialized. ``` struct Circle { double centerX; double centerY; double radius; }; ``` Then, is it true or false that the following statement correctly determines whether the two variables' members contain the same data? ``` if (circle1 == circle2) ```

Computer Science & Information Technology

A ____ is the general shape of the characters in the text.

A. property B. splash C. format D. font

Computer Science & Information Technology

Which of the following is not a chart element?

A. Chart area B. Plot area C. Legend D. Data area

Computer Science & Information Technology