ISTQB Vocabulary — Software Testing Certification Language
5 exercises — verification vs. validation, regression testing vs. retesting, severity vs. priority, equivalence partitioning & boundary value analysis, and entry/exit criteria. The precise English distinctions the ISTQB Foundation Level exam tests.
Why precise ISTQB vocabulary matters
Verification vs. validation — building the product right vs. building the right product
Retesting vs. regression testing — confirming one fix vs. checking for side effects elsewhere
Severity vs. priority — technical impact vs. business urgency; they can diverge
Equivalence partitioning vs. boundary value analysis — representative values vs. edge cases
Entry / exit criteria — objective conditions to start and stop a test phase
0 / 29 completed
1 / 29
A QA lead says: "Verification confirms we built the product right; validation confirms we built the right product." What is the practical difference between these two ISTQB terms?
Verification asks "does this match the specification?" — e.g. does the code implement the design document correctly, does the requirements document match the business need as documented. It is frequently done through static testing (reviews, walkthroughs, static analysis) without running the software.
Validation asks "does this actually solve the user's problem?" — even a system built exactly to a flawed specification can pass verification but fail validation if the specification itself didn't capture what users actually need. Validation is typically done through dynamic testing — actually executing the software (e.g. user acceptance testing).
The classic mnemonic: "verification = building the product right; validation = building the right product." A team can perfectly verify a feature against its spec and still discover in validation (UAT) that the feature doesn't solve the user's actual problem — this is a common, well-tested exam scenario.
2 / 29
After a bug fix, the team runs (1) a test to confirm the specific reported bug is now actually fixed, and (2) a broader set of existing tests to make sure the fix didn't break anything else that was previously working. What are these two activities called?
Retesting (confirmation testing) re-runs the exact test case(s) that originally found the defect, using the same steps and data, to confirm the specific defect no longer occurs.
Regression testing is broader: it re-runs previously passing tests (often a curated regression suite, not every test in existence) to catch any unintended side effects the fix or change may have introduced elsewhere in the system — functionality that was working before and should still be working now.
Why the distinction matters: retesting alone only proves the reported bug is gone; it says nothing about whether the fix broke something else. A change that passes retesting but is never regression tested can silently break unrelated features — a very real and frequently tested exam scenario, and a real production risk. Automated regression suites exist specifically because manually regression testing after every change does not scale.
3 / 29
A tester logs a defect as: Severity: Critical, Priority: Low. How can a defect be critical in severity but low in priority to fix?
Severity = how bad the defect is technically/functionally — does it crash the system, corrupt data, or just cause a minor visual glitch? This is usually assessed by testers/QA based on impact.
Priority = how urgently it needs fixing, based on business context — customer impact, release schedule, workaround availability, and how often the affected path is used. This is usually set by the product owner or a triage process, sometimes overriding what severity alone would suggest.
Example that matches the question: a crash (critical severity) occurring only in a legacy admin tool being retired next month and used by one internal employee could reasonably be Low priority — fix it eventually, but don't block the release for it. Conversely, a very minor visual misalignment (low severity) on the primary checkout button right before a major marketing campaign could be High priority.
This is one of the most heavily tested ISTQB distinctions because in real teams, severity and priority are frequently confused or conflated — being precise about which one you mean (and why they can diverge) is a core professional communication skill in bug triage.
4 / 29
A test case checks an age-input field that accepts values 18–65. The tester designs tests for 17, 18, 65, and 66 specifically (rather than testing every possible number). What ISTQB test design technique is this, and how does it differ from equivalence partitioning?
Boundary value analysis (BVA) specifically targets the edges of input ranges, because experience shows defects (off-by-one errors especially) cluster at boundaries — e.g. a developer writing age > 18 instead of age >= 18 would incorrectly reject exactly 18. Testing 17, 18, 65, and 66 directly probes for these edge-case bugs.
Equivalence partitioning (EP) is a related but distinct technique: it divides the input domain into partitions (classes) that the system is assumed to treat identically — e.g. "invalid: below 18", "valid: 18–65", "invalid: above 65" — and tests just one representative value from each partition (e.g. 10, 40, 90), on the assumption that if one value in a partition works/fails correctly, the rest of that partition will behave the same way.
In practice, BVA and EP are used together: EP identifies the partitions economically (reducing the number of test cases needed versus exhaustive testing), and BVA then adds targeted tests at the boundaries between those partitions where bugs are statistically more likely. Both are black-box, specification-based techniques — they don't require looking at the code itself.
5 / 29
A test plan defines "Entry Criteria: unit tests must be passing and the build must be deployed to the test environment" and "Exit Criteria: 95% of planned test cases executed, no open Critical or High severity defects." What is the purpose of defining these two sets of criteria?
Entry criteria answer "are we ready to start testing this level/phase?" — testing a build before unit tests even pass, or before it's deployed to the right environment, wastes tester effort finding "bugs" that are really just broken deployment or missing prerequisites (the test basis wasn't even ready).
Exit criteria answer "are we done, and can we confidently say so?" — objective, pre-agreed measures (test coverage percentage, defect density thresholds, no open Critical/High severity defects) avoid the common, subjective, and risky judgement call of stopping testing simply "because time ran out" or "it feels okay now."
These map to the concept of test levels in ISTQB — unit/component testing, integration testing, system testing, and acceptance testing (including UAT) — each of which typically has its own entry and exit criteria, since the objectives and test basis differ at each level (e.g. unit testing verifies individual components against low-level design; acceptance testing validates the whole system against business needs).
Precisely stating entry/exit criteria in a test plan is what allows a tester to say, in a status meeting, "we haven't met exit criteria yet — there are still two open Critical defects" as an objective, defensible statement rather than a subjective opinion about readiness.
6 / 29
PR Description:
"Fix: Resolved intermittent crash on user login. Added retry logic and improved error handling. Verified with regression tests."
During a code review, your colleague asks you to elaborate on the term 'regression testing' as used in this PR description. Which of the following best describes what they *actually* mean?
A. Running only the test cases that specifically address the newly introduced fix.
B. Executing a set of tests designed to ensure that existing functionality remains unaffected by the changes made in this PR, preventing unintended side effects.
C. Primarily focused on verifying the user interface elements related to login.
D. A single test case that confirms the crash is no longer occurring.
The correct answer highlights the core purpose of regression testing: to ensure that changes don't negatively impact existing functionality. The term 'regression' refers to the idea that a change can cause previously working code to break. Options A and D are too narrow; they only focus on specific aspects of the fix, neglecting the broader goal. Option C is incorrect because user interface verification is part of a larger testing strategy, not the definition of regression testing itself.
7 / 29
PR Description:
"Fix: Resolved intermittent crash on user login. Added retry logic and improved error handling. Verified with regression tests."
During a code review, your colleague asks you to elaborate on the term 'regression testing' as used in this PR description. Which of the following best describes what they *actually* mean?
A. Running only the test cases that specifically address the newly introduced fix.
B. Executing a set of tests designed to ensure that existing functionality remains unaffected by the changes made in this PR, preventing unintended side effects.
C. Primarily focused on verifying the user interface elements related to login.
D. A single test case that confirms the crash is no longer occurring.
The correct answer highlights the core purpose of regression testing: to ensure that changes don't negatively impact existing functionality. The term 'regression' refers to the idea that a change can cause previously working code to break. Options A and D are too narrow; they only focus on specific aspects of the fix, neglecting the broader goal. Option C is incorrect because user interface verification is part of a larger testing strategy, not the definition of regression testing itself.
8 / 29
PR Description:
"Fix: Resolved intermittent crash on user login. Added retry logic and improved error handling. Verified with regression tests."
During a code review, your colleague asks you to elaborate on the term 'regression testing' as used in this PR description. Which of the following best describes what they *actually* mean?
A. Running only the test cases that specifically address the newly introduced fix.
B. Executing a set of tests designed to ensure that existing functionality remains unaffected by the changes made in this PR, preventing unintended side effects.
C. Primarily focused on verifying the user interface elements related to login.
D. A single test case that confirms the crash is no longer occurring.
The correct answer highlights the core purpose of regression testing: to ensure that changes don't negatively impact existing functionality. The term 'regression' refers to the idea that a change can cause previously working code to break. Options A and D are too narrow; they only focus on specific aspects of the fix, neglecting the broader goal. Option C is incorrect because user interface verification is part of a larger testing strategy, not the definition of regression testing itself.
9 / 29
PR Description:
"Fix: Resolved intermittent crash on user login. Added retry logic and improved error handling. Verified with regression tests."
During a code review, your colleague asks you to elaborate on the term 'regression testing' as used in this PR description. Which of the following best describes what they *actually* mean?
A. Running only the test cases that specifically address the newly introduced fix.
B. Executing a set of tests designed to ensure that existing functionality remains unaffected by the changes made in this PR, preventing unintended side effects.
C. Primarily focused on verifying the user interface elements related to login.
D. A single test case that confirms the crash is no longer occurring.
The correct answer highlights the core purpose of regression testing: to ensure that changes don't negatively impact existing functionality. The term 'regression' refers to the idea that a change can cause previously working code to break. Options A and D are too narrow; they only focus on specific aspects of the fix, neglecting the broader goal. Option C is incorrect because user interface verification is part of a larger testing strategy, not the definition of regression testing itself.
10 / 29
During a daily standup, Sarah says: "I've been investigating the performance issues reported with the API endpoint /users. I'm running queries to identify slow database calls and inefficient code.". Which of the following ISTQB activities is Sarah primarily engaged in?
Sarah is actively identifying and analyzing a problem – this aligns with Performance Testing. The core activity here is investigating the root cause of a performance issue, which is a key element of test design and execution. Options A and C are incorrect as they relate to different stages or documentation; option B is too broad.
11 / 29
You receive the following Slack message from a junior developer: "I just pushed a fix for the login bug. It's supposed to handle cases where the user enters an invalid email address. I've added some input validation.". Which of the following statements best describes the most appropriate next step for a senior tester?
The most prudent approach is to seek clarification. The Slack message lacks specifics regarding the input validation implemented. This allows the senior tester to understand the scope of the fix and ensure it addresses the intended defect effectively – preventing future issues due to a misunderstanding or incomplete solution. Options A and C are premature; option D is based on insufficient information.
12 / 29
A developer submits a Pull Request with the following description: "Implemented new feature X. Added unit tests for core functionality. Verified through manual testing.". During a code review, your reviewer asks you to elaborate on the 'Verified through manual testing' part of the PR. Which approach would be most effective?
Providing a link to the relevant test cases is crucial for transparency and traceability. This allows the reviewer (and anyone else) to easily understand what was tested, how it was tested, and whether the feature met its requirements. Simply stating that you manually tested it doesn't offer sufficient detail or evidence – options A and C are vague; option D focuses on the outcome of the tests, not the testing process itself.
13 / 29
During a technical discussion about bug reporting, a QA engineer explains: "We're classifying this issue as 'High' priority because it prevents users from accessing the core functionality of our application. However, we've determined that fixing it immediately isn't critical due to the low number of users affected.". What does this scenario illustrate regarding ISTQB terminology?
This scenario clearly illustrates the distinction between *Severity* (the impact of a defect) and *Priority* (the urgency with which it should be fixed). A 'High' severity defect can have a 'Low' priority if its impact is limited. This highlights that these two factors are independent and need to be assessed separately – options A, C, and D misinterpret the relationship.
14 / 29
A test case document includes the following entry criteria: "All unit tests must pass before proceeding with integration testing." What is the primary purpose of this entry criterion?
This entry criterion focuses on ensuring that the *individual units* of code (the unit tests) are functioning correctly before moving onto integration testing. It's a foundational step in verifying that each component meets its specifications – this is key to preventing further issues from propagating through the system during later stages. Options A, C and D describe broader goals or outcomes.
15 / 29
During a daily standup, Sarah says: "I've been investigating the performance issues reported with the API endpoint /users. I'm running queries to identify slow database calls and inefficient code.". Which of the following ISTQB activities is Sarah primarily engaged in?
Sarah is actively identifying and analyzing a problem – this aligns with Performance Testing. The core activity here is investigating the root cause of a performance issue, which is a key element of test design and execution. Options A and C are incorrect as they relate to different stages or documentation; option B is too broad.
16 / 29
You receive the following Slack message from a junior developer: "I just pushed a fix for the login bug. It's supposed to handle cases where the user enters an invalid email address. I've added some input validation.". Which of the following statements best describes the most appropriate next step for a senior tester?
The most prudent approach is to seek clarification. The Slack message lacks specifics regarding the input validation implemented. This allows the senior tester to understand the scope of the fix and ensure it addresses the intended defect effectively – preventing future issues due to a misunderstanding or incomplete solution. Options A and C are premature; option D is based on insufficient information.
17 / 29
A developer submits a Pull Request with the following description: "Implemented new feature X. Added unit tests for core functionality. Verified through manual testing.". During a code review, your reviewer asks you to elaborate on the 'Verified through manual testing' part of the PR. Which approach would be most effective?
Providing a link to the relevant test cases is crucial for transparency and traceability. This allows the reviewer (and anyone else) to easily understand what was tested, how it was tested, and whether the feature met its requirements. Simply stating that you manually tested it doesn't offer sufficient detail or evidence – options A and C are vague; option D focuses on the outcome of the tests, not the testing process itself.
18 / 29
During a technical discussion about bug reporting, a QA engineer explains: "We're classifying this issue as 'High' priority because it prevents users from accessing the core functionality of our application. However, we've determined that fixing it immediately isn't critical due to the low number of users affected.". What does this scenario illustrate regarding ISTQB terminology?
This scenario clearly illustrates the distinction between *Severity* (the impact of a defect) and *Priority* (the urgency with which it should be fixed). A 'High' severity defect can have a 'Low' priority if its impact is limited. This highlights that these two factors are independent and need to be assessed separately – options A, C, and D misinterpret the relationship.
19 / 29
A test case document includes the following entry criteria: "All unit tests must pass before proceeding with integration testing." What is the primary purpose of this entry criterion?
This entry criterion focuses on ensuring that the *individual units* of code (the unit tests) are functioning correctly before moving onto integration testing. It's a foundational step in verifying that each component meets its specifications – this is key to preventing further issues from propagating through the system during later stages. Options A, C and D describe broader goals or outcomes.
20 / 29
During a daily standup, Sarah says: "I've been investigating the performance issues reported with the API endpoint /users. I'm running queries to identify slow database calls and inefficient code.". Which of the following ISTQB activities is Sarah primarily engaged in?
Sarah is actively identifying and analyzing a problem – this aligns with Performance Testing. The core activity here is investigating the root cause of a performance issue, which is a key element of test design and execution. Options A and C are incorrect as they relate to different stages or documentation; option B is too broad.
21 / 29
You receive the following Slack message from a junior developer: "I just pushed a fix for the login bug. It's supposed to handle cases where the user enters an invalid email address. I've added some input validation.". Which of the following statements best describes the most appropriate next step for a senior tester?
The most prudent approach is to seek clarification. The Slack message lacks specifics regarding the input validation implemented. This allows the senior tester to understand the scope of the fix and ensure it addresses the intended defect effectively – preventing future issues due to a misunderstanding or incomplete solution. Options A and C are premature; option D is based on insufficient information.
22 / 29
A developer submits a Pull Request with the following description: "Implemented new feature X. Added unit tests for core functionality. Verified through manual testing.". During a code review, your reviewer asks you to elaborate on the 'Verified through manual testing' part of the PR. Which approach would be most effective?
Providing a link to the relevant test cases is crucial for transparency and traceability. This allows the reviewer (and anyone else) to easily understand what was tested, how it was tested, and whether the feature met its requirements. Simply stating that you manually tested it doesn't offer sufficient detail or evidence – options A and C are vague; option D focuses on the outcome of the tests, not the testing process itself.
23 / 29
During a technical discussion about bug reporting, a QA engineer explains: "We're classifying this issue as 'High' priority because it prevents users from accessing the core functionality of our application. However, we've determined that fixing it immediately isn't critical due to the low number of users affected.". What does this scenario illustrate regarding ISTQB terminology?
This scenario clearly illustrates the distinction between *Severity* (the impact of a defect) and *Priority* (the urgency with which it should be fixed). A 'High' severity defect can have a 'Low' priority if its impact is limited. This highlights that these two factors are independent and need to be assessed separately – options A, C, and D misinterpret the relationship.
24 / 29
A test case document includes the following entry criteria: "All unit tests must pass before proceeding with integration testing." What is the primary purpose of this entry criterion?
This entry criterion focuses on ensuring that the *individual units* of code (the unit tests) are functioning correctly before moving onto integration testing. It's a foundational step in verifying that each component meets its specifications – this is key to preventing further issues from propagating through the system during later stages. Options A, C and D describe broader goals or outcomes.
25 / 29
During a daily standup, Sarah says: "I've been investigating the performance issues reported with the API endpoint /users. I'm running queries to identify slow database calls and inefficient code.". Which of the following ISTQB activities is Sarah primarily engaged in?
Sarah is actively identifying and analyzing a problem – this aligns with Performance Testing. The core activity here is investigating the root cause of a performance issue, which is a key element of test design and execution. Options A and C are incorrect as they relate to different stages or documentation; option B is too broad.
26 / 29
You receive the following Slack message from a junior developer: "I just pushed a fix for the login bug. It's supposed to handle cases where the user enters an invalid email address. I've added some input validation.". Which of the following statements best describes the most appropriate next step for a senior tester?
The most prudent approach is to seek clarification. The Slack message lacks specifics regarding the input validation implemented. This allows the senior tester to understand the scope of the fix and ensure it addresses the intended defect effectively – preventing future issues due to a misunderstanding or incomplete solution. Options A and C are premature; option D is based on insufficient information.
27 / 29
A developer submits a Pull Request with the following description: "Implemented new feature X. Added unit tests for core functionality. Verified through manual testing.". During a code review, your reviewer asks you to elaborate on the 'Verified through manual testing' part of the PR. Which approach would be most effective?
Providing a link to the relevant test cases is crucial for transparency and traceability. This allows the reviewer (and anyone else) to easily understand what was tested, how it was tested, and whether the feature met its requirements. Simply stating that you manually tested it doesn't offer sufficient detail or evidence – options A and C are vague; option D focuses on the outcome of the tests, not the testing process itself.
28 / 29
During a technical discussion about bug reporting, a QA engineer explains: "We're classifying this issue as 'High' priority because it prevents users from accessing the core functionality of our application. However, we've determined that fixing it immediately isn't critical due to the low number of users affected.". What does this scenario illustrate regarding ISTQB terminology?
This scenario clearly illustrates the distinction between *Severity* (the impact of a defect) and *Priority* (the urgency with which it should be fixed). A 'High' severity defect can have a 'Low' priority if its impact is limited. This highlights that these two factors are independent and need to be assessed separately – options A, C, and D misinterpret the relationship.
29 / 29
A test case document includes the following entry criteria: "All unit tests must pass before proceeding with integration testing." What is the primary purpose of this entry criterion?
This entry criterion focuses on ensuring that the *individual units* of code (the unit tests) are functioning correctly before moving onto integration testing. It's a foundational step in verifying that each component meets its specifications – this is key to preventing further issues from propagating through the system during later stages. Options A, C and D describe broader goals or outcomes.
What will I practice in "ISTQB Vocabulary — Software Testing Certification Language"?
This is a Certification Prep exercise set. It walks through 29 scenario-based multiple-choice questions built around real usage of Certification Prep terminology that IT professionals encounter on the job.
Is this exercise free to use?
Yes. Every exercise on CoderSlingo, including this one, is free to complete with no account, sign-up, or paywall.
How many questions are in this exercise?
This set contains 29 questions. Each one shows immediate feedback and a detailed explanation after you answer, so you learn the correct usage right away rather than waiting for a final score.
Do I need prior experience to complete this exercise?
No prior experience is required. Each question includes a full explanation covering the reasoning behind the correct answer, so the exercise itself teaches the Certification Prep vocabulary as you go.
Can I retry the exercise if I get questions wrong?
Yes — use the "Try again" button on the results screen to reset your answers and go through all the questions again. There is no limit on attempts.
Is my progress saved?
Your answers and score for the current session are tracked in the browser as you go. No account or login is needed, and there is nothing to install.
What if I don't understand a term used in a question?
Read the explanation shown after you answer each question — it breaks down the correct term in plain English with a real-world example. You can also check the site Glossary for quick definitions.
How is this different from reading a blog article on the topic?
Exercises like this one are interactive drills that test and reinforce specific vocabulary through multiple-choice questions, while blog articles explain concepts in prose. Practising here after reading builds active recall, not just passive recognition.
Where can I find more Certification Prep exercises?
See the Certification Prep exercises hub for the full set of related pages, or browse all exercise categories from the main Exercises index.
Can I use this exercise to prepare for a technical interview?
Yes — Certification Prep vocabulary comes up often in technical discussions and interviews. Pair this exercise with our dedicated Interview Preparation section for role-specific practice.