CSE :: Object Oriented Programming Using C++
-
A constructor always has
-
A normal C++ operator that acts in special ways on newly defined data types is said to be
-
A function in a derived class that has the same name as a function in the parent class
-
In which statements, does a 'continue' statements cause the control to go directly to the test condition and then continue the looping process?
-
Which of the following statements is false?
-
In a class specifier, data or functions designated private are accessible
-
When a function includes a throw statement for errors, the call to the potentially offending function should be placed within a _____ block
-
"C++" is a _____ constant
-
In a C++ program, which of the following can be thrown?
A.
You typically use a public member function to change the value in a private data member
|
B.
Because the constructor function does not return a value, you place the keyword void before the constructor's name
|
C.
The public member functions in a class can be accessed by any program that uses an object created from that class
|
D.
An instance of a class is considered an object
|