After a file is saved, the name of the file is displayed on the ________

A) title bar B) Ribbon
C) Mini toolbar D) Quick Access Toolbar


A

Computer Science & Information Technology

You might also like to view...

What numbers are displayed in the list box when the button is clicked on?

``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim file As String = 'Beatles.txt" Dim fabFour() As String = FillArray(file) lstBox.Items.Add(Array.IndexOf(fabFour, "Ringo") lstBox.Items.Add(fabFour.Count - 1) End Sub Function FillArray(file As String) As String() Dim names() As String = IO.File.ReadAllLines(file) Return names End Function ``` Assume the four lines of the file Beatles.txt contain the following entries: John, Paul, Ringo, George. (A) 3 and 3 (B) 3 and 4 (C) 2 and 3 (D) 2 and 4

Computer Science & Information Technology

All of the following are menu categories in Flash EXCEPT ____.

A. File B. Animate C. Insert D. Help

Computer Science & Information Technology

To create a table from an existing range of data,

A) click in a cell and on the Home tab, click the Insert arrow in the Cells group. B) click the Insert tab and then click Table in the Tables group. C) select any cell in the worksheet then click Existing Range in the Tools group. D) click within the range, click the Table Tools Design tab, and then select Convert to Table.

Computer Science & Information Technology

Which tab displays the tools for creating charts?

A) Chart B) Data C) View D) Insert

Computer Science & Information Technology