When using Outline view, you can promote selected text by pressing ________
A) Ctrl + Tab B) Tab C) Shift + Tab D) Alt + Tab
C
You might also like to view...
which of the following operations are legal? If so, why? If not, why not?
We reproduce the class Money here, in part: ``` class Money { public: Money( ); Money(int theDollar, int theCents); Money(int theDollars); Money(double amount); // other public members int getCents( ) const; int getDollars( ) const; private: int dollars; int cents; // other private members }; ``` Note that * is not overloaded in the class, but operator + is overloaded using an operator function with the following declaration: ``` Money const operator+(const Money& amt1, const Money& amt2) ``` The question is, given the declarations, ``` Money baseAmount(100, 60); // $100.60 Money fullAmount; ``` a) BaseAmount + 25; b) 25 + BaseAmount; c) baseAmount = 2 * baseAmount; d) baseAmount+baseAmount.
Two trees are considered equal if they contain the same items in the same positions.
Answer the following statement true (T) or false (F)