Computer Science - Object Oriented Programming Using C++

31.
Errors in a program are called
accidents
annoyances
bugs
mistakes
typing errors
Answer: Option
Explanation:
No answer description is available. Let's discuss.

32.
If you declare two objects as Customer firstCust, secondCust; which of the following must be true?
Each object's nonstatic data members will be stored in the same memory location
Each object will be stored in the same memory location
Each object will have a unique memory address
You cannot declare two objects of the same class
Answer: Option
Explanation:
No answer description is available. Let's discuss.

33.
Which of the following is the inequality operator?
!=
=
==
-->
<>
Answer: Option
Explanation:
No answer description is available. Let's discuss.

34.
If a derived class uses the public access specifier, then _____
public base class members remain public in the derived class
protected base class members become public in the derived class
both (a) and (b)
neither (a) nor (b)
Answer: Option
Explanation:
No answer description is available. Let's discuss.

35.
The operator that releases previously allocated memory is _____
release
return
delete
destroy
Answer: Option
Explanation:
No answer description is available. Let's discuss.