Theme names are identified by their ________
A) comments B) thumbnails C) ScreenTips D) layouts
C
You might also like to view...
________ are characters that are not displayed on the keyboard but are available from the INSERT tab
A) Shapes B) Symbols C) Bullets D) Lines
The action of placing cell contents that have been copied or moved to the Clipboard intoanother location is called:
a. find and replace b. paste c. freeze panes
In list view, the Kind column lists the file type or the program that created the file.
Answer the following statement true (T) or false (F)
Which of the following loops counts backwards from 20 to 10?
A. Declare Numeric countDown = 20 While countdown > 0 Display countDown countDown = countDown - 1 End While B. Declare Numeric countDown = 20 While countdown > 10 Display countDown countDown = countDown - 1 End While C. Declare Numeric countDown = 20 While countdown = 10 Display countDown countDown = countDown - 1 End While D. Declare Numeric countDown = 20 While countdown > 9 Display countDown countDown = countDown - 1 End While