CSE :: Object Oriented Programming Using C++
-
If you want to override constructor default values for an object you are instantiating, you must also override
-
An unsigned double type of data
-
The extraction operator >> is a(n) _____
-
The return type for all destructors is
-
If an exception is thrown and no catch block matches the type of the thrown parameter, then _____
-
The comma operator (,) is used to
-
A function that is called automatically each time an object is created is a(n)
-
Which of the following statements creates a named constant called driverAge whose value is 16?
-
Which functions do not have a this pointer?
A.
permit two different expressions to appear in situations where only one expression would ordinarily be used
|
B.
terminate loops or to exit from switch
|
C.
alter the normal sequence of program execution by transferring control to some other part of the program
|
D.
carry out a logical test and then take one of two possible actions, depending upon the outcome of the test
|
E.
None of the above
|