Certified Software Tester - Foundation Level (CSTFL) 온라인 연습
최종 업데이트 시간: 2024년11월13일
당신은 온라인 연습 문제를 통해 GAQM CTFL 시험지식에 대해 자신이 어떻게 알고 있는지 파악한 후 시험 참가 신청 여부를 결정할 수 있다.
시험을 100% 합격하고 시험 준비 시간을 35% 절약하기를 바라며 CTFL 덤프 (최신 실제 시험 문제)를 사용 선택하여 현재 최신 219개의 시험 문제와 답을 포함하십시오.
/ 6
Question No : 1
What should be the MAIN objective during development testing?
정답:
Question No : 2
Which of the following, if observed in reviews and tests, would lead to problems (or conflict) within teams?
정답:
Question No : 3
To test a function, the programmer has to write a _________, which calls the function to be
tested and passes it test data:
정답:
Question No : 4
A tool that supports traceability, recording of incidents or scheduling of tests is called..?
정답:
Question No : 5
Designing the test environment set-up and identifying any required infrastructure and tools are a part of which phase:
정답:
Question No : 6
Reporting Discrepancies as incidents is a part of which phase:
정답:
Question No : 7
Which of the following is a benefit of test independence?
정답:
Question No : 8
Which of the following is correct?
Debugging is:
정답: Explanation:
A Is a brief definition of testing.
B Is retesting.
D Is regression testing.
Question No : 9
Incorrect form of Logic coverage is:
정답:
Question No : 10
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
How many test cases are needed to achieve 100 per cent decision coverage?
정답: Explanation:
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.
Question No : 11
Which of the following is not a type of incremental testing approach?
정답:
Question No : 12
Tests are prioritized so that:
정답:
Question No : 13
Boundary value testing:
정답:
Question No : 14
The difference between re-testing and regression testing is:
정답:
Question No : 15
Topic 13, Mix Questions
What benefits do static analysis tools have over test execution tools?