With Actual Questions & Verified
Answers,Plus Rationales/Expert Verified
For Guaranteed Pass 2025/2026 /Latest
Update/Instant Download Pdf
1. Which of the following is a primary goal of software engineering?
A. Writing code as fast as possible
B. Reducing software complexity
C. Maximizing hardware usage
D. Eliminating all testing
B. Reducing software complexity
Rationale: A key goal of software engineering is to manage and reduce software
complexity to improve maintainability and reliability.
2. Which development model is characterized by sequential phases where each phase
must be completed before the next begins?
A. Agile
B. Waterfall
C. Spiral
D. Scrum
B. Waterfall
Rationale: The Waterfall model follows a linear and sequential approach where each
phase depends on the deliverables of the previous phase.
3. In Agile methodology, what is the primary unit of work?
A. Phase
B. Sprint
C. Milestone
D. Deliverable
B. Sprint
Rationale: Agile projects are organized into short iterations called sprints, typically lasting
1–4 weeks, allowing for iterative development and feedback.
, 4. Which software engineering principle emphasizes that changes should not affect
unrelated parts of the system?
A. Coupling
B. Cohesion
C. Encapsulation
D. Polymorphism
C. Encapsulation
Rationale: Encapsulation hides implementation details and protects other parts of the
system from changes.
5. What is a use case in software engineering?
A. A description of a system test
B. A scenario describing how a user interacts with the system
C. A class diagram representation
D. A coding standard
B. A scenario describing how a user interacts with the system
Rationale: Use cases define functional requirements by describing interactions between
users (actors) and the system.
6. Which diagram is commonly used to model the static structure of a system?
A. Sequence diagram
B. Class diagram
C. Activity diagram
D. Use case diagram
B. Class diagram
Rationale: Class diagrams show classes, attributes, methods, and relationships in object-
oriented design, representing the static structure.
7. What is the main purpose of software testing?
A. To prove the software has no defects
B. To ensure the software meets requirements and works correctly
C. To write documentation
D. To increase development speed
B. To ensure the software meets requirements and works correctly
Rationale: Testing aims to identify defects and verify that the software fulfills its intended
purpose.
8. Which type of testing focuses on the interaction between integrated modules?
A. Unit testing
B. Integration testing
, C. System testing
D. Acceptance testing
B. Integration testing
Rationale: Integration testing evaluates how modules work together and identifies
interface issues.
9. Which quality attribute refers to the ease of modifying software to fix defects or
improve performance?
A. Reliability
B. Maintainability
C. Usability
D. Efficiency
B. Maintainability
Rationale: Maintainability measures how easily software can be modified to correct issues
or enhance functionality.
10. Which Agile framework emphasizes roles such as Product Owner, Scrum Master, and
Development Team?
A. Kanban
B. Extreme Programming
C. Scrum
D. Lean
C. Scrum
Rationale: Scrum defines specific roles to manage product backlog, facilitate
communication, and ensure iterative development.
11. What does the term “refactoring” mean in software engineering?
A. Adding new features
B. Improving code structure without changing functionality
C. Writing test cases
D. Deploying software
B. Improving code structure without changing functionality
Rationale: Refactoring enhances code readability, maintainability, and reduces technical
debt while keeping behavior the same.
12. Which is NOT a principle of object-oriented programming?
A. Encapsulation
B. Inheritance
C. Polymorphism
D. Sequential processing