Multiple choice technology testing

Testing of a candidate build to be deployed is done by performing

  1. Static test

  2. Dynamic test

  3. Smoke test

  4. None of these

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

Smoke testing is the preliminary testing performed on candidate builds before deployment. Static and dynamic testing are broader categories, not specific pre-deployment tests.

AI explanation

Smoke testing (build verification testing) is exactly the practice of quickly testing a freshly deployed candidate build to confirm its critical, core functionality works before investing further test effort — informally, 'does it even turn on.' Static testing examines code or documents without executing them (reviews, walkthroughs, inspections). Dynamic testing is the broad category of executing code to verify behavior; smoke testing is technically a type of dynamic testing, but the specific named practice for validating a new candidate build is smoke testing.