Match the following buttons with their function:
I. Workbook
II. Worksheet
III. Active cell
IV. Name box
V. Cell
A. Where data will display when you type
B. Microsoft Excel file
C. The intersection of a row and a column
D. Primary work area in Excel
E. Displays the cell address of the active cell
B, D, A, E, C
You might also like to view...
What happens if a recursive function never reaches a base case?
a. the function returns the correct value b. the function returns an incorrect value c. the function terminates immediately d. an infinite sequence of recursive calls occurs
Answer the following statements true (T) or false (F)
1) A catch block can use a concise notation to catch exceptions related by inheritance. 2) After the last catch block, the required finally block provides code that always executes regardless of whether or not an exception occurs. 3) If a finally block appears after the last catch block, it is executed only if an exception is thrown. 4) The finally block is an ideal location for code that releases resources to prevent “resource leaks.” 5) C# does not guarantee that a finally block (if one is present) will be executed if a try block is exited via a return, break or continue statement.