CTFL 無料問題集「GAQM Certified Software Tester - Foundation Level (CSTFL)」
Consider the following pseudo code:
1 Begin 2 Read Time 3 If Time < 12 Then 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
If the test cases Time = 11 and Time = 15 were input, what level of decision coverage would be achieved?
1 Begin 2 Read Time 3 If Time < 12 Then 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
If the test cases Time = 11 and Time = 15 were input, what level of decision coverage would be achieved?
正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
Which of the following statements are true?
(i)
Defects are likely to be found earlier in the development process by using reviews rather than static analysis.
(ii)
Walkthroughs require code but static analysis does not require code.
(iii) Informal reviews can be performed on code and specifications.
(iv)
Dynamic techniques are generally used before static techniques.
(v)
Dynamic techniques can only be used after code is ready to be executed.
(i)
Defects are likely to be found earlier in the development process by using reviews rather than static analysis.
(ii)
Walkthroughs require code but static analysis does not require code.
(iii) Informal reviews can be performed on code and specifications.
(iv)
Dynamic techniques are generally used before static techniques.
(v)
Dynamic techniques can only be used after code is ready to be executed.
正解:C
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)