The ________ tab is used to hide scroll bars, as well as row and column headings

Fill in the blank(s) with correct word


File

Computer Science & Information Technology

You might also like to view...

Which of the following best describes an assessment?

A) Evidenced-based examination that compares current practices against a specific internal or external criteria B) A focused privileged inspection to determine condition, locate weakness or vulnerabilities, and identity corrective actions C) Testing controls by performing vulnerability assessment tests that simulate real attacks D) Configuring the System and Security logs on each system to record and audit activities

Computer Science & Information Technology

What is the secondary administrator that can be specified for Intune called?

A. super user B. local administrator C. management user D. service administrator

Computer Science & Information Technology

Given the following array, create a variable named product that will give the product of 4 * 5.

``` var nums = new Array(3,4,5,6,7,8,-99); ``` a. ``` var fives = new Array(); for (j = 1; j < 11; j++) fives[j] = j + 5; ``` b. ``` var fives = new Array(); for (j = 1; j < 11; j++) fives[j] = j * 5; ``` c. ``` var fives = new Array(); fives[0] = 0; for (j = 1; j < 10; j++) fives[j] = fives[j-1] + 5; ``` d. ``` var fives = new Array(); for (j = 0; j < 11; j++) fives[j] = fives[j] + 1; ```

Computer Science & Information Technology

Tracing formulas draw ________ from a formula to cells that supply source data and to formulas that use the result of a formula

Fill in the blank(s) with correct word

Computer Science & Information Technology