Top Hat Questions Flashcards
Requirements analysis is critical to the success of a development project. (T/F)
T
Which of the following is not a diagram studied in Requirement Analysis ?
a) Use Cases
b) Entity Relationship Diagram
c) State Transition Diagram
d) Activity Diagram
d) Activity Diagram
How many feasibility studies is conducted in Requirement Analysis ?
a) Two
b) Three
c) Four
b) Two
How many phases are there in Requirement Analysis ?
a) Three
b) Four
c) Five
d) Six
Answer:c
Explanation: Problem Recognition, Evaluation and Synthesis (focus is on what not how), Modeling, Specification and Review are the five phases.
Traceability is not considered in Requirement Analysis.
Answer:b
Explanation: Requirements traceability is concerned with documenting the life of a requirement and providing bi-directional traceability between various associated requirements, hence requirements must be traceable.
Requirements analysis is critical to the success of a development project.
a) True
b) False
c) Depends upon the size of project
Answer:a
Explanation: Requirements must be actionable, measurable, testable, related to identified business needs or opportunities, and defined to a level of detail sufficient for system design.
_________ and _________ are the two issues of Requirement Analysis.
a) Performance, Design
b) Stakeholder, Developer
c) Functional, Non-Functional
Answer:b
Explanation: Option a and c are the types of requirements and not the issues of requirement analysis..
The requirements that result from requirements analysis are typically expressed from one of three perspectives or views. What is that perspective or view ?
a) Developer
b) User
c) Non-Functional
d) Physical
Answer:d
Explanation: The perspectives or views have been described as the Operational, Functional, and Physical views.All three are necessary and must be coordinated to fully understand the customers’ needs and objectives.
Requirements Analysis is an Iterative Process.
Answer:a
Explanation: Requirements analysis is conducted iteratively with functional analysis to optimize performance requirements for identified functions, and to verify that synthesized solutions can satisfy customer requirements.
Requirements should specify ‘what’ but not ‘how’.
a) True
b) False
Answer:a
Explanation: ‘What’ refers to a system’s purpose, while ‘How’ refers to a system’s structure and behavior.
Throughout the OOD process, a software engineer should look for every opportunity for creating new design processes (T/F)
False
Object that collects data on request rather than autonomously is known as ————–
a) Active Object
b) Passive Object
c) Multiple instance
d) None of the mentioned
Answer: b
Explanation: A passive object holds data, but does not initiate control.
Choose the incorrect statement in terms of Objects.
a) Objects are abstractions of real-world.
b) Objects can’t manage themselves.
c) Objects encapsulate state and representation information.
Answer:b
Explanation: Objects are independent.
What encapsulates both data and data manipulation functions ?
a) Object
b) Class
c) Super Class
d) Sub Class
Answer:a
Explanation: The answer is self explanatory.
Which of the following is a mechanism that allows several objects in an class hierarchy to have different methods with the same name?
a) Aggregation
b) Polymorphism
c) Inheritance
Answer:b Explanation: In polymorphism instances of each subclass will be free to respond to messages by calling their own version of the metho
Inherited object classes are self-contained.
a) True
b) False
Answer:b
Explanation: Inherited object classes are not self-contained. They cannot be understood without reference to their super-classes.
Which of the following points related to Object-oriented development (OOD) is true?
a) OOA is concerned with developing an object model of the application domain
b) OOD is concerned with developing an object-oriented system model to implement requirements.
c) Both a and b
d) None of the mentioned
Answer:c
Explanation: The answer is in support with the OOD.
How is generalization implemented in Object Oriented programming languages?
a) Inheritance
b) Polymorphism
c) Encapsulation
d) Abstract Classes
Answer:a
Explanation: The answer is self explanatory.
Which of the following is a disadvantage of OOD ?
a) Easier maintenance.
b) Objects may be understood as stand-alone entities.
c) Objects are potentially reusable components.
d) None of the mentioned
Answer:d
Explanation: All the options define the characteristics of OOD.
Which of the following describes”Is-a-Relationship” ?
a) Aggregation
b) Inheritance
c) Dependency
Answer:b
Explanation: The answer is self explanatory.
Object that collects data on request rather than autonomously is known as
a) Active Object
b) Passive Object
c) Multiple instance
d) None of the mentioned
Answer:b
Explanation: A passive object holds data, but does not initiate control.
Objects are executed
a) sequentially
b) in Parallel
c) Both a and b
Answer:c
Explanation: Objects may be distributed and may execute sequentially or in parallel.
Which of the following is not needed to develop a system design from concept to detailed object-oriented design?
a) Designing system architecture
b) Developing design models
c) Specifying interfaces
d) Developing a debugging system
Answer:d
Explanation:The debugging system is a part of testing phase.
Which of the following is a dynamic model that shows how the system interacts with its environment as it is used?
a) system context model
b) interaction model
c) environmental model
d) both system context and interaction
Answer:b
Explanation:The answer is self explanatory.