User defined manipulators

1.6 User defined manipulators
A) May not have a parameter.
B) May have only one parameter.
C) May have any number of parameters.
D) May have all of the above.

Templates are used for

1.3 Templates are used for
A) Defining the generic classes only.
B) Defining both generic classes and generic functions.
C) Defining the generic functions only.
D) None of the above.

Static member functions in a class

1.2 Static member functions in a class
A) Can call only other static member functions of the same class.
B) Can use only static data members of the same class.
C) Can use only static data members and other static member functions of the same class.
D) Can use anything other than its static data members and static member functions of the
same class.

Assignment operator ( = ) in C++

1.1 Assignment operator ( = ) in C++
A) Cannot be overloaded.
B) Can be overloaded as a member function.
C) Can be overloaded as a member function as well as friend function.
D) Can be overloaded only as a friend function.