When you point to most chart elements, ________ appears

A) the Mini toolbar B) a list of formatting options
C) a ScreenTip D) the shortcut menu


D

Computer Science & Information Technology

You might also like to view...

Given the following class definition, how would you declare an object of the class, so that the object automatically called the default constructor?

class ItemClass { public: ItemClass(); ItemClass(int newSize, float newCost); int getSize(); float getCost(); void setSize(int newSize); void setCost(float newCost); private: int size; float cost; }; a. ItemClass() myItem; b. ItemClass myItem(1, 0.0); c. ItemClass myItem; d. ItemClass myItem(); e. You can not do this

Computer Science & Information Technology

What is the correct path to the Bold button?

A. (Home tab | Font group) B. (Design tab | Themes group) C. (Home tab | Paragraph group) D. (View tab | Presentation Views group)

Computer Science & Information Technology

Write a program that inputs a line of text with istream member function getline (as in Chapter 15) into character array s[100]. Output the line in uppercase letters and lowercase letters.

What will be an ideal response?

Computer Science & Information Technology

Ending the presentation review will discard any unaccepted changes

Indicate whether the statement is true or false

Computer Science & Information Technology