#1
Which of the following is not a software development methodology?
Hierarchical
ExplanationHierarchical is not a software development methodology; it refers to organizational structure.
#2
What does CI/CD stand for in the context of software development?
Continuous Integration/Continuous Delivery
ExplanationCI/CD stands for Continuous Integration/Continuous Delivery, promoting automated and frequent software releases.
#3
What is the primary goal of DevOps?
To improve collaboration between development and operations teams
ExplanationDevOps aims to enhance collaboration between development and operations teams for efficient software delivery.
#4
Which of the following is a common cloud deployment model?
Public cloud
ExplanationPublic cloud is a common cloud deployment model, offering resources and services over the internet.
#5
In software development, what does the 'MVP' acronym stand for?
Minimum Viable Product
ExplanationMVP stands for Minimum Viable Product, representing the basic version of a product with essential features.
#6
Which of the following is NOT a common type of software testing?
Development testing
ExplanationDevelopment testing is not a separate type of testing; various testing phases include unit, integration, and system testing.
#7
Which of the following is not a version control system?
Java
ExplanationJava is a programming language, not a version control system like Git or SVN.
#8
What is the purpose of Docker in software development?
To automate the deployment of applications
ExplanationDocker automates application deployment by creating lightweight, portable containers.
#9
Which of the following is a characteristic of microservices architecture?
Loose coupling
ExplanationMicroservices architecture emphasizes loose coupling for independent development and deployment.
#10
What does the term 'scalability' refer to in software development?
Ability to handle increased workload without impacting performance
ExplanationScalability in software development refers to the system's ability to handle increased workload without performance degradation.
#11
What is the purpose of a build tool in software development?
To compile source code
ExplanationBuild tools are used to compile source code and automate the build process.
#12
Which of the following is a key principle of the Twelve-Factor App methodology?
Configuration stored in code
ExplanationThe Twelve-Factor App methodology emphasizes storing configuration in code for better manageability.
#13
Which of the following is a characteristic of the Kanban development methodology?
Limiting work in progress
ExplanationKanban methodology limits work in progress to enhance focus and flow.
#14
Which of the following is a deployment strategy that involves deploying updates to a small subset of users before a full rollout?
Canary deployment
ExplanationCanary deployment deploys updates gradually to a subset of users for testing and validation.
#15
What does the term 'immutable infrastructure' refer to?
Infrastructure that is replaced rather than modified
ExplanationImmutable infrastructure is replaced rather than modified, enhancing reliability and consistency.
#16
What is the purpose of a load balancer in a distributed system?
To ensure high availability and reliability
ExplanationLoad balancers distribute network traffic to ensure high availability and reliability in a distributed system.
#17
What does the term 'serverless computing' refer to?
Using a cloud provider's infrastructure to run applications without worrying about server management
ExplanationServerless computing allows running applications without managing server infrastructure, relying on cloud providers.
#18
What is the purpose of a reverse proxy server?
To improve security by shielding backend servers
ExplanationReverse proxy servers enhance security by acting as an intermediary and shielding backend servers.
#19
What is the primary goal of chaos engineering in software development?
To improve system reliability by proactively identifying weaknesses
ExplanationChaos engineering aims to enhance system reliability by identifying and addressing weaknesses proactively.