edition
TEST BANK
ST
UV
Data Abstraction & Problem
Solving with C++: Walls and
IA
Mirrors, 7th edition
.A
PP
Authors:
Frank M. Carrano, Timothy M. Henry
RO
◊ ALL CHAPTERS
VE
◊ INSTANT PDF DOWNLOAD💯💯💯
◊ ORIGINAL FROM PUBLISHER
D?
??
MEDCONNOISSEUR
, Chapter 1 Questions
Multiple Choice Questions
1. The specifications of an ADT’s operations indicate ______.
a. what the operations do
b. how to implement the operations
c. how to store the data in the ADT
ST
d. how to carry out the operations
Answer: a.
2. Data structures are part of an ADT’s ______.
a. definition
UV
b. implementation
c. specifications
d. usage
Answer: b.
3. A(n) ______ allows two modules to communicate with each other.
IA
a. data structure
b. axiom
c. interface
d. client
.A
Answer: c.
4. An ADT’s ______ govern(s) what its operations are and what they do.
a. specifications
b. implementation
PP
c. documentation
d. data structure
Answer: a.
5. When each module performs one well-defined task, we say that it is ___.
RO
a. loosely coupled
b. highly coupled
c. cohesive
d. not easily reused
Answer: c.
VE
6. When should an operation contract be written?
a. during analysis
b. after coding
c. at the same time as user documentation
d. when taking initial notes from client
D?
Answer: a.
7. What information is included in the operation contract?
a. the method’s interface
b. data flow among the modules
c. assumptions about input
??
d. all of these
Answer: d.
8. What kind of interface contains a method if and only that method is essential to that class’s
responsibilities?
a. complete
b. minimal
© 2017 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
, Chapter 1 Questions
c. expanded
d. compact
Answer: b.
9. What must be known about the ADT Bag in order to use it in a program?
a. how entries in the bag are represented
b. how bag operations are implemented
ST
c. how many entries can be stored in the bag
d. the interface of the bag
Answer: d.
10. According the CRC specifications for a Bag, which of the following behaviors would not be one of the
UV
responsibilities of the class Bag?
a. See if the bag is empty
b. See if the bag is full
c. Look at all the objects in the bag
d. Count the number of times a certain object occurs in the bag
Answer: b.
IA
11. A client program depends solely on the ______ of the ADT.
a. data members
.A
b. structure
c. implementation
d. behavior
Answer: d.
PP
12. What should a programmer do before implementing a recently designed class?
a. write code that uses the class
b. check comments that document specifications
c. adjust the design when problems are discovered
d. all of these
RO
Answer: d
13. Object-oriented programming views a program as ______.
a. a sequence of actions
b. a collection of classes
c. a group of methods
VE
d. an interaction among objects
Answer: d.
14. An ADT’s operations are known as its ______.
a. axioms
D?
b. methods
c. variables
d. interfaces
Answer: b.
15. Encapsulation combines an ADT’s data with its operations to form a(n) ______.
??
a. exception
b. method
c. object
d. variable
Answer: c.
16. A(n) ______ is a C++ construct that enables a programmer to define a new data type.
© 2017 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
, Chapter 1 Questions
a. class
b. method
c. data field
d. object
Answer: a.
17. A C++ class contains data members and ______.
ST
a. clients
b. interfaces
c. methods
d. data structures
Answer: c.
UV
18. A(n) ______ is an instance of a class.
a. method
b. data field
c. interface
d. object
IA
Answer: d.
19. A(n) ______ is a class that inherits the members of another class.
a. base class
.A
b. superclass
c. abstract class
d. subclass
Answer: d.
PP
20. A function can indicate that an error has occurred by ______ an exception.
a. throwing
b. catching
c. implementing
RO
d. declaring
Answer: a.
21. To ______ an exception means to deal with the error condition.
a. declare
b. catch
VE
c. implement
d. try
Answer: b.
22. Which of the following are ways to address unusual situations?
D?
a. simply assume the invalid situation will never occur
b. guess at the client’s intention
c. return a value that signals a problem
d. all of the above are options
Answer: d.
??
23. For the method remove(anEntry) of the ADT Bag, what would be the output of the method?
a. anEntry
b. nothing
c. true or false
d. the previous position of anEntry in the bag
Answer: c
© 2017 Pearson Education, Inc., Hoboken, NJ. All rights reserved.