A table of figures can be created automatically from ____.
A. index entries
B. captions
C. page numbers
D. figure numbers
Answer: B
Computer Science & Information Technology
You might also like to view...
Which control statement which is best used when you know how many times to repeat the execution of a group of statements?
A. the do-while statement B. the for statement C. the switch statement D. the while statement
Computer Science & Information Technology
In the posttest syntax for a Do…Loop, the {While | Until} condition section is part of the ____ clause.
A. Execute B. Process C. Do D. Loop
Computer Science & Information Technology
int x, y;if (x < 4) y = 2;else if (x > 4){ if (x > 7) y = 4; else y = 6;}else y = 8;Based on the code above, what is the value of y if x = 5?
A. 2 B. 4 C. 6 D. 8
Computer Science & Information Technology
When used to format a date value, the marker _____ displays the Era component.?
A. ?P B. ?f C. ?C D. ?E
Computer Science & Information Technology