Match each of the following terms to their meanings:I.Title barII.RibbonIII.Contextual TabIV.Dialog boxV.GalleryA.Contains a group of commands related to the selected objectB.Contains tabs, groups, and commandsC.Identifies the current file name and the application in which you are workingD.Provides access to more precise, but less frequently used, commandsE.Area that provides additional text styles, choices of chart styles, or transitions
Fill in the blank(s) with the appropriate word(s).
C, B, A, D, E
You might also like to view...
In the ____________ numbering system, all numeric values are written as sequences of the digits 0 and 1.
a. hexadecimal b. decimal c. octal d. binary
When executed against the database the following SQL statement will
``` query = “Select * FROM products WHERE productID=” _ & Request( “productid” ) ``` (a) cause an error. (b) store a record in the database. (c) retrieve a record from (d) none of the above.
A footnote is a citation that appears at the bottom of a page
Indicate whether the statement is true or false
(Enhanced Bubble Sort) Make the following simple modifications to improve the perfor- mance of the bubble sort you developed in Exercise 19.5:
a) After the first pass, the largest value is guaranteed to be in the highest-numbered element of the vector; after the second pass, the two highest values are “in place”; and soon. Instead of making nine comparisons (for a 10-element vector) on every pass, modify the bubble sort to make only the eight necessary comparisons on the second pass, seven on the third pass, and so on. b) The data in the vector may already be in the proper order or near-proper order, so why make nine passes (of a 10-element vector) if fewer will suffice? Modify the sort to check at the end of each pass whether any swaps have been made. If none have been made, the data must already be in the proper order, so the program should terminate. If swaps have been made, at least one more pass is needed.