Free CTFL Exam Dumps

Question 21

- (Exam Topic 12)
Given is the following defect removal chart reported at the end of system testing - showing total defects detected and closed defects (fixed and successfully retested). A number of open defects are classified as critical. All tests have been executed.
CTFL dumps exhibit
Based on the chart above, what is the most appropriate next test phase? 1 credit

Correct Answer:D

Question 22

- (Exam Topic 13)
During which test activity could faults be found most cost effectively?

Correct Answer:C

Question 23

- (Exam Topic 13)
Which of the following are static techniques?

Correct Answer:A
Options (B), (C) and (D) are all dynamic test techniques.

Question 24

- (Exam Topic 8)
Comparing TMMi and TPI, which is not a valid reason for choosing either TPI or TMMi? 2 credits

Correct Answer:D

Question 25

- (Exam Topic 13) Consider the following pseudo code:
1 Begin
2 Read Time
3 If Time < 12>4 Print(Time, "am")
5 Endif
6 If Time > 12 Then
7 Print(Time 12, "pm")
8 Endif
9 If Time = 12 Then
10 Print (Time, "noon")
11 Endif
12 End
How many test cases are needed to achieve 100 per cent decision coverage?

Correct Answer:C
The three decisions are in sequence and the conditions are all mutually exclusive (if any one is true the others must be false). Hence a test case that makes the first decision true will make the second and third decisions false and so on.
So test case 1 (say Time = 6) would exercise the path True, False, False, test case 2 (say Time = 15) would exercise the path False, True, False. Test case 3 would have to be Time = 12. This combination achieves 100 per cent decision coverage because each decision has been exercised through its true and its false outcomes.