To select a range by using the name box:

A) position the mouse pointer over the column headings holding the Alt key.
B) click in the name box and type the range address such as B15:D25 and then press Enter.
C) select the name box from the File menu and choose Range.
D) click in the first cell of the range, hold the Ctrl key, and then click in the last cell of the range.


B

Computer Science & Information Technology

You might also like to view...

What is wrong with the following recursive method that computes the sum of all of the odd positive integers less than or equal to n?

What will be an ideal response? ``` public int sumOfOdds(int n) { if(n%2 == 0) return sumOfOdds(n-1); else return n + sumOfOdds(n-2); } ```

Computer Science & Information Technology

Which of the following is a type of virtual switching that gives every VM its own physical NIC?

A. virtual bridging B. dedicated bridging C. routing D. NAT

Computer Science & Information Technology

________ in VBA consists of one or more procedures

A) A module B) Run time C) Design time D) A project

Computer Science & Information Technology

?Printed output is used in _____, which are output documents that are later entered back into the same or another information system.

A. ?milestone documents B. ?tender documents C. ?turnaround documents D. ?policy documents

Computer Science & Information Technology