Multiple choice technology testing

Code Coverage Analysis is used for which type of testing by QA developer?

  1. Functional Testing

  2. Unit Testing

  3. Performance Testing

  4. Integration Testing

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

Code Coverage Analysis is used during unit testing to measure which lines/branches/paths of code are executed by test cases. It helps QA developers identify untested code, improve test completeness, and ensure critical code paths are exercised. It's not primarily for functional, performance, or integration testing (though it can complement them).