Click ____________________ in the Margins gallery to display the Page Setup dialog box.
Fill in the blank(s) with the appropriate word(s).
Custom Margins
You might also like to view...
What happens if you omit the word break in a switch statement?
What will be an ideal response?
Which statement is false?
a. Based on whether an operator is implemented as a member function or as a non-member function, the operator is used differently in expressions. b. When an operator function is implemented as a member function, the leftmost (or only) operand must be an object (or a reference to an object) of the operator's class. c. Operator member functions of a specific class are called (implicitly by the compiler) only when the left operand of a binary operator is specifically an object of that class, or when the single operand of a unary operator is an object of that class. d. Another reason why you might choose a non-member function to overload an operator is to enable the operator to be commutative.
A collection of worksheets is sometimes called a _____.
A. worksheet collection B. 3D worksheet collection C. 2D workbook D. 3D workbook
If this code fragment were executed in an otherwise correct and complete program, what would the output be? Explain.
``` int a = 3, b = 2, c = 5 if (a > b) a = 4; if ( b > c) a = 5; else a = 6; cout << a < endl; ``` a) 3 b) 4 c) 5 d) 6 e) None of the above, the cout statement belongs to the else and so is skipped.