일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- qa테스트
- FL
- qa 자격증
- TestCase
- 테스트
- 테스트 아웃소싱
- testing
- QA자격증
- 실라버스
- 외주 테스트
- 테스트 외주
- Test
- ctfl
- QA
- App QA
- 검증
- 폴라리스오피스
- mobile QA
- ISTQB
- 모바일앱 QA
- istqb fl
- Office test
- 테스팅
- 게임 qa
- 테스트케이스
- qa 아웃소싱
- istqb 기출문제
- 자격증
- istqb dump
- Polaris Office
- Today
- Total
목록ISTQB 자격증 (4)
QA Outsourcing & Consulting
Q. Calculate Path Coverage. Read PRead QIF P+Q > 100 ThenPrint "Large"EndIfIF P > 50 ThenPrint "P Large"EndIf 이전에 이어 이번에는 Path Coverage에 대한 문제입니다. 동일하게 숫자는 코드, 알파벳은 경로가 됩니다.Path Coverage를 묻는 문제가 나오면 가능한 경로 개수를 모두 적으면 됩니다.위, 아래에 분기가 2개 있으니, 우-우, 우-좌, 좌-좌, 좌-우 경로로 가는1A-2B-E-4F1A-2B-E-4G-5H1A-2C-3D-E-4G-5H1A-2C-3D-E-4F총 4개 경로가 나옵니다. 따라서 Path Coverage는 4입니다. Q. Calculate Branch coverage. Branch cove..
Q. Given the following code, which is true about the minimum number of test cases required for full statement and branch coverage? Read PRead QIF P+Q > 100 THENPrint “Large”ENDIFIf P > 50 THENPrint “P Large”ENDIF A) 1 test for statement coverage, 3 for branch coverageB) 1 test for statement coverage, 2 for branch coverageC) 1 test for statement coverage, 1 for branch coverageD) 2 tests for state..
Q. Which of the following is the main purpose of the integration strategy for integration testing in the small?A) to ensure that all of the small modules are tested adequatelyB) to ensure that the system interfaces to other systems and networksC) to specify which modules to combine when and how many at onceD) to ensure that the integration testing can be performed by a small teamE) to specify ho..
Q. Given the following state transition table Which of the test cases below will cover the following series of state transitions? S1>S0>S1>S2>S0 A. D, A, B, C.B. A, B, C, D.C. D, A, B.D. A, B, C. 상태전이 테이블 문제입니다.S1 > S0 > S1 > S2 > S0로 상태 전이를 하는데 있어 그 경로가 어떻게 되는가 하는 문제인데, 매우 간단한 문제로 S1 > S0으로 갈 때에는 D경로, S0 > S1으로 갈 때에는 A 경로, S1 > S2로 갈 때에는 B경로, 마지막으로 S2 > S0으로 갈 때에는 C경로이므로 A가 정답입니다. A : A Q. From..