일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 테스트 아웃소싱
- Polaris Office
- Test
- 테스팅
- istqb 기출문제
- mobile QA
- qa테스트
- qa 아웃소싱
- QA자격증
- 게임 qa
- QA
- ISTQB
- istqb fl
- 테스트
- 폴라리스오피스
- 테스트케이스
- 자격증
- 검증
- App QA
- FL
- testing
- 실라버스
- Office test
- TestCase
- istqb dump
- qa 자격증
- ctfl
- 외주 테스트
- 테스트 외주
- 모바일앱 QA
- Today
- Total
목록ISTQB (29)
QA Outsourcing & Consulting
Q. Given the following: Switch PC onStart “outlook”IF outlook appears THENSend an emailClose outlook A) 1 test for statement coverage, 1 for branch coverageB) 1 test for statement coverage, 2 for branch coverageC) 1 test for statement coverage. 3 for branch coverageD) 2 tests for statement coverage, 2 for branch coverageE) 2 tests for statement coverage, 3 for branch coverage 매우 간단한 코드로 따로 흐름도를 ..
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. Regression testing should be performed?1. every week2. after the software has changed3. as often as possible4. when the environment has changed5. when the project manager says A. 1,2 are true, 3~5 are falseB. 2~4 are true, 1,5 are falseC. 2,4 are true, 1,3,5 are falseD. 2 is true, 1,3,4,5 are falseE. all of the above are true Regression testing에 대해 아는지에 대한 문제이면서도 사실 Regression testing 특징에 대해서..