SoftwareTestPilot
Certification guide

ISTQB Foundation Exam: Complete Study Guide (1970)

A chapter-by-chapter breakdown of CTFL v4.0, the test design techniques that show up in every exam, an 8-week study plan, 20 sample questions with expert explanations, and the exam-day tactics that turn nervous candidates into certified testers.

Last updated: June 27, 1970

Exam format at a glance

DetailValue
Syllabus versionCTFL v4.0 (2024 release)
Questions40 multiple choice
Duration60 min (75 min for non-native English)
Passing score65% (26 / 40)
Cost~$200–$300 USD (varies by country; ~$150 in India)
DeliveryOnline proctored or accredited test centers
ValidityLifetime — no renewal
Negative markingNone — always guess on unsure questions

1. What is ISTQB Foundation in 2026?

ISTQB (International Software Testing Qualifications Board) defines the global standard for testing certifications. The Certified Tester Foundation Level (CTFL) is the entry-level credential recognised by employers in 70+ countries. The current syllabus is CTFL v4.0, released in 2024. It replaced CTFL 2018 with stronger emphasis on agile testing and DevOps, automation and AI-assisted testing, risk-based testing, shift-left and shift-right approaches, and test engineering as a discipline. You do not have to take the accredited 3-day training course to sit the exam — most candidates in 2026 self-study.

2. Why get ISTQB certified?

Career impact: required by many employers in finance, government, defense, healthcare, and EU enterprise. Recognised across 70+ countries. Typically pays for itself in 6–12 months through a $5k–$15k salary uplift, and opens the door to advanced ISTQB certifications (CTAL, CTEL, CT-MAT). Knowledge impact: the exam forces you to internalise the shared vocabulary of software testing — equivalence partitioning, decision tables, the test pyramid — so you can talk to any senior QA lead without translation.

3. Chapter 1 — Fundamentals of Testing (~25% of exam)

Memorise the seven testing principles verbatim — they appear as direct questions:

  • 1. Testing shows the presence of defects, not their absence.
  • 2. Exhaustive testing is impossible — test risk-based instead.
  • 3. Early testing saves time and money.
  • 4. Defects cluster together.
  • 5. Beware the pesticide paradox — repeating the same tests stops finding bugs.
  • 6. Testing is context-dependent.
  • 7. Absence-of-errors is a fallacy — zero defects ≠ meeting user needs.

4. Chapter 2 — Testing Throughout the SDLC (~20%)

Know the SDLC models (Waterfall, V-Model, Iterative, Agile) and where testing sits in each. Know the four test levels — component (unit), integration, system, acceptance — and the four test types — functional, non-functional, structural (white-box), and change-related (confirmatory + regression). Shift-left = test earlier (requirements review, static analysis, unit tests). Shift-right = test in production (canary releases, A/B testing, synthetic monitoring, chaos engineering). In a DevOps pipeline each gate has strict time budgets — under 10 minutes for unit + integration.

5. Chapter 3 — Static Testing (~10%)

Static testing evaluates work products without executing code — it catches roughly 50% of defects before dynamic testing starts. Know the three review techniques (walkthrough, technical review, inspection) and the four formal-review roles (author, moderator, reviewer, scribe). Static analysis tools like SonarQube, ESLint, and SpotBugs catch security issues, code smells, style violations, and dead code.

6. Chapter 4 — Test Design Techniques (~30% — highest yield)

Master this chapter and you pass the exam. Black-box techniques: Equivalence Partitioning (one value per group), Boundary Value Analysis (just inside/outside each boundary), Decision Table Testing (combinations of inputs → actions), State Transition Testing (valid + invalid transitions), Use Case Testing (main + alternate + exception flows). White-box techniques: Statement, Branch (Decision), Condition, Multiple Condition, and Path coverage — in increasing order of rigour. Experience-based: error guessing, exploratory testing (charter-led), and checklist-based testing.

7. Chapter 5 — Managing the Test Process (~10%)

A test plan covers scope, objectives, test items, approach, entry/exit criteria, resources, schedule, risks, and deliverables. Monitoring collects data (progress, defect density, coverage); control acts on it (re-prioritise, add resources). Risk-based testing prioritises by likelihood × impact. Defect lifecycle: New → Assigned → Open → Fixed → Pending Retest → Retest → Verified → Closed (or Reopened). Severity = technical impact set by the tester; priority = business urgency set by the PM.

8. Chapter 6 — Test Tools (~5%)

Know the categories: test management (Jira+Xray, TestRail, Zephyr), execution (Selenium, Playwright, Cypress), test data (Faker, Synthesized), static analysis (SonarQube, ESLint), performance (JMeter, k6, Gatling), coverage (JaCoCo, Istanbul), and AI-assisted (Mabl, Testim, Healenium). Automation benefits: faster feedback, repeatability, broader coverage. Risks: expecting automation to find new defects (it doesn't), underestimating maintenance, tool lock-in, flaky tests. First step when adopting a tool: pilot on a small high-value area.

9. The 8-week study plan (~10 hrs/week)

Week 1 — Fundamentals: read chapter 1 twice, 20 practice Qs. Week 2 — SDLC + test levels: read chapter 2, flashcards, 30 Qs. Week 3 — Static testing: chapter 3 + walk through a real doc, 20 Qs. Week 4 — Design techniques (highest yield): chapter 4, every exercise, 50 Qs. Week 5 — Test management: chapter 5, draft a one-page test plan, 30 Qs. Week 6 — Tools + automation: chapter 6, run a small tool, 20 Qs. Week 7 — Full review: re-read all chapters, 2 mock exams, review every wrong answer. Week 8 — Final prep: light review + 1 more mock, then sit the exam. Compressed 2-week plan (experienced testers): days 1–3 chapters 1/2/5, days 4–6 chapters 3/4/6, days 7–10 do 200 practice Qs, days 11–14 mocks + exam.

10. Sample questions (representative)

Q. Which is NOT a testing principle? A. Testing shows the presence of defects B. Exhaustive testing is impossible C. Testing can guarantee a bug-free product D. Early testing saves time. Answer: C. Q. For a numeric field accepting 1–100, which are boundary value test cases? A. 0,50,101 B. 1,50,100 C. 0,1,100,101 D. 1,100. Answer: C. Q. Which coverage criterion requires both true and false outcomes of every branch? Branch (Decision) coverage. Q. A team runs the same 50 regression tests every release and hasn't found a bug in 6 months — which principle is being violated? The pesticide paradox. Q. Severity vs Priority? Severity = technical impact (tester); Priority = business urgency (PM). A 'Critical severity / Low priority' defect crashes the system but no one uses that feature. Q. First step when introducing a test automation tool? Pilot on a small, high-value area.

11. Exam-day tactics

Sleep 8 hours the night before — cramming hurts more than it helps. Test your webcam if taking online proctored. Time: 60 minutes / 40 questions = 90 seconds per question. If stuck, mark and move on. There is no negative marking — always guess. The 'I don't know' strategy: re-read the question (the answer is often in the stem), eliminate obviously wrong choices, pick the most specific/complete answer (ISTQB favours precise language), then guess if needed. Multiple-answer trap: ~25% of questions require multiple answers. Read carefully — the question states exactly how many to pick. Don't add extras unless you're sure.

12. After ISTQB Foundation: what's next?

Advanced Level (CTAL): TM (Test Manager), TA (Technical Test Analyst), TTA (Test Automation Engineer), CT-MAT (Model-Based Automation). Expert Level (CTEL): ITM (Improving the Test Process), TAE (Test Automation Engineering), TM (Test Management). Beyond ISTQB, pair the certificate with practical work: a Playwright or Selenium project on GitHub, an API testing portfolio, and one AI-assisted testing experiment.

Frequently asked questions

Related reads

Land your next QA role faster

Free AI interview practice, resume ATS review, and a live QA jobs radar.