University | Verified Questions and Answers
| A+ Graded | 2025/2026 Edition
Section 1: Introduction
This document contains a verified set of practice exam questions and 100% correct answers
for C268 – Software Engineering, updated for the 2025/2026 academic year at Western
Governors University. Topics include software development methodologies, project
management, software design principles, testing strategies, and version control systems. This
A+ graded resource is ideal for students preparing to pass the C268 assessment with
confidence.
Section 2: Exam Questions and Answers
1. What is the primary goal of software engineering?
A) Maximize hardware usage
B) Deliver high-quality, reliable software
C) Minimize development time
D) Reduce user interaction
Correct Answer: B) Deliver high-quality, reliable software
Rationale: Software engineering aims to produce maintainable, efficient, and reliable
software using systematic processes.
2. Which software development methodology follows a sequential process with
distinct phases?
A) Agile
B) Scrum
C) Waterfall
D) Kanban
Correct Answer: C) Waterfall
Rationale: The Waterfall model progresses linearly through phases like requirements,
design, implementation, and testing.
3. What is a key characteristic of Agile methodology?
A) Fixed requirements
B) Iterative development
C) Minimal customer involvement
D) Single delivery phase
Correct Answer: B) Iterative development
Rationale: Agile emphasizes iterative cycles (sprints) to adapt to changing
requirements.
4. Which document outlines the functional and non-functional requirements of a
software system?
A) Project plan
B) Software Requirements Specification (SRS)
C) Test plan
, D) User manual
Correct Answer: B) Software Requirements Specification (SRS)
Rationale: The SRS details what the software must do, including functional and non-
functional requirements.
5. What is the purpose of version control systems like Git?
A) Automate testing
B) Manage source code changes
C) Design user interfaces
D) Deploy software
Correct Answer: B) Manage source code changes
Rationale: Version control tracks code changes, enabling collaboration and rollback.
6. Which testing level focuses on individual components or modules?
A) System testing
B) Integration testing
C) Unit testing
D) Acceptance testing
Correct Answer: C) Unit testing
Rationale: Unit testing verifies the functionality of individual code units in isolation.
7. In Scrum, who is responsible for prioritizing the product backlog?
A) Scrum Master
B) Product Owner
C) Development Team
D) Project Manager
Correct Answer: B) Product Owner
Rationale: The Product Owner prioritizes backlog items based on business value.
8. What principle ensures that a class has only one reason to change?
A) Open-Closed Principle
B) Single Responsibility Principle
C) Liskov Substitution Principle
D) Dependency Inversion Principle
Correct Answer: B) Single Responsibility Principle
Rationale: The Single Responsibility Principle (SRP) promotes modular,
maintainable code.
9. Which diagram represents the dynamic behavior of a system over time?
A) Class diagram
B) Use case diagram
C) Sequence diagram
D) Component diagram
Correct Answer: C) Sequence diagram
Rationale: Sequence diagrams show interactions between objects over time.
10. What is the primary purpose of a sprint in Agile?
A) Complete the entire project
B) Deliver a potentially shippable product increment
C) Define project requirements
D) Conduct user training
Correct Answer: B) Deliver a potentially shippable product increment
Rationale: Sprints produce working software increments within a fixed timebox.
11. Which tool is commonly used for managing Git repositories?
A) Jira
B) GitHub
, C) Selenium
D) Jenkins
Correct Answer: B) GitHub
Rationale: GitHub hosts Git repositories, facilitating collaboration and code
management.
12. What type of testing verifies that integrated components work together?
A) Unit testing
B) Integration testing
C) Regression testing
D) Performance testing
Correct Answer: B) Integration testing
Rationale: Integration testing ensures combined modules function correctly.
13. In the Waterfall model, when are requirements typically finalized?
A) During implementation
B) At the end of the project
C) In the requirements analysis phase
D) During testing
Correct Answer: C) In the requirements analysis phase
Rationale: Waterfall finalizes requirements early, before design and implementation.
14. What is a user story in Agile development?
A) A detailed technical specification
B) A brief description of a feature from the user’s perspective
C) A testing script
D) A deployment plan
Correct Answer: B) A brief description of a feature from the user’s perspective
Rationale: User stories follow the format “As a [user], I want [feature] so that
[benefit].”
15. Which design pattern provides a single point of access to a resource?
A) Factory Pattern
B) Singleton Pattern
C) Observer Pattern
D) Decorator Pattern
Correct Answer: B) Singleton Pattern
Rationale: The Singleton Pattern ensures one instance of a class exists.
16. What is the purpose of a burndown chart in Scrum?
A) Track project costs
B) Monitor sprint progress
C) Define requirements
D) Document code changes
Correct Answer: B) Monitor sprint progress
Rationale: Burndown charts visualize remaining work in a sprint.
17. Which testing strategy focuses on system performance under load?
A) Unit testing
B) Load testing
C) Acceptance testing
D) Integration testing
Correct Answer: B) Load testing
Rationale: Load testing evaluates system behavior under expected or peak loads.
18. What does the Open-Closed Principle state?
A) Classes should have one responsibility