CTAL-TTA_001 · Question #35
Part 4 "Test tools & Automation" It has been decided to improve the efficiency and effectiveness of unit testing by acquiring a number of test tools. Which TWO of the following tools would you…
The correct answer is A. Dynamic analysis C. Coverage measurement tool. Dynamic analysis (A) directly supports unit testing because it analyzes code during execution, detecting runtime errors, memory leaks, and unexpected behavior - exactly what unit tests do when they run code. Coverage measurement (C) is a natural companion to unit testing…
Question
Part 4 "Test tools & Automation" It has been decided to improve the efficiency and effectiveness of unit testing by acquiring a number of test tools. Which TWO of the following tools would you select to support unit testing? 1 credit [K2]
Exhibit
Options
- ADynamic analysis
- BReview tool
- CCoverage measurement tool
- DMonitoring
- ETest management
How the community answered
(42 responses)- A93% (39)
- B2% (1)
- D5% (2)
Explanation
Dynamic analysis (A) directly supports unit testing because it analyzes code during execution, detecting runtime errors, memory leaks, and unexpected behavior - exactly what unit tests do when they run code. Coverage measurement (C) is a natural companion to unit testing, showing which lines, branches, or conditions your tests actually exercise, helping you identify untested code paths and improve test completeness.
The distractors fail because they target different activities: Review tools (B) support static testing (inspections, walkthroughs) - no code execution involved. Monitoring (D) operates in live/production environments to track system health, not isolated unit behavior. Test management (E) helps organize and track the overall testing effort across a project, but doesn't directly improve how unit tests are executed or analyzed.
Memory tip: Unit testing = "Run it & Measure it." Dynamic Analysis = Actually running code; Coverage = Counting what got hit. The other three (Review, Monitor, Manage) belong to different phases or levels of testing - not the unit test workbench.
Topics
Community Discussion
No community discussion yet for this question.
