⟩ Consider these sets of test values 1. RED + SPEED + WHEELS 2. RED + SPEED + not WHEELS 3. RED + not SPEED + WHEELS 4. RED + not SPEED + not WHEELS 5. not RED + SPEED + WHEELS 6. not RED + SPEED + not WHEELS 7. not RED + not SPEED + WHEELS 8. not RED + not SPEED + not WHEELS Assume the logic in the code is as follows If ((RED or SPEED) and WHEELS) then Take the photo Else Do not take the photo Given this information, which sets of values provides the minimum tests to achieve 100% modified condition/decision coverage? A. 3, 4, 5, 7 B. 1, 3, 8 C. 2, 8 D. 1, 5, 7, 8
A. 3, 4, 5, 7