Multiple choice types of testing

A quick-and-dirty test that the major functions of a piece of software work without bothering with finer details

  1. Smoke testing

  2. Regression testing

  3. Retesting

  4. Unit testing

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Smoke testing (also called build verification testing) quickly checks that major functions work without detailed testing, ensuring the build is stable enough for further testing. Regression testing checks for defects in unchanged areas, retesting verifies specific fixes, and unit testing examines individual components.