A program with high cyclometic complexity is almost likely to be:
-
Large
-
Small
-
Difficult to write
-
Difficult to test
D
Correct answer
Explanation
Cyclomatic complexity measures the number of independent paths through source code. Programs with high cyclomatic complexity have many decision points and execution paths, making them difficult to test thoroughly because each path needs to be validated. Size (large or small) does not directly correlate with cyclomatic complexity, and difficulty in writing is not the primary concern.