CSE :: Object Oriented Programming Using C++
-
The statement double total = 0.0; performs _____
-
The two parts of a function are the
-
The general principle underlying object-oriented error handling is that a called function should __________
-
Which of the following is false?
-
Reference variables and const class member
-
The actual arguments cannot he
-
Which is true?
-
A predefined function that may be used to handle memory allocation errors is
-
A function in a derived class that has the same name as a function in the parent class _____
-
The _____ function returns the uppercase equivalent of a character
A.
A void function's header begins with the keyword void
|
B.
A value-returning function's header begins with a data type, which represents the type of data the function will return
|
C.
Assuming displayAge is the name of a void function, displayAge(); is a both logically and syntactically valid C++ statement
|
D.
Assuming calcNewPrice is the name of a value-returning function, calcNewPriceO; is a both logically and syntactically valid C++ statement
|
E.
Both void and value-returning functions can receive arguments.
|