STLC • Test Design • Bug Life Cycle • Agile Testing • 2026

Manual Testing Interview Questions

30 questions What each one tests, an answer frame, a spoken answer 33 min read

This page is for anyone facing a manual testing or QA round, from a first testing job to a senior tester role. Most rounds open with SDLC and STLC, verification and validation, and the test levels, then check that you can tell smoke from sanity and regression from retesting. After that come test design techniques, test cases, the bug life cycle, severity and priority, and test planning. Many interviews end with 'test this login page' or 'test this pen' and a judgement call about a release. Each question shows what the interviewer is really checking, the shape of a strong answer and a short answer you can say out loud. Swap in your own project stories.

Search all questions by round, difficulty and level, or save the ones you want to practise.

Fundamentals 4 questions

Easy Technical round Fresher Practice question

1. What's the difference between SDLC and STLC, and at what point in a project should testing actually begin?

What the interviewer is really testing:
Whether you see testing as a process that runs alongside development from the start, not a phase bolted on at the end.
Answer frame:

SDLC: the whole life of the software: requirements, design, build, test, release, maintenance.

STLC: the testing work's own cycle inside it: requirement analysis, planning, test design, environment, execution, closure.

Start: testing starts at requirements, by reviewing them for gaps before any code exists.

Sample spoken answer:

"SDLC is the full life cycle of the product, from gathering requirements through design, coding, testing, release and maintenance. STLC is the testing team's own cycle that runs inside it: we analyse the requirements, plan the testing, write test cases and data, get the environment ready, execute and log defects, and then close with a report. The two run in parallel. So testing shouldn't wait for a build. As soon as requirements are written I'm reading them, asking what happens on an empty field or a timeout, and flagging anything I can't turn into a clear expected result. A gap caught in a requirement review costs a conversation. The same gap caught after release costs a fix, a retest and sometimes a customer."

Red flag to avoid:

Describing testing as something that starts only when the developers hand over a finished build.

They may ask next:
  • What does a tester actually produce during the requirement analysis phase?
  • How does the V-model link each development phase to a test level?
Say it in 60 seconds
Medium Technical round Fresher, Mid-level Practice question

2. Walk me through the phases of the software testing life cycle. What does each phase take in and hand over?

What the interviewer is really testing:
Whether you have done structured testing and know the real outputs of each step, not just the list of names.
Answer frame:

Analyse and plan: requirements in; questions, a draft traceability matrix and the test plan out.

Design and set up: test cases, test data and a ready environment, checked with a smoke run.

Execute and close: results and defect reports, then a closure report with coverage, open risks and lessons.

Sample spoken answer:

"It starts with requirement analysis. The input is the requirement documents or user stories, and I hand over a list of questions, what's testable, and a first traceability matrix. Next is test planning, where the output is the test plan: scope, approach, effort, schedule, roles and risks. Then test case development, which produces the test cases and the test data they need, reviewed by a peer or the lead. Environment setup runs alongside, and it's done when a smoke test passes on the build. Execution comes next: I run the cases, record pass or fail, raise defects and retest the fixes. Finally test closure, where I write a summary of what was covered, what's still open and what we'd change next time. Each phase has entry and exit criteria so nobody starts on shaky ground."

Red flag to avoid:

Listing the phase names from memory with no idea what document or result each one actually produces.

They may ask next:
  • What are entry and exit criteria for the test execution phase in your last project?
  • Which of these phases gets squeezed most when a deadline slips, and how do you protect it?
Say it in 60 seconds
Easy Technical round Fresher Practice question

3. Explain verification and validation. Which activities fall under each one?

What the interviewer is really testing:
Whether you can separate checking work products against a spec from checking the running product against what users need.
Answer frame:

Verification: 'are we building the product right?' Reviews, walkthroughs and inspections of documents and code, without running it.

Validation: 'are we building the right product?' Running the software to see it meets real user needs.

Both needed: a product can match its spec perfectly and still solve the wrong problem.

Sample spoken answer:

"Verification asks, are we building the product right? It checks each work product against what was specified, and it's mostly static: requirement reviews, design walkthroughs, code inspections, checking test cases against the requirements. Nothing is executed. Validation asks, are we building the right product? That's dynamic. We run the software, through system testing and especially user acceptance testing, to see it actually does what the users need. You need both. I've seen a feature that matched its spec line by line, so it passed verification, but when users tried it in acceptance testing the workflow didn't fit how they worked, so it failed validation. Verification catches mistakes early and cheaply. Validation catches a spec that was wrong in the first place."

Red flag to avoid:

Swapping the two definitions, or saying validation is just 'more testing' than verification.

They may ask next:
  • Is unit testing verification or validation, and why do people disagree on that?
  • Who should be involved in a requirement review, and what do you look for?
Say it in 60 seconds
Easy Technical round Fresher Practice question

4. What are the four levels of testing, and who usually carries out each one?

What the interviewer is really testing:
Whether you know what each level is looking for and where a manual tester's work mostly sits.
Answer frame:

Unit: the smallest piece, a function or class, tested by developers.

Integration: modules talking to each other, interfaces and data passing; stubs and drivers stand in for missing parts.

System and acceptance: the whole product end to end by testers, then acceptance by users or the client.

Sample spoken answer:

"Unit testing checks the smallest pieces, a function or a class, on their own. Developers write and run those. Integration testing checks that modules work together: data passes correctly across an interface, one service handles another's error. If a module isn't ready, we use a stub or a driver to stand in for it. System testing is where most of my work sits. It's the whole integrated product in an environment close to production, tested end to end against the requirements, both functional and non-functional. Then acceptance testing, where the business users or the client confirm it's fit for their purpose before go-live. That can be user acceptance testing, or alpha and beta testing for a product with outside users. Each level catches a different kind of defect, so skipping one just pushes those defects to the next."

Red flag to avoid:

Mixing up test levels with test types, for example calling regression a level.

They may ask next:
  • What's the difference between a stub and a driver?
  • What's the difference between alpha and beta testing?
Say it in 60 seconds

Test Types 3 questions

Easy Technical round Fresher, Mid-level Practice question

5. What's the difference between smoke testing and sanity testing? When do you run each one?

What the interviewer is really testing:
Whether you know the purpose of each check, and admit that teams use the two words loosely.
Answer frame:

Smoke: broad and shallow, on a fresh build; do the critical paths work well enough to test further?

Sanity: narrow and focused, after a small change or fix; does this one area behave sensibly?

Result: a failed smoke test rejects the build; a failed sanity check stops deeper testing of that area.

Sample spoken answer:

"Smoke testing is a quick, wide check on a new build. I touch the critical paths, can I log in, open the main screens, save a record, place an order, without going deep. The question is whether the build is stable enough to spend a full test cycle on. If the smoke fails, the build goes back. Sanity testing is narrow. After a small change or a bug fix, I check that one area in a bit more depth to confirm it behaves sensibly before I do anything heavier. It's often unscripted, and some teams treat it as a small slice of regression. So smoke is wide and shallow, sanity is narrow and a little deeper. I'll add that teams use these terms loosely, and some treat them as the same thing, so in a new team I ask what they mean by each one rather than assume."

Red flag to avoid:

Mixing up which one is wide and which is narrow, or claiming that sanity testing covers the whole application.

They may ask next:
  • Which ten checks would go in a smoke test for an online shopping site?
  • Should a smoke suite be automated, and who owns it?
Say it in 60 seconds
Easy Technical round Fresher Practice question

6. How is retesting different from regression testing? Which one comes first after a bug is fixed?

What the interviewer is really testing:
Whether you know that confirming a fix and checking for side effects are two separate jobs.
Answer frame:

Retesting: rerun the exact steps of the failed test to confirm this defect is fixed.

Regression: rerun tests that passed before to check the change broke nothing else.

Order: retest the fix first; if it holds, run regression around the change.

Sample spoken answer:

"Retesting, also called confirmation testing, is about one defect. The developer says it's fixed, so I rerun the same steps with the same data that failed before and confirm it now passes. If it doesn't, the bug gets reopened. Regression testing is about everything else. A fix or a new feature can break something that used to work, so I rerun tests that previously passed, especially in areas connected to the change. Retesting comes first, because there's no point checking side effects of a fix that doesn't work yet. Retesting is planned, you know exactly which cases, while regression needs a judgement about how wide to go. Regression is also the part that repeats every release, so it's the first place teams look to automate."

Red flag to avoid:

Treating retesting and regression as the same activity, or skipping regression because the fix was small.

They may ask next:
  • A developer fixed a date format bug in the invoice module. What would your regression scope be?
  • Can retesting ever be automated, or is it always manual?
Say it in 60 seconds
Easy Technical round Fresher Practice question

7. What's the difference between functional and non-functional testing? Give me two examples of each for a mobile banking app.

What the interviewer is really testing:
Whether you can separate what the system does from how well it does it, using a concrete product.
Answer frame:

Functional: does the feature do what the requirement says, for valid and invalid input?

Non-functional: how well it works: speed, security, usability, compatibility, accessibility, reliability.

Examples: tie each example to the app named in the question.

Sample spoken answer:

"Functional testing checks what the system does against the requirements. For a banking app, one example is a fund transfer: with enough balance it goes through, the balance updates on both accounts, and with too little balance it's refused with a clear message. Another is the statement screen showing the right transactions for the date range I pick. Non-functional testing checks how well it does it. For the same app, security is a big one: the session should time out after inactivity and the app shouldn't show account details in the recent apps preview. Another is compatibility: the app works on the older phone models and OS versions we say we support. Performance and accessibility sit here too. A feature can pass every functional test and still fail users because it's slow or confusing."

Red flag to avoid:

Giving only textbook definitions with no examples tied to the app in the question.

They may ask next:
  • Is usability testing something a manual tester can do without special tools? How?
  • Who writes the non-functional requirements, and what do you do when there aren't any?
Say it in 60 seconds

Test Design 4 questions

Medium Technical round Fresher, Mid-level Practice question

8. A booking form lets you choose between 1 and 10 tickets. Use equivalence partitioning to design your tests.

What the interviewer is really testing:
Whether you can split input into classes that behave the same and cut the number of tests without losing coverage.
Answer frame:

Idea: values in one partition should be handled the same way, so one value represents the class.

Partitions: below 1, 1 to 10, above 10, plus non-numbers, decimals and empty input.

Pair it: equivalence partitioning picks the classes; boundary values then test their edges.

Sample spoken answer:

"Equivalence partitioning says that if the system treats a group of values the same way, testing one value from that group is enough. For a ticket field that accepts 1 to 10, I see one valid partition, 1 to 10, and I'd test it with something like 5. Then the invalid partitions: less than 1, so 0 or a negative number, and more than 10, say 15. I don't stop at numbers though. What about letters, a decimal like 2.5, a blank field, or special characters? Each of those is its own invalid class, and each should give a clear error, not a crash. So instead of trying every number, I've got about seven tests that cover every class. Then I'd add boundary tests at 0, 1, 10 and 11, because that's where the logic usually breaks."

Red flag to avoid:

Testing only valid values, or treating non-numeric and empty input as not worth a test.

They may ask next:
  • Why test one invalid value at a time rather than several in the same test?
  • How would the partitions change if members could book up to 20 tickets?
Say it in 60 seconds
Medium Technical round Fresher, Mid-level Practice question

9. An age field accepts values from 18 to 60. Which exact values would you test with boundary value analysis, and why those?

What the interviewer is really testing:
Whether you know that off-by-one mistakes cluster at the edges and can name the exact values.
Answer frame:

Why edges: developers write less-than where they meant less-than-or-equal; bugs cluster there.

Two-value: each boundary and the value just outside it: 17, 18, 60, 61.

Three-value: also the value just inside: 17, 18, 19, 59, 60, 61; confirm the range is inclusive first.

Sample spoken answer:

"Boundary value analysis is based on where mistakes actually happen: a developer writes greater than 18 when the rule means 18 or more. So I test right at the edges. With the two-value approach, I pick each boundary and its nearest neighbour outside: 17 and 18 at the bottom, 60 and 61 at the top. 18 and 60 should be accepted, 17 and 61 rejected. If the field is risky, I use the three-value approach and add 19 and 59 as well. Before any of that I'd confirm with the business whether 18 to 60 includes both ends, because 'between 18 and 60' in a requirement can mean different things to different people. And I'd combine this with equivalence partitioning, so I also have one clearly valid middle value and invalid types like letters or a blank."

Red flag to avoid:

Picking random values inside the range, or testing only 18 and 60 without the values just outside.

They may ask next:
  • How would you apply boundary values to a date field, like a booking that must be within the next 30 days?
  • What boundaries exist on a text field that allows 8 to 16 characters?
Say it in 60 seconds
Medium Technical round Fresher, Mid-level Practice question

10. A shop gives free delivery when the customer is a member or the cart has more than five items. How would you test that rule with a decision table?

What the interviewer is really testing:
Whether you can turn a combined business rule into a complete set of test cases without missing a combination.
Answer frame:

Conditions and actions: list every condition as a row and the outcome as the action.

Combinations: two yes or no conditions give four rules; each column becomes a test case.

Edges: add boundary checks on the item count, exactly five versus six.

Sample spoken answer:

"A decision table is useful whenever the outcome depends on a combination of conditions. Here I have two conditions, is the customer a member, and does the cart have more than five items, and one action, free delivery or not. Two yes-or-no conditions give four combinations. Member with six items, free. Member with two items, free. Non-member with six items, free. Non-member with two items, delivery is charged. Each column is one test case, so I know I've covered every combination and not just the obvious happy path. Then I layer boundary thinking on top: 'more than five' means five items should be charged for a non-member and six should be free. That five-versus-six case is where I'd expect a bug. With more conditions the table grows fast, so I'd collapse rules where a condition doesn't change the result."

Code:
Conditions          R1   R2   R3   R4
Member?             Y    Y    N    N
More than 5 items?  Y    N    Y    N
Action
Free delivery?      Y    Y    Y    N
Red flag to avoid:

Testing only 'member gets free delivery' and never checking the non-member, low-item case or the five-versus-six edge.

They may ask next:
  • How many rules would you get with three yes or no conditions, and how do you keep that manageable?
  • What would you ask the product owner before writing these tests?
Say it in 60 seconds
Easy Technical round Fresher Practice question

11. What goes into a well-written test case, and what makes a test case bad?

What the interviewer is really testing:
Whether your test cases could be run by someone else and give the same verdict.
Answer frame:

Fields: ID, title, linked requirement, preconditions, test data, steps, expected result, priority.

Good: one clear purpose, exact expected result, anyone can run it and reach the same pass or fail.

Bad: vague expected results, several checks mashed together, hidden data or order dependencies.

Sample spoken answer:

"A test case needs an ID, a clear title that says what's being checked, the requirement it traces to, preconditions like 'user is registered and logged out', the exact test data, numbered steps, and an expected result. When it's run we add the actual result and the status. What makes it good is that someone who's never seen the feature can run it and reach the same pass or fail I would. So the expected result is specific: 'error message Invalid password appears under the field and the user stays on the login page', not 'it should work'. What makes one bad is vagueness, testing five things in one case so you can't tell what failed, or relying on data that only existed on my machine. I also keep steps short so the case survives small screen changes."

Red flag to avoid:

An expected result like 'system works fine' or 'page loads properly'.

They may ask next:
  • What's the difference between a test scenario and a test case?
  • How do you keep a large set of test cases up to date as the product changes?
Say it in 60 seconds

Test Planning 4 questions

Medium Technical round Fresher, Mid-level Practice question

12. What is a requirement traceability matrix, and how has it actually helped you on a project?

What the interviewer is really testing:
Whether you use traceability to prove coverage and judge the impact of changes, not just fill in a sheet.
Answer frame:

What: a table linking each requirement to its test cases, results and defects.

Directions: forward shows every requirement is tested; backward shows every test has a reason; both is bidirectional.

Use: coverage gaps, impact analysis when a requirement changes, and sign-off evidence.

Sample spoken answer:

"A traceability matrix maps each requirement to the test cases that cover it, and often to the execution results and any defects. Forward traceability, from requirement to tests, tells me nothing is untested. Backward, from tests to requirements, tells me I'm not spending time on tests nobody asked for. Having both is called bidirectional. Where it really paid off for me was when a requirement changed halfway through a release. The product owner changed how refunds were calculated, and because of the matrix I could see in a few minutes that eleven test cases and two open defects were affected, so I updated exactly those. It also helped at sign-off: when someone asked 'is the export feature tested?', I could show the cases, their results, and the one known issue still open."

Red flag to avoid:

Describing it only as a spreadsheet you fill in for the auditors, with no example of using it.

They may ask next:
  • In an agile team with user stories, where does traceability live if there's no big matrix?
  • How do you show coverage for a requirement that has no test cases yet?
Say it in 60 seconds
Hard Technical round Mid-level, Senior Practice question

13. What goes into a test plan, and how is a test plan different from a test strategy?

What the interviewer is really testing:
Whether you have written or owned a plan, and can tell the long-lived approach from the plan for one release.
Answer frame:

Plan contents: scope in and out, approach, environments, entry and exit criteria, schedule, roles, deliverables, risks.

Strategy: the higher-level, longer-lived approach: levels, types, tools, automation and defect standards.

Relation: the strategy sets the rules; each release's plan applies them to concrete scope and dates.

Sample spoken answer:

"A test plan is for a specific project or release. It says what's in scope and just as clearly what's out of scope, the approach for each area, the test environments and data, entry and exit criteria, suspension criteria for when we stop because the build is too broken, the schedule, who does what, the deliverables, and the risks with what we'll do about each. A test strategy sits above it. It's the general approach the organisation or programme takes: which test levels and types we use, how we decide what to automate, which tools, how defects are classified and handled. It changes rarely. So the strategy says 'we always do risk-based regression before release', and this release's plan says which areas are high risk this time, who covers them and by when. In small teams the two often live in one document, and that's fine."

Red flag to avoid:

Saying they're identical, or listing sections with no sense of which decisions a plan has to make.

They may ask next:
  • What are suspension and resumption criteria, and when have you needed them?
  • Which part of a test plan do stakeholders actually read?
Say it in 60 seconds
Hard Technical round Mid-level, Senior Practice question

14. Testing could go on for ever. How do you decide when you've done enough and it's time to stop?

What the interviewer is really testing:
Whether you base the call on agreed exit criteria and risk, and know that the release decision is shared with the business.
Answer frame:

Principle: exhaustive testing is impossible, so stopping is a risk decision, not a feeling.

Exit criteria: planned tests run, critical and high defects fixed or accepted, required coverage met.

Signals: the rate of new defects has flattened; remaining risks are written down and accepted by the business.

Sample spoken answer:

"You can never test everything, so the real question is whether the remaining risk is acceptable. I decide against exit criteria we agreed in the test plan, not on a feeling. Typically that's: all planned high-priority tests executed, no open critical or high defects unless the business has accepted them, every requirement has at least one passing test, and regression passed on the final build. Then I look at the trend. If we're still finding serious bugs every day, we're not done, whatever the calendar says. If the rate of new defects has flattened and what we're finding is minor, that's a good sign. Sometimes the deadline arrives first. Then my job is to state clearly what wasn't tested and what could go wrong, so the product owner makes the release call knowing the risk."

Red flag to avoid:

Saying 'when all bugs are found', or 'when the deadline comes' with no mention of risk or criteria.

They may ask next:
  • Who makes the final go or no-go decision, and what's your role in it?
  • What would you do if the exit criteria are met but your gut says the product isn't ready?
Say it in 60 seconds
Hard Technical round Mid-level, Senior Practice question

15. You have 600 regression test cases and only two days before release. How do you decide which ones to run?

What the interviewer is really testing:
Whether you can apply risk-based testing under pressure and make the uncovered risk visible to others.
Answer frame:

Rate risk: likelihood of failure times business impact for each area.

Pick first: what changed and what it touches, core user journeys, money and data paths, areas with a bug history.

Be open: share what will and won't be run so the business accepts the gap knowingly.

Sample spoken answer:

"I'd use risk-based testing. For each area I ask two things: how likely is it to break, and how bad would it be if it did? Likelihood goes up where the code changed this release, where it's complex, and where we've had bugs before. Impact is highest on core journeys like sign-up, login and checkout, anything that touches money or personal data, and features most customers use daily. So first I run the tests for the changed areas and what they connect to, then the critical end-to-end journeys, then the high-risk areas with a history. Low-risk, stable areas that nothing touched get a light pass or wait. Before I start, I share that list with the lead and product owner, so it's a shared decision that, say, the admin reports won't be fully regressed this time."

Red flag to avoid:

Trying to run all 600 faster, or quietly skipping tests without telling anyone what was left out.

They may ask next:
  • How would you find out which areas a change actually touches if the developers aren't sure?
  • What would you do after the release to make the next two-day window less painful?
Say it in 60 seconds

Defect Management 4 questions

Medium Technical round Fresher, Mid-level Practice question

16. Walk me through the life cycle of a bug, from the moment you find it until it's closed.

What the interviewer is really testing:
Whether you know each state, who moves a bug between them, and the side paths like rejected, duplicate and deferred.
Answer frame:

Main path: New, Assigned, Open or In Progress, Fixed, Ready for Retest, Verified, Closed.

Loop back: a fix that fails retest is Reopened and goes back to the developer.

Side states: Rejected or Not a Bug, Duplicate, Deferred, Cannot Reproduce; names depend on the tool's workflow.

Sample spoken answer:

"When I log a bug, it starts as New. The lead or triage meeting reviews it and it becomes Assigned to a developer. When they start work it's Open or In Progress, and when they've fixed it, it moves to Fixed and then Ready for Retest once it's on a test build. I retest with the original steps. If it passes, it's Verified, and then Closed. If it fails, I reopen it with a note on what I saw and it goes back to the developer. There are side exits too. It can be Rejected if it's working as designed, marked Duplicate if someone already logged it, Deferred if it's real but planned for a later release, or Cannot Reproduce. The exact names depend on how the team set up their tracker, so I learn their workflow first."

Red flag to avoid:

Saying a developer can close a bug without the tester retesting it.

They may ask next:
  • Who has the authority to move a bug to Deferred, and what should happen to it after?
  • What do you check before you reopen a bug?
Say it in 60 seconds
Medium Technical round Fresher, Mid-level Practice question

17. Explain severity and priority. Give me one bug that's high severity but low priority, and one that's low severity but high priority.

What the interviewer is really testing:
Whether you can separate technical impact from business urgency and back it with believable examples.
Answer frame:

Severity: how badly the defect hurts the system; usually suggested by the tester.

Priority: how soon it must be fixed; usually decided by the product owner or lead.

Examples: a crash in a rarely used corner versus a cosmetic error everyone sees.

Sample spoken answer:

"Severity is the impact on the system: does it crash, lose data, block a feature, or is it cosmetic? Priority is the urgency: how soon the business needs it fixed. The tester usually suggests severity, and the product owner or lead sets priority. They often line up but not always. High severity, low priority: the app crashes when you export a report in an old file format that only a handful of internal users still pick, and there's a working format right next to it. It's a crash, but it can wait a release. Low severity, high priority: the company name is misspelt on the home page banner, or the launch offer shows the wrong end date. Nothing breaks technically, but every visitor sees it, so it's fixed today. Checkout failing for everyone is simply high and high."

Red flag to avoid:

Saying severity and priority are the same, or giving examples that don't actually fit the combination asked for.

They may ask next:
  • Who should have the final say on priority, and why not the tester?
  • How would you argue for raising the priority of a bug you think is being underrated?
Say it in 60 seconds
Easy Technical round Fresher Practice question

18. What makes a bug report good enough that a developer can fix it without coming back to you?

What the interviewer is really testing:
Whether your reports are clear, reproducible and factual, because a weak report wastes a developer's day.
Answer frame:

Title: where and what, specific enough to find in a search.

Reproduce: environment, build, preconditions, test data, numbered steps, how often it happens.

Evidence: expected versus actual, severity, screenshot or recording, logs; one bug per report.

Sample spoken answer:

"The title does a lot of work. 'Cart total ignores removed item after quantity change' beats 'cart issue'. Then the environment: build number, browser or device, OS, and which test server. Preconditions and the exact test data, like which user account and which product. Then short numbered steps from a known starting point, and a clear expected result next to the actual result. I add how often it happens, every time or three out of ten tries, and attach a screenshot or a short screen recording, plus console or server logs if I can get them. I suggest a severity. I keep it factual, no opinions about the code, and one bug per report so it can be tracked and closed cleanly. Before logging it I search for duplicates and reproduce it once more myself."

Red flag to avoid:

Steps like 'use the app normally and it fails', or several unrelated bugs in one report.

They may ask next:
  • What would you do before logging a bug to make sure it isn't a duplicate?
  • When is a screen recording worth more than a screenshot?
Say it in 60 seconds
Hard Technical round Mid-level, Senior Practice question

19. You've seen a bug twice, but you can't make it happen again on demand. How do you handle it?

What the interviewer is really testing:
Whether you investigate systematically and still report honestly, rather than dropping the bug or logging something unusable.
Answer frame:

Capture: time, build, data, account, device and logs from the moments it happened.

Vary: change one thing at a time: data, timing, network, browser, cache, several tabs or users at once.

Report anyway: log it with the frequency and evidence, and work with the developer on extra logging.

Sample spoken answer:

"First I write down everything about the two times it happened while it's fresh: the exact time, build, account, data and device, so a developer can match it against the server logs. Then I try to find the pattern by changing one thing at a time. Does it happen with a slow network, after the session has been idle, with two tabs open, with a particular record, right after a deploy, only with a cold cache? Intermittent bugs are often timing or data problems, so those are my first suspects. I record my screen while trying, so if it shows up I've got it. Even if I can't pin it down, I still log it, marked as intermittent with 'seen two times in about twenty attempts' and all the evidence. Then I ask the developer if we can add logging around that area."

Red flag to avoid:

Not logging it at all because it can't be reproduced, or logging it with no data about when it happened.

They may ask next:
  • The developer marks it Cannot Reproduce and closes it. What do you do next?
  • Which kinds of defects tend to show up only some of the time?
Say it in 60 seconds

Agile & Exploratory 3 questions

Medium Technical round Fresher, Mid-level, Senior Practice question

20. What is exploratory testing, and how do you stop it from turning into random clicking?

What the interviewer is really testing:
Whether you treat exploratory testing as skilled, structured work with a goal and a record, not ad hoc play.
Answer frame:

Definition: learning the product, designing tests and running them at the same time.

Structure: a charter with a target and a goal, a fixed time box, notes as you go.

Output: bugs, questions and new test ideas, shared in a short debrief.

Sample spoken answer:

"Exploratory testing means learning about the product, designing tests and running them all at once, where each result shapes my next move. It's not random because I give it structure. I start with a charter, a one-line mission like 'explore the coupon field with expired, reused and oddly formatted codes to find pricing mistakes'. I time-box the session, for me usually sixty to ninety minutes, though that's a habit, not a rule, and take notes as I go: what I tried, what I saw, bugs, questions, and ideas for scripted cases later. Afterwards I debrief with the lead or developer. I also use heuristics to guide me, like trying boundaries, interrupting a flow halfway, going back and forth, or using the feature the way an impatient user would. It finds the bugs scripted cases miss, because scripts only check what someone thought of in advance."

Red flag to avoid:

Describing it as testing without any plan or notes, or as something you do only when there's no time to write test cases.

They may ask next:
  • How is exploratory testing different from ad hoc testing?
  • How do you report coverage from exploratory sessions to a manager who wants numbers?
Say it in 60 seconds
Medium Technical round Fresher, Mid-level Practice question

21. In a Scrum team, what does a manual tester actually do from the start of a sprint to the end?

What the interviewer is really testing:
Whether you have worked inside an agile team and test continuously, instead of waiting for a testing phase at the end.
Answer frame:

Before: refine stories, question acceptance criteria, estimate test effort in planning.

During: prepare scenarios early, test each story as it lands, pair with developers, keep regression going.

End: confirm the definition of done, help in the review, raise testing problems in the retro.

Sample spoken answer:

"My work starts before the sprint, in refinement. I read the stories, ask the awkward questions, what happens if the upload is too big, what about a user with no permission, and help tighten the acceptance criteria. In sprint planning I make sure testing effort is included in the estimate. Once the sprint starts I write my scenarios and test data while developers build, so I'm ready the moment a story is done. I test each story as soon as it lands, not all at the end, and I'll often sit with the developer to check it on their machine first. Alongside that I run regression on the changed areas and do some exploratory sessions. A story isn't done until it's tested. At the end I help in the sprint review and raise anything that slowed testing in the retrospective."

Red flag to avoid:

Describing a mini-waterfall where testing only starts in the last two days of each sprint.

They may ask next:
  • What do you do when three stories land for testing on the last day of the sprint?
  • What does shift-left testing mean to you in practice?
Say it in 60 seconds
Medium Technical round Fresher, Mid-level Practice question

22. Here's a user story with three acceptance criteria. How do you turn it into tests, and what do the criteria usually miss?

What the interviewer is really testing:
Whether you go beyond the written criteria to negative paths, edges and questions the story left open.
Answer frame:

Criteria first: each acceptance criterion becomes at least one scenario, often written as Given, When, Then.

Beyond them: negative input, boundaries, permissions, errors, empty states, interruptions.

Ask: turn every unclear point into a question for the product owner before building on a guess.

Sample spoken answer:

"I start with the acceptance criteria and turn each one into at least one scenario, usually in Given, When, Then form, so it's clear what the setup is, what the user does and what should happen. For a story like 'as a user I can reset my password by email', one would be: given a registered email, when I request a reset, then I get a link. Then I look for what the criteria don't say, because that's where the bugs are. An unregistered email: does the message give away that the account doesn't exist? The link used twice, or after it expires? A new password that breaks the rules? Two reset requests in a row, which link works? I write those as scenarios too, and anything I can't answer from the story becomes a question for the product owner in refinement."

Red flag to avoid:

Testing only the happy paths written in the criteria and calling the story done.

They may ask next:
  • What makes an acceptance criterion testable, and can you rewrite a vague one?
  • Who should add the missing criteria you found, you or the product owner?
Say it in 60 seconds

Practical Scenarios 2 questions

Medium Technical round Fresher, Mid-level Practice question

23. How would you test a login page with a username field, a password field, a remember-me box and a forgot-password link?

What the interviewer is really testing:
Whether you think in organised groups, functional, negative, security, usability and compatibility, instead of listing random checks.
Answer frame:

Functional: valid login, wrong password, unknown user, empty fields, remember me, forgot password, logout.

Security: masked password, lockout after repeated failures, vague error messages, session after logout, HTTPS.

Usability and more: tab order, Enter to submit, field labels for screen readers, browsers and devices.

Sample spoken answer:

"I'd group it. Functional first: valid username and password logs me in, wrong password fails, unknown username fails, both fields empty and each one empty give clear messages. Is the password case-sensitive? Are spaces around the username trimmed? Remember me keeps me signed in after closing the browser, and without it I'm signed out. Forgot password sends a reset link. Then security: the password is masked, the error doesn't say which field was wrong, the account locks or slows down after repeated failures, the page is on HTTPS, and after logout the back button doesn't show a logged-in page. I'd also try special characters and very long input to check they're handled safely. Then usability: tab order, Enter submits, labels work with a screen reader. Finally, a few browsers and a phone."

Red flag to avoid:

Stopping at 'valid login works and invalid login shows an error'.

They may ask next:
  • Which five of these would you run first if you had ten minutes?
  • What would you check when the login also offers sign-in with a social account?
Say it in 60 seconds
Medium Technical round Fresher Practice question

24. Here's a ballpoint pen. How would you test it?

What the interviewer is really testing:
Whether you ask about requirements and users before testing, and cover more than 'does it write'.
Answer frame:

Clarify: who it's for, what it's meant to do, any spec on ink, colour or how long it should last.

Functional: writes smoothly, ink colour matches, click or cap works, refill fits.

Non-functional and negative: grip comfort, durability, leaks, different surfaces and temperatures, misuse.

Sample spoken answer:

"Before I test anything, I'd ask about the requirements. Is it a cheap pen for offices or a premium gift pen? Is there a spec for ink colour, line width, or how many pages it should write? That changes what 'passing' means. Then functional tests: it writes as soon as I start, the line is smooth with no gaps or blobs, the colour matches the body, the click mechanism or cap works, and the refill fits if it's refillable. Non-functional: is it comfortable to hold for a long time, does the click still work after many hundreds of presses, does it survive a drop, does it leak in a warm pocket or on a plane? Then negative and edge cases: writing on glossy paper, damp paper, at an angle, upside down. Finally the packaging and the printed branding, because customers see those first."

Red flag to avoid:

Jumping straight into a list of checks without asking what the pen is for or who will use it.

They may ask next:
  • Which three tests would you do first if you had only two minutes?
  • How would your approach change if this were a pen for astronauts?
Say it in 60 seconds

On the Job 3 questions

Medium Behavioral round Fresher, Mid-level, Senior Practice question

25. Tell me about a bug you found in manual testing that the rest of the team had missed. How did you find it?

What the interviewer is really testing:
Whether you think like a user and investigate, and whether you can tell a clear story about real testing work.
Answer frame:

Context: the feature, the release and why others hadn't caught it.

Your method: the idea, heuristic or curiosity that led you there, and how you confirmed it.

Outcome: what was fixed, the impact avoided, and what you changed in the test set.

Sample spoken answer:

"At my last company we were releasing a new address book in a delivery app. All the scripted cases passed and the demo went well. During an exploratory session I edited a saved address, went back without saving, and then placed an order. The order screen showed the edited address, but the order was sent with the old one. Nobody had tried abandoning an edit, because the test cases all followed the save path. I reproduced it on two devices, recorded it, and logged it with the exact steps and the order IDs so the developer could see it in the data. It turned out a cached copy of the address wasn't being cleared. It was fixed before release, and I added 'abandon an edit halfway' as a standard check for every form we test."

Red flag to avoid:

A story with no method, where the bug was found by luck and nothing changed afterwards.

They may ask next:
  • Why do you think the scripted cases didn't catch it?
  • How did you decide on the severity for that bug?
Say it in 60 seconds
Medium Behavioral round Fresher, Mid-level Practice question

26. Tell me about a time a developer rejected a bug you raised, saying it wasn't a bug. How did you handle it?

What the interviewer is really testing:
Whether you settle disagreements with evidence and the requirement, calmly, without ego on either side.
Answer frame:

Check yourself first: re-read the requirement and reproduce the bug again.

Talk, with evidence: a quick call, not a comment war; show steps, data and the requirement.

Escalate cleanly: if it's really a requirement question, the product owner decides, and you accept it.

Sample spoken answer:

"In one release I logged that the search results ignored the 'in stock only' filter after you changed the sort order. The developer rejected it as 'working as designed'. First I re-read the story and reproduced it again, to make sure I hadn't misunderstood. Then instead of arguing in comments I asked for ten minutes on a call and showed it on my screen next to the acceptance criterion, which said the filter should stay applied. He'd understood the sort as a fresh search. So it was really a requirement question, and I brought in the product owner, who confirmed the filter should persist. It was fixed that sprint. Looking back, what worked was checking myself first and keeping it about the product. I've also had the opposite, where the product owner said it was fine, and I accepted that and moved on."

Red flag to avoid:

Treating it as a win or loss against the developer, or quietly dropping a real bug to avoid friction.

They may ask next:
  • What would you have done if the product owner had sided with the developer?
  • How do you keep a good working relationship with developers when you log a lot of bugs against their work?
Say it in 60 seconds
Medium Behavioral round Mid-level, Senior Practice question

27. Tell me about a time you had to test a feature when the requirements were thin or missing. What did you do?

What the interviewer is really testing:
Whether you can build test coverage from other sources and turn guesses into agreed expectations.
Answer frame:

Gather: talk to the product owner and developers, look at similar features, designs and the old version.

Write it down: your understanding as test scenarios and assumptions, shared for a quick confirmation.

Test: exploratory sessions first, then scripted cases once expectations are agreed.

Sample spoken answer:

"On one project we had to test a new approval flow for expense claims, and the story was two lines long. I didn't want to test against my own guesses, so I spent the first morning with the product owner and the developer, and looked at how the old approval screen worked and at the designs. Then I wrote my understanding down as a short list of scenarios and assumptions, like 'a manager can't approve their own claim' and 'a rejected claim can be edited and resubmitted', and sent it round for a yes or no. Half were confirmed, two were wrong and one nobody had thought about. That list became our acceptance criteria. I started with exploratory sessions while it settled, then wrote the scripted cases. The release went out and users didn't raise a single defect on that flow."

Red flag to avoid:

Saying you simply tested whatever the developer built, or that you waited until someone wrote full requirements.

They may ask next:
  • How do you avoid slowing the team down while you wait for answers?
  • What would you do if nobody could tell you the expected behaviour?
Say it in 60 seconds

Release Decisions 3 questions

Hard Situational round Mid-level, Senior Practice question

28. It's the evening before a release and you find a bug that corrupts data in a rarely used feature. What do you do?

What the interviewer is really testing:
Whether you raise it fast with facts and options, and let the right people make the release call instead of hiding it or deciding alone.
Answer frame:

Confirm quickly: reproduce it, pin down scope and how much data it affects.

Raise it now: tell the lead and product owner tonight, with evidence and severity.

Give options: fix and retest, turn the feature off, release with a documented known issue, or delay.

Sample spoken answer:

"First I'd spend a few minutes making sure it's real: reproduce it, note which data gets corrupted and under what conditions, and check whether it's also in production already. Then I'd raise it straight away with my lead and the product owner, not in tomorrow's stand-up. Data corruption is high severity even if few people use the feature, because it can't always be undone. I'd bring the facts and some options: can the developer fix it tonight and can I retest and regress the area in time, can we switch that feature off or hide it for this release, or do we delay. I'd give my honest view of the risk, but the release decision belongs to the product owner. Whatever we choose, I'd make sure it's written down, and if we ship with the feature off, I'd verify that it really is off."

Red flag to avoid:

Keeping quiet because it's a rarely used feature, or insisting the release must stop without offering any options.

They may ask next:
  • The product owner decides to release with the bug and fix it next week. How do you respond?
  • How would you check that switching the feature off doesn't break anything else?
Say it in 60 seconds
Hard Situational round Mid-level, Senior Practice question

29. Your manager wants to skip regression this sprint to hit a deadline and says the change is small. What do you say?

What the interviewer is really testing:
Whether you can negotiate a smaller, risk-based check instead of flatly refusing or silently giving in.
Answer frame:

Understand: what exactly changed and what it touches.

Offer a middle path: a targeted regression of the affected areas plus the core journeys, sized to the time.

Record the risk: what won't be covered, agreed in writing.

Sample spoken answer:

"I wouldn't just say no, and I wouldn't just agree. I'd ask to see what actually changed. 'Small' changes often touch shared code, like a date helper or a login check that half the app uses. Then I'd offer a middle path: instead of the full regression, a targeted run of the changed area and everything that depends on it, plus a short check of our core journeys like sign-up, login and payment. That might take a few hours instead of two days. I'd lay it out plainly: this is what I'll cover, this is what I won't, and this is what could slip through. If the manager still wants to skip it entirely, that's their call, but I'd ask for the decision in writing in the ticket so the risk is owned, and I'd watch that area closely after release."

Red flag to avoid:

Refusing to release without the full suite, or skipping it quietly and saying nothing if something breaks.

They may ask next:
  • The same thing happens three sprints in a row. What do you change?
  • How would you size a targeted regression if you don't know the code well?
Say it in 60 seconds
Hard Situational round Mid-level, Senior Practice question

30. A customer finds a serious bug in a feature you tested and signed off. Your manager asks how it got past you. How do you respond?

What the interviewer is really testing:
Whether you take ownership without blame or defensiveness, and turn a missed bug into a better process.
Answer frame:

Own it: no excuses; first help reproduce it and support the fix.

Find the gap: was it untested, tested with the wrong data, a different environment, or a missing requirement?

Prevent: add the case to regression and fix the process gap that let it through.

Sample spoken answer:

"I'd start by owning it. I signed it off, so I don't point at the developer or the requirement. The first job is the customer, so I'd help reproduce it quickly and retest the fix. Then I'd look honestly at why it got through. Maybe we never tested that path, or we tested it with clean data while the customer had old records, or our test environment didn't match production, or the requirement never mentioned that case. Each of those has a different fix. Then I'd come back to my manager with the cause and a concrete change: the case is now in the regression suite, and, for example, we add a set of test data copied in shape from real accounts, with personal details masked. Testing can't prove there are no bugs, but the same kind of miss shouldn't happen twice."

Red flag to avoid:

Getting defensive and blaming the developer or the timeline before even looking at what happened.

They may ask next:
  • How would you run a blameless review of an escaped defect with the whole team?
  • What if the root cause was a requirement nobody wrote down?
Say it in 60 seconds
Were you asked something else? Share it A person checks every question before it goes on the site. No name is shown.
For the call itself

The questions above are the prep. The call has ten more.

ClapAssist is an AI interview assistant for Mac and Windows. It listens to the interview on your computer and shows you what to say, in short lines you can read while you talk. Your resume and notes are never stored on our servers. It stays out of screen share on every plan; only you can see it.

Download ClapAssist with 10 free minutes
Mac and Windows · Stays out of screen share · No card