Multiple choice technology testing

Unit Testing belongs to

  1. a.) Test a single unit of code

  2. b.)Test a one module of the application

  3. c.)Test a whole application

  4. d.)Test the data, stored in database.

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

Unit testing specifically focuses on testing the smallest testable part of an application - a single unit of code such as a method, function, or class (Option A). It does NOT test entire modules (Option B), whole applications (Option C), or database data directly (Option D) - those are integration or system testing levels.