The ________ font effect makes all characters in a word uppercase but the first character slightly larger

Fill in the blank(s) with correct word

small caps

Computer Science & Information Technology

You might also like to view...

Decision variables are also referred to as variable cells

Indicate whether the statement is true or false

Computer Science & Information Technology

Extend the following class definition so it overloads the input and output operators.

``` class Vect { public: Vect () {} Vect ( double, double ); private: double r; // magnitude double theta; // direction (radians) }; // // Constructor 2: Initializes all components // Vect :: Vect( double vectMag, double vectDir ) { r = vectMag; theta = vectDir; } ```

Computer Science & Information Technology