Match the following components of Office 2013 and their function:

I. Backstage view
II. Quick Access Toolbar
III. title bar
IV. Ribbon
V. Dialog Box Launcher

A. easy access to commonly executed tasks
B. displays the current file name and application
C. used to print, save, open, close, and share a file
D. contains tabs, groups, and commands
E. opens a corresponding box that provides access to precise tools


C, A, B, D, E

Computer Science & Information Technology

You might also like to view...

________ refers to the size and positioning of nodes in the scene graph.

a. Arrangement b. Layout c. Structure d. Configuration

Computer Science & Information Technology

Which of the following code segments writes the contents of three parallel arrays named strStudentName, intID, and strMajor to a file in the format below? Assume all arrays have the same number of elements.

Vince Student, 1234, Computer Science Nancy Student, 4321, Electrical Engineering a. ```For intCount = 0 to strStudentName.Length - 1 outputFile.Write(strStudentName(intCount) outputFile.Write(“, “) outputFile.Write(intID(intCount)) outputFile.Write(“, “) outputFile.WriteLine(strMajor(intCount)) Next intCount ``` b. ```For intCount =0 to strStudentName.Length - 1 outputFile.WriteLine(strStudentName(intCount) & “, “) outputFile.WriteLine(intID(intCount) & “, “) outputFile.WriteLine(strMajor(intCount)) Next intCount ``` c. ``` For intCount = 0 to strStudentName.Length - 1 outputFile.Write(strStudentName(intCount)) outputFile.Write(“, “) outputFile.Write(intID(intCount)) outputFile.Write(“, “) outputFile.Write(strMajor(intCount)) Next intCount ``` d. ```For intCount = 1 to strStudentName.Length outputFile.Write(strStudentName(intCount) outputFile.Write(“, “) outputFile.Write(intID(intCount)) outputFile.Write(“, “) outputFile.Write(strMajor(intCount)) Next intCount ```

Computer Science & Information Technology

The Report Footer shows the calculated summary field on the left

Indicate whether the statement is true or false

Computer Science & Information Technology

The SQL standard provides a set of _____________ functions that enable you to calculate a single value from the rows in a result set or from the values returned by a value expression.

a. mathematical b. calculation c. summary d. aggregate

Computer Science & Information Technology