ISTQB CTFL v4.0 Practice

Sample Exam 4-3 – 40 Question Practice Test

Practice version of ASTQB Sample Exam 4, built as an interactive HTML quiz. One correct answer per question.

40 questions Recommended: 60 minutes
How to use: Answer each question by choosing one option (A–D). When you are finished, click Show Answer Key to reveal the official correct options. Use Clear Selections to reset the test.
Question 1
How does performing root cause analysis help an organization’s quality assurance activities?
Question 2
In an Agile team, testers are blamed for slowing the sprint because system testing is taking time. Which approach would best use the whole team’s skills to finish the work?
Question 3
Which situation is an example of debugging rather than testing?
Question 4
Which statement about exhaustive testing is most accurate?
Question 5
You must report how much of the requirements have been run in testing so far. What do you need in place to calculate this execution coverage?
Question 6
On a typical project, who is primarily responsible for creating and maintaining the overall test plan?
Question 7
Your team has analysed quality risks and, for each one, agreed its likelihood, impact, and mitigation approach. Where should this information normally be stored?
Question 8
A junior tester designs a single “happy path” test for a user story and overlooks error conditions and alternate flows. Which generic tester skill is most clearly missing?
Question 9
Which statement is an example of a sound general testing practice?
Question 10
Which development approach expresses requirements as simple, structured test cases (for example using “Given/When/Then”)?
Question 11
To which test type does usability testing belong?
Question 12
You receive a new build every day. Some fixes listed by developers are missing from the build or still fail. Which testing activity specifically checks whether those fixes have been correctly implemented in a new build?
Question 13
After a project retrospective, the team has identified what went well and what needs improvement. What else should they decide to actually realize process improvements?
Question 14
Operations staff report recurring performance problems in production. Your organization is adopting DevOps with a CI/CD pipeline. How can this help address those performance concerns?
Question 15
Which option is a static testing technique rather than a dynamic one?
Question 16
You are invited to requirement reviews, but you usually receive the specification only the evening before the review meeting. You then rush and work extra hours to skim the document. Which key success factor for reviews is missing?
Question 17
What is the fundamental difference between static testing and dynamic testing?
Question 18
If the author leads a structured review meeting for their own work product, which type of review is taking place?
Question 19
When tests are designed directly from the internal structure of the code, which test design technique is being used?
Question 20
How is statement coverage defined for white-box testing?
Question 21
Your project has a very tight deadline. The code exists but cannot yet be run. Which type of testing could you still perform to uncover defects now?
Question 22
You deliberately design tests by thinking about mistakes that developers commonly make. Which category of test technique are you applying?
Question 23
Exploratory testing is organized into short, time-boxed sessions, each guided by a written charter. What is this style of testing called?
Question 24
While writing acceptance criteria for a story, you create a list that maps possible input combinations to the corresponding expected outputs. Which style of acceptance criteria are you using?
Question 25
A cash machine allows withdrawals of exactly 20, 100, or 500 dollars, chosen from a drop-down list. No other values may be entered. Using equivalence partitioning on the input amount, how many partitions must be tested for full coverage?
Question 26
A shipping system calculates cost from weight in pounds, with a maximum allowed weight of 100 lbs:

0–10: $5.00    11–25: $7.50    26–50: $12.00    51–100: $17.00

Using two-value boundary value analysis (testing both sides of each valid boundary and outside the valid range), how many test inputs are required for full coverage?
Question 27
You are deriving a decision table for ordering a hamburger. A basic burger can be chosen, optional extra items may be added, items may be removed, and fries may also be requested. If any items are added or removed, the order is no longer considered the basic burger.

Which option best describes a correct decision table for this behaviour?
Question 28
An online shop has the following states: Login, Search, Shopping Cart, and Checkout. A failed login returns to Login; a successful login goes to Search. From Search, customers can search again, go to the cart, or stay in search. From the cart they can return to search or move to checkout. From checkout they can go back to search or finish with logout.

How many valid transitions should appear on the state transition diagram for this flow?
Question 29
Using an ATDD approach, you define tests for a story about hotel floor reservations. Occupancy of a floor has three partitions: empty, between one room and completely full, and overbooked. You already have tests for one occupant, a full floor, an empty floor, usability of the interface, and performance when the hotel is busy.

Which additional test is still missing?
Question 30
The overall level of a particular risk is normally determined by combining which two factors?
Question 31
Which statement is an example of a clear and realistic exit criterion for system testing?
Question 32
You decide that exploratory testing is the most suitable technique for the current work. In the Agile testing quadrants, to which quadrant does this testing mainly belong?
Question 33
Which situation is primarily a project risk rather than a product risk?
Question 34
A large ERP implementation has finished testing after two years and is awaiting go-live approval. Which test document should be produced at this point for key stakeholders?
Question 35
Software is delivered to the test team in numbered iterations. A failure was found in iteration 3, fixed in iteration 4, and confirmed as fixed. Now in iteration 7, the same failure has reappeared. The developer is unsure when it came back and asks for your help. How can configuration management most usefully support your investigation?
Question 36
You estimate test effort using three-point estimation. Three experts provide optimistic, likely, and pessimistic values, and the averages are:

  Optimistic Likely Pessimistic
Average (days) 30 55 75

Using the formula (O + 4M + P) / 6 and the standard deviation (P − O) / 6, what is the estimate?
Question 37
The following tests are defined for an accounting system:

Test ID Name Dependency Priority
(1 = highest)
1 Purchase Item None 2
2 Receive Invoice Test 1 3
3 Receive Goods Test 1 2
4 Send Payment Test 2 3
5 Report Payments Test 4 1

Considering both priorities and dependencies, in which order should these tests be executed to run the highest priority test as early as possible?
Question 38
A defect report includes the following description:

“The report ran using the attached step list, but the figures were wrong. For instance, the values in the first column were incorrect (see screenshot). This report is vital and users cannot perform their work without it.”

What is the most serious problem with this defect report?
Question 39
What is the primary purpose of a test execution tool?
Question 40
Which of the following is a known risk associated with using automated test tools?
Tip: Try to complete the exam under 60 minutes before revealing the answers.

Answer Key – Sample Exam 4-3

  1. Q1 – A
  2. Q2 – A
  3. Q3 – C
  4. Q4 – B
  5. Q5 – A
  6. Q6 – C
  7. Q7 – C
  8. Q8 – D
  9. Q9 – A
  10. Q10 – B
  11. Q11 – B
  12. Q12 – C
  13. Q13 – A
  14. Q14 – B
  15. Q15 – D
  16. Q16 – D
  17. Q17 – D
  18. Q18 – B
  19. Q19 – B
  20. Q20 – D
  21. Q21 – B
  22. Q22 – C
  23. Q23 – B
  24. Q24 – C
  25. Q25 – D
  26. Q26 – C
  27. Q27 – B
  28. Q28 – C
  29. Q29 – C
  30. Q30 – A
  31. Q31 – D
  32. Q32 – C
  33. Q33 – D
  34. Q34 – A
  35. Q35 – B
  36. Q36 – C
  37. Q37 – B
  38. Q38 – D
  39. Q39 – A
  40. Q40 – A