CSE :: Object Oriented Programming Using C++
-
The items listed in the function header are called _____
-
A translator that notes whether you have used a language correctly may be called a _____
-
The feature in object-oriented programming that allows the same operation to be carried out differently, depending on the object, is_____
-
When an argument is passed by reference,
-
The process of extracting the relevant attributes of an object is known as
-
Which of the following statements uses the computer's clock to initialize the random number generator?
-
A static data member is given a value
-
You must provide a constructor for a derived class
-
If you want to override constructor default values for an object you are instantiating, you must also override
-
To use one of the C++ built-in mathematical functions, you must include the _____ header file in your program
A.
a variable is created in the function to hold the argument's value
|
B.
the function cannot access the argument's value
|
C.
a temporary variable is created in the calling program to hold the argument's value
|
D.
the function accesses the argument's original value in the calling program
|
E.
None of the above
|