This principle ensures that each function, class, or module does one specific task correctly.
What is the Single Responsibility Principle?
A popular database management program
What is MySQL?
This phase of the Software Testing Life Cycle involves defining scope, strategy, and resources.
What is Test Planning?
Which phase of SDLC does the software building happen.
What is Development Phase.
The online storage area where collaborators can store code.
What is github?
This acronym stands for the fundamental operations in database management: Create, Read, Update, and Delete.
What is CRUD?
This command deletes rows from the Table.
What is DELETE?
This type of testing checks if individual components or functions of code work correctly.
What is Unit Testing?
Specifies what the customer wants and what the software is supposed to do, not how.
What is Requirements.
A location where files are selected and prepared to be committed to the repo.
What is a staging area?
This practice involves optimizing and restructuring code without changing its external behavior.
What is refactoring?
This command selects data from the table.
What is SELECT?
This kind of test checks whether the system meets the user's needs, also known as “building the right product.”
What is Validation?
What does the W sand for in WRSPM.
What is World.
This git command saves changes to a remote repo to your local.
What is git pull?
Choosing a quick, easy solution today at the cost of more work in the future refers to this concept.
What is technical debt?
This is a unique identifier for a particular table.
What is a Primary Key?
In this STLC phase, hardware and software are prepared for test execution.
What is Test Environment Setup?
Which phase of the SDLC should with fit in: Does the program handle bad input.
What is Verification.
A part of committing a change to a repo tells you what the commit was about and cannot be skipped.
What is a commit message?
One advantage of doing this is gaining full customization and security, but it may lower quality and take time away from other tasks.
What is building software?
A reference to the primary key of another table in the current one
What is a foreign key?
This type of testing is performed without automation, by a human tester.
What is Manual Testing
What type of software does SDLC usually produce.
What is high quality Low cost software.
A command used to combine the changes of two git branches