Valid CTFL_Syll2018 Dumps shared by ExamDiscuss.com for Helping Passing CTFL_Syll2018 Exam! ExamDiscuss.com now offer the newest CTFL_Syll2018 exam dumps, the ExamDiscuss.com CTFL_Syll2018 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com CTFL_Syll2018 dumps with Test Engine here:
Consider the following Pseudo code: How many minimum lea cases are required to cover 100% Statement coverage and Decision coverage?
Correct Answer: B
To achieve 100% statement coverage, we need to execute every statement in the code at least once. To achieve 100% decision coverage, we need to execute every possible outcome of every decision in the code at least once. In this case, we can use the following test cases to cover both statement and decision coverage: * A = true, B = true * A = false, B = false These two test cases will cover all the statements and all the possible outcomes of the decisions in the code. Therefore, the minimum number of test cases required to achieve both statement and decision coverage is two. References: Certified Tester Foundation Level Syllabus, Section 4.3.1