ANSWERS 100% CORRECT
Where does software design fit in the traditional waterfall software development
lifecycle?
A. Between specification and architecture
B. Between architecture and implementation
C. Between implementation and deployment
D. Before requirements - ANSWER - B
Which of the following is NOT an aspect of software design
A. Polymorphism
B. Modularity
C. Cohesion
D. Coupling - ANSWER - A
The ability to use a built-in function of a programming language to generate a random
number is an example of which of the following?
A. Cohesion
B. Information hiding
C. Modularity
D. Coupling - ANSWER - B
Analyzing the extent to which other modules must change when a module is modified is
an example of which of the following?
A. Information hiding
B. Coupling
C. Cohesion
D. Modularity - ANSWER - B
When all of the responsibilities of a module are easily classified as being strongly
related, this is an example of high what?
A. Cohesion
B. Coupling
C. Modularity
D. Information hiding - ANSWER - A
Which of the following is most preferred?
, A. Allowing one module to affect the program flow of another via the use of a state
message (message coupling)
B. Having more than one module rely on the same version of the RSS standard
(external coupling)
C. Allowing one module to affect the program flow of another via the use of a flag
(control coupling)
D. Having two modules rely on the same global information structure (common
coupling) - ANSWER - A
Which of the following is LEAST desirable?
A. including functionality which relys on the same input
B. including functionality which entirely encapsulates all the necessary function for a
specific task
C. including functionality which occurs around the same time
D. including functionality which modifies an object's own attributes - ANSWER - C
Which of the following are necessary before proper testing?
A. inputs which cause issues
B. inputs, expected output, an oracle, and the actual output
C. inputs and expected output
D. inputs, expected output, and an oracle - ANSWER - D
Which of the following is an mistake in code which is found in code review?
A. Fault
B. Effective error
C. Latent error
D. Failure - ANSWER - B
Which of the following are true for the V-model? Select two.
A. It is a predictive model.
B. Testing-related activities are started earlier in the process.
C. Requirement changes are welcomed in all phases of this project. - ANSWER - A B
Which of the following is a mistake made by the developer?
A. Effective error
B. Fault
C. Latent error
D. Failure - ANSWER - B