SDLC Flashcards
Describe the idea creation stage of the SDLC? When does it happen?
1st stage
investigate the market and form hypotheses about the product
What is the requirement formation stage of the SDLC?
specific requirements for the application are defined
what should be implemented?
what are the limitations of the system under development?
Describe the design stage of the SDLC? When does it happen?
it happens after the requirements have been formulated
- the architecture of the software is formulated through documentation, tech specs or layouts
In which stage of SDLC is the application created?
Development and testing
What happens during the development and testing stage of the SDLC?
- code is written
- testing is carried out
- corrections are made according to feedback
What are the final three stages of the SDLC?
Release: software becomes available to end users
Maintenance: maintaining the application’s functionality and fixing bugs on an ongoing basis
Discontinuation: the app becomes outdated and is no longer supported
What does the QA Engineer do during the idea creation stage?
- understand the product
- analyze the product logic
- find issues with the logic
- start making a list of user scenarios to test
What does the QA Engineer do during the requirement formation stage?
- analyze the requirements for completeness, consistency and testability
- suggest improvements
- start compiling test documentation
What does the QA Engineer do during the design stage?
- make sure the project implementation corresponds to the original requirements
- work on test docs
- design test cases for automation
- start estimating the amount of time required for testing
What does the QA Engineer do during the development and testing stage?
- finish the test docs
- test the product
- continue designing automated tests
- make the final decision on whether functionality is ready and officially sign off on the release
What does the QA Engineer do during the release stage?
- conduct regression, smoke and sanity testing
- check that the product functions according to requirements in a production env
- collect feedback from end users
- retest bugs found in the production environment after devs fix them
What does the QA Engineer do during the maintenance stage?
- process feedback from users by replicating, verifying and retesting after devs fix bugs
- test upgrades and new features
What does the QA Engineer do during the discontinuation stage?
check that only expected functionality was removed and that the rest of the app works as expected
In which type of software development is each stage done step by step and the next phase can’t start before the previous one?
sequential
What are the 3 types of sequential software development
- waterfall
- v-model
- spiral
Describe the waterfall model of sequential development.
- project activities are broken down into linear sequential phases
- each phase depends on the deliverables from the previous one
In what scenarios is it useful to use the waterfall model?
- product requirements are set and unlikely to change in the near future
- the result of the project is known in advance
- when product development can be broken down into sequential stages
What are the drawbacks of the waterfall model?
- less flexible
- can increase the financial cost of the project dramatically
Describe the core values of the agile principles.
- respond to changes more than following a plan
- talk to the team and customers daily
- deliver working software as frequently as possible
What is the scrum methodology?
- work broken down into sprints
- tangible goal for every sprint to deliver some part of the functionality
- team discusses and agrees on which items they intend to complete during the next sprint, as well as possible workflow improvements that can be made
What are the 4 stages of the scrum workflow?
Sprint planning
Development and testing
Demonstration: my bug demos
Retrospective: reflect on the previous sprint
What is the role of the QA Engineer during the sprint planning stage?
assess the amount of work and the difficulty of that work from their POV
What is the role of the QA Engineer during the development stage?
- help design product requirements
- compile test docs
- test any new functionality for the first release
What is the role of the QA Engineer during the demo meeting?
like the bug demos at Carehive! presenting the work done
What is the role of the QA Engineer during retrospectives?
think about how to make the testing process more efficient
Explain what each of the numbers mean in software versioning IDs - Version 4.3.2
4 - major
3 - minor
2 - revision
What type of changes happened in a version release that went from 3.3.2 to 4.3.2?
global changes in the app (major)
What type of changes happened in a version release that went from 4.3.2 to 4.4.2?
important improvements made to the app (minor)
What type of changes happened in a version release that went from 4.3.2 to 4.3.3?
minor modifications (revision)
Explain what a build is in software development.
taking all the programming pieces (like Lego blocks) and instructions and turning them into a working program
3 developers are building different parts of a lego castle
assembling all of the legos from each developer into the final castle to play with is a build (release build)
What is an important difference to note between build numbers and version numbers?
build numbers are used internally while version numbers are what the users actually see