Computer Science - Object Oriented Programming Using C++

36.
The outline or the definition of a function is called its
beta test
forerunner
outline
prototype
Answer: Option
Explanation:
No answer description is available. Let's discuss.

37.
Which of the following is false?
Data stored in an array can be accessed faster than data stored in a disk file
Data stored in an array needs to be entered only once, typically at the beginning of the program
Arrays allow the programmer to store information in the computer's internal memory
When using arrays, you will have fewer variable names to remember
None of the preceding statements are false
Answer: Option
Explanation:
No answer description is available. Let's discuss.

38.
A function stub typically contains
the function header
the function braces
the return statement, if it's value- returning function
a display message
All of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.

39.
A variable's _____ indicates which portions of the program can use the variable
area
extent
lifetime
reach
scope
Answer: Option
Explanation:
No answer description is available. Let's discuss.

40.
If an integer object is thrown with a throw statement, then a subsequent catch block has a usable match if the type of the catch argument is _____
const int &
int &
either (a) or (b)
neither (a) nor (b)
Answer: Option
Explanation:
No answer description is available. Let's discuss.