Valid CTAL-TTA Dumps shared by ExamDiscuss.com for Helping Passing CTAL-TTA Exam! ExamDiscuss.com now offer the newest CTAL-TTA exam dumps, the ExamDiscuss.com CTAL-TTA exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com CTAL-TTA dumps with Test Engine here:
Given the following code: If x > y and z = 3 statement! elself z = 4 statement2 endif; What is the minimum number of tests needed to achieve 100% statement coverage?
Correct Answer: B
To achieve 100% statement coverage, you need to ensure every executable statement in the code is executed at least once during testing. Given the code: If x > y and z = 3 statement1 elseif z = 4 statement2 endif; Two tests are required: * Test 1: Set x > y and z = 3 to execute statement1. * Test 2: Set z = 4 (irrespective of the condition x > y) to execute statement2. With these two tests, both conditions that lead to the execution of statement1 and statement2 are covered.