BugMojoBugMojoBugMojo
FeaturesPricingBlogHelpAbout
Add to ChromeLog inGet started
BugMojoBugMojo

Bug reports that actually help fix bugs — capture, replay, share.

A product of Softech Infra.

Product

  • Features
  • Pricing
  • Browser extension
  • Get started
  • Log in

Resources

  • Help & guides
  • Blog
  • Compare
  • Glossary

Company

  • About
  • Contact
  • Security
  • Privacy
  • Terms
  • Sitemap
© 2026 BugMojo. All rights reserved.
AllGuidesEngineeringPlaybooksCompareGlossaryAlternativesBy roleBug tracking by framework
  1. Home
  2. Blog
  3. Glossary
  4. QA vs QC: Quality Assurance vs Quality Control
Glossary

QA vs QC: Quality Assurance vs Quality Control

Quality Assurance prevents defects by improving how software is built; Quality Control detects defects by testing what was built. QA asks 'are we building it right?', QC asks 'did we build it right?' — and you need both.

ManviManvi·Jul 16, 2026·6 min read
Glossary
Isometric line-art comparison of quality assurance and quality control panels meeting at a central quality gate, lime on dark charcoal
TL;DR
  • Quality Assurance (QA) is process-oriented and proactive — it prevents defects by improving how software is built. It asks "are we building it right?"
  • Quality Control (QC) is product-oriented and reactive — it detects defects in the finished product through testing and inspection. It asks "did we build it right?"
  • The memorable frame: QA prevents, QC detects. QA is the whole quality system; QC is the checking step within it.
  • You need both. Great QC without QA catches the same bugs forever; great QA without QC assumes quality without verifying it.

QA and QC are two of the most confused acronyms in software. People say them interchangeably, job titles blur them, and "QA team" is often shorthand for "the people who test." But Quality Assurance and Quality Control are genuinely different disciplines with different goals, and getting the distinction straight changes how a team invests in quality. This page gives the answer first, then the frame, then a side-by-side table and where testing actually fits.

QA vs QC: the short answer

Quality Assurance (QA) is process-oriented and proactive: it prevents defects by improving how software is built. Quality Control (QC) is product-oriented and reactive: it detects defects in the finished product through testing. QA asks "are we building it right?"; QC asks "did we build it right?" QA is the system; QC is the checking step within it.

The cleanest way to hold the difference in your head is a single pair of questions. QA asks: are we building it right? — is the process sound, are the standards in place, will this way of working tend to produce good software? QC asks: did we build it right? — does the product in front of us actually work, does it meet the spec, are there defects? QA operates on the system that produces the software. QC operates on the output of that system.

Prevention vs detection

The most durable one-line frame is QA prevents, QC detects. QA tries to stop defects from ever being written by shaping the way the team works. QC assumes some defects slipped through anyway and goes looking for them in the built product. Prevention and detection are not competing strategies — they are two halves of the same goal, applied at different moments in the lifecycle.

Per the American Society for Quality, QA is about the process used to create a deliverable, while QC is about the inspection of the deliverable itself. The ISTQB glossary frames quality assurance as the part of quality management focused on providing confidence that quality requirements will be fulfilled — confidence built into the process, not verified after the fact. That "built in versus checked at the end" split is the whole distinction in a sentence.

Key takeaway

QA builds quality in; QC checks quality is there. If you only remember one thing: QA is proactive and works on the process, QC is reactive and works on the product.

QA vs QC side by side

FeatureQA (Quality Assurance)QC (Quality Control)
FocusProcess — how software is builtProduct — the finished deliverable
GoalPrevent defectsDetect defects
ApproachProactiveReactive
Example activitiesStandards, code reviews, CI/CD gates, process auditsTest cases, exploratory testing, UAT, inspections, bug reports
Question it answersAre we building it right?Did we build it right?
When in the lifecycleThroughout — before and during buildAfter a build exists — at verification
Quality Assurance versus Quality Control across the dimensions that matter. Notice QA and QC sit at opposite ends of the same lifecycle.

Where does testing fit?

This is where most confusion starts. Testing is a QC activity — running a test case, doing an inspection, or exploring a feature to find failures are all ways of detecting defects in something that already exists. But testing does not float free: it is part of an overall QA process. The standards that decide what gets tested, the entry and exit criteria for a release, and the loop that feeds test results back into better practices are all QA.

So a tester performs QC work inside a QA system. Both matter, and they hand off to each other constantly. Concretely, the two disciplines break down like this:

  • QA activities (prevention, process): defining coding standards, running code reviews, setting up CI/CD gates that block bad merges, adopting shift-left practices so quality is considered earlier, and conducting process audits.
  • QC activities (detection, product): running test cases, exploratory testing, user acceptance testing (UAT), inspections, and filing bug reports on what you find.
Note

A useful test of the boundary: if the activity changes how you work, it is QA. If it examines what you produced, it is QC. A code review standard is QA; the review that catches a null check is doing QC-flavoured detection within that QA process. The two genuinely overlap at the edges — which is exactly why the labels get blurred.

Quality Management: the umbrella

QA and QC are not the top of the hierarchy — they both sit under Quality Management. Quality Management is the overall discipline of directing an organisation with regard to quality; QA and QC are two functions within it. In the ISO 9000 family of standards, quality assurance is defined as the part of quality management focused on providing confidence that quality requirements will be fulfilled, while quality control is the part focused on fulfilling quality requirements — that is, the actual checking. Same parent, different jobs: one builds confidence in the process, the other verifies the result.

This is why treating QA and QC as synonyms quietly costs teams. If "QA" in your org only ever means "someone tests it at the end," you have a QC function wearing a QA label and no one is actually improving the process that keeps producing defects.

Why the distinction matters in practice

The reason to keep these straight is not pedantry — it changes where you invest. Consider the two failure modes:

  • Great QC, no QA. You test thoroughly and catch a lot of bugs, but nothing improves the process that produces them. You catch the same class of defect release after release, forever. Detection without prevention is a treadmill.
  • Great QA, no QC. You have strong standards, reviews, and pipelines, so you assume the product is good — but you never actually verify it against reality. Prevention without detection is faith. Process discipline reduces defects; it does not eliminate them, and the ones that slip through ship unseen.

The takeaway is the same one the tldr opened with: you need both. QA lowers the rate at which defects are created; QC catches the ones that still get through and — crucially — feeds what it learns back into QA so the process gets better over time.

Common confusion: in casual speech, and in a lot of job titles, "QA" and "QC" are used interchangeably. The role called QA engineer very often spends most of its time doing QC work — writing and running tests. That is fine as a title, but it is worth knowing that the label and the daily activity do not always line up.

Where BugMojo fits

Capture tooling lives on the QC side of the line: it is part of how you detect and document defects in a built product. When QC finds a bug, the value of that finding depends entirely on how reproducible it is. A one-line "checkout is broken" report gives the process nothing to learn from. BugMojo makes each found defect reproducible — an rrweb session replay, the console errors, and the failing network requests captured at the moment the bug happens. That reproducibility is what lets a QC finding feed cleanly back into QA: a well-evidenced defect is one you can trace to a root cause and turn into a better standard, a new test, or a tighter pipeline gate, so the same class of bug does not come back. QC finds it; good evidence is what turns the find into process improvement.

Turn every found bug into reproducible evidence

BugMojo captures a session replay plus console and network logs the moment a bug is found, so your QC findings are reproducible enough to actually improve the process.

Install the extension

Frequently asked questions

Frequently asked questions

Sources

  1. ISTQB Glossary: definition of quality assurance — ISTQB (2026)
  2. ASQ: Quality Assurance vs Quality Control — definitions and distinction — ASQ (American Society for Quality) (2026)
  3. Wikipedia: Quality assurance — Wikipedia (2026)
  4. Wikipedia: Quality control — Wikipedia (2026)
Share:
Manvi
Manvi· QA Tester

Manvi is a Quality Assurance Tester with three years of experience. For her, quality is not just about finding bugs — it is about ensuring the best possible experience for every user.

On this page

  • QA vs QC: the short answer
  • Prevention vs detection
  • QA vs QC side by side
  • Where does testing fit?
  • Quality Management: the umbrella
  • Why the distinction matters in practice
  • Where BugMojo fits

Get bug-tracking insights, weekly.

Engineering deep-dives, QA playbooks, and honest tool comparisons. No spam — unsubscribe in one click.