To modify a named range, you select its name in the Name Box, then click Name Manager in the:

A) Defined Names group on the HOME tab.
B) Edit Names group on the HOME tab.
C) Defined Names group on the FORMULAS tab.
D) Edit group on the FORMULAS tab.

C

Computer Science & Information Technology

You might also like to view...

On switch SW4, enable interface FastEthernet 0/10 where there is no active equipment. Does interface VLAN 1 come up?


What will be an ideal response?

Computer Science & Information Technology

This method should assign a random decimal number (in the range 0 to Int32.Max- Value) to decimal decNumber. Find the error(s) in the following code.

 void RandomDecimal()
 {
 decimal decNumber;
 Random objRandom = new Random();

 decNumber = objRandom.NextDouble();
 lblDisplay.Text = Convert.ToString( decNumber );

 } // end method RandomDecimal

Computer Science & Information Technology