To enable macros in Excel, you must set the security level on the:

A) MACRO tab. B) DEVELOPER tab.
C) SECURITY tab. D) VISUAL BASIC tab.


B

Computer Science & Information Technology

You might also like to view...

Syntax errors in firewall policies are usually difficult to identify.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Which of the following can be pushed down to a computer and can be changed by the user?

A. Group Policy Object B. Group Policy Preference C. Group Policy Setting D. Group Domain object

Computer Science & Information Technology

Find the errors in each of the following code segments and explain how to correct them.

a) ``` x = 1; while ( x <= 10 ); x++; } ``` b) ``` for ( y = .1; y != 1.0; y += .1 ) cout << y << endl; ``` c) ``` switch ( n ) { case 1: cout << "The number is 1" << endl; case 2: cout << "The number is 2" << endl; break; default: cout << "The number is not 1 or 2" << endl; break; } ``` d) The following code should print the values 1 to 10. ``` n = 1; while ( n < 10 ) cout << n++ << endl; ```

Computer Science & Information Technology

Most 64-bit chips require less time to complete tasks than 32-bit CPU chips

Indicate whether the statement is true or false

Computer Science & Information Technology