Computer Science - Object Oriented Programming Using C++

41.
Sending a copy of data to a program module is called _______
passing a value
making a reference
recursion
setting a condition
Answer: Option
Explanation:
No answer description is available. Let's discuss.

42.
Of the three ways to pass arguments to functions, only passing by _____ and passing by _____ allow the function to modify the argument in the calling program
reference, pointer
array, location
array, pointer
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.

43.
To use either an input or output file, the program must include the _____ header file
filestream.h
fstream.h
instream.h
inoutstream.h
iostream.h
Answer: Option
Explanation:
No answer description is available. Let's discuss.

44.
A widget is to the blueprint for a widget as an object is to
a member function
a class
an operator
a data item
Answer: Option
Explanation:
No answer description is available. Let's discuss.

45.
C++ allows you to define the same functions more than once in the same program _____
if the definitions are identical
if the definitions are included in two separate #include files
if the definitions are located in a single #include file that is included more than once
C++ does not allow you to define the same functions more than once in the same program
Answer: Option
Explanation:
No answer description is available. Let's discuss.