CSE :: Object Oriented Programming Using C++
-
The #ifndef directive tests to see whether ________
-
Which of the following statements is false?
-
The generic type in a template function
-
When a child class function is called, the compiler looks first for a matching function name in the _____
-
A function that is called automatically each time an object is destroyed is a
-
If you create an instantiation of a class template with an int, and then create a second instantiation with a double, then
-
The step-by-step instructions that solve a problem are called _____
-
The type to be used in an instantiation of a class template follows ________
-
Which of the following statements allows the user to enter data at the keyboard?
-
When you pass a variable _____, C++ passes only the contents of the variable to the receiving function
A.
A function is a block of code that performs a specific task
|
B.
Functions allow programmers to break large and complex problems into small and manageable tasks
|
C.
Functions allow programmers to use existing code to perform common tasks
|
D.
Functions can be called, or invoked, only once in a program
|
E.
Programmer-defined functions can be either value-returning or void
|