Computer Science - Object Oriented Programming Using C++

11.
A member function uses the correct object when you call it because
a copy of the object is passed to the function
the address of the object is passed to the function
the address of the function is passed to another function
the address of the object is returned from the function
Answer: Option
Explanation:
No answer description is available. Let's discuss.

12.
Two access specifiers in C++ are
public and private
int and double
formal and informal
void and free
Answer: Option
Explanation:
No answer description is available. Let's discuss.

13.
Which of the following is the fourth problem-solving step?
analyze the problem
evaluate and modify (if necessary) the program
code the algorithm
plan the algorithm
desk-check the program
Answer: Option
Explanation:
No answer description is available. Let's discuss.

14.
Within parentheses, catch blocks can have _____
no arguments
one argument
two arguments
as many arguments as necessary
Answer: Option
Explanation:
No answer description is available. Let's discuss.

15.
The while loop is referred to as a(n) _____ loop because the loop condition is tested at the beginning of the loop
beginning
initial
pretest
priming
Answer: Option
Explanation:
No answer description is available. Let's discuss.