InterviewSolution
Saved Bookmarks
| 1. |
The source code directories are used to calculate the ____________ of each class.(a) Data size(b) Lines of code(c) Cyclomatic code complexity(d) Mutant scoreThis question was posed to me in final exam.This intriguing question comes from EasyMock in chapter Testing with Mock Objects of JUnit |
|
Answer» CORRECT answer is (c) CYCLOMATIC code complexity Easiest EXPLANATION: The cyclomatic code complexity is a METRIC to indicate the complexity of the code. |
|