#1
What is version control?
A system that allows tracking changes to files and managing different versions of a project
ExplanationTracks changes and manages versions
#2
What does the term 'agile' refer to in software development?
A project management methodology emphasizing incremental and iterative development
ExplanationIncremental, iterative project management
#3
In the context of software development, what does the acronym 'CI/CD' stand for?
Continuous Integration/Continuous Deployment
ExplanationContinuous Integration and Continuous Deployment
#4
What is the purpose of a 'bug tracker' in software development?
To record and prioritize reported software defects
ExplanationRecords and prioritizes reported defects
#5
What is the primary purpose of unit testing in software development?
To ensure that individual units or components of a software work correctly
ExplanationEnsures individual units work correctly
#6
What is the main benefit of using continuous integration (CI) in software development?
It helps identify and fix integration errors early in the development process
ExplanationEarly identification and fixing of integration errors
#7
What is a 'software requirement specification' (SRS) document?
A document that defines the functional and non-functional requirements of the software
ExplanationDefines functional and non-functional requirements
#8
Which of the following is NOT a software development life cycle model?
Circular model
ExplanationNot a software development life cycle model
#9
What does the term 'refactoring' mean in software development?
Restructuring existing code without changing its external behavior
ExplanationRestructuring code without changing behavior
#10
What is the purpose of a 'user story' in agile software development?
To capture the functionality and requirements from the perspective of an end user
ExplanationCaptures functionality and requirements from end user perspective
#11
What is the purpose of a 'code review' in software development?
To ensure code quality, identify bugs, and improve the overall software design
ExplanationImproves code quality, identifies bugs, and enhances software design
#12
What is the difference between waterfall and agile software development methodologies?
Waterfall is a sequential approach, while agile is iterative and incremental.
ExplanationSequential vs. iterative and incremental approach
#13
Which software development principle advocates for designing software components to be open for extension but closed for modification?
Open/Closed Principle (OCP)
ExplanationDesign components open for extension, closed for modification
#14
Which of the following best describes the concept of 'technical debt'?
A metaphorical term referring to the hidden costs of maintaining and fixing poorly written code
ExplanationHidden costs of maintaining and fixing poor code
#15
What is the purpose of a 'dependency injection' in software development?
To decouple components and make them more reusable and testable
ExplanationDecouples components for increased reusability and testability
#16
What is the primary purpose of a 'software design pattern'?
To provide a standardized way to structure and solve common design problems in software development
ExplanationStandardized solutions to common design problems