What can you not do within the worksheet tabs shortcut menu?
A. Format the worksheet
B. Add color to the tab
C. Insert a worksheet
D. Delete a worksheet
Answer: A
You might also like to view...
If we wish to ensure that either or both of two conditions are true we should use the logical operator:
a) And b) AndAlso c) OrElse d) Xor
Identifiers should at least give a hint to the human reader of the ________________ of the identifier in the context of the problem being solved.
Fill in the blank(s) with the appropriate word(s).
What class members does the derived class Dog inherit from the base class Animal?
``` class Animal { private: string AnimalType; int age; public: Animal(); SetAnimalType(string at) {AnimalType = at;} SetAge(string a) {age = a;} }; class Dog: public Animal { private: string DogType; public: Dog() {;} SetDogType(string dt) {DogType = dt;} }; ``` A. AnimalType; B. SetAnimalType and SetAge; C. age; D. All of the above.
Which of the following statements is NOT true regarding a Form's design view?
A) Design view is used to make advanced changes to a form. B) Changes to the form sections can only be made in Design view. C) Record source data is shown in Design view. D) You can perform many of the same tasks in Design view as you can in Layout view.