일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 검증
- qa 아웃소싱
- mobile QA
- 테스트
- istqb fl
- 테스트케이스
- Test
- 테스팅
- istqb dump
- 게임 qa
- App QA
- QA자격증
- istqb 기출문제
- 모바일앱 QA
- QA
- FL
- 자격증
- ctfl
- qa테스트
- qa 자격증
- 실라버스
- TestCase
- testing
- 테스트 아웃소싱
- Polaris Office
- Office test
- 테스트 외주
- 폴라리스오피스
- 외주 테스트
- ISTQB
- Today
- Total
목록실라버스 (15)
QA Outsourcing & Consulting
Q. Unreachable code would best be found using?A) code reviewsB) code inspectionsC) a coverage toolD) a test management toolE) a static analysis tool 접근 불가능한(사용하지 않는) 코드를 찾는 방법에 대한 문제입니다.실라버스 3.3 Static Anlaysis by Tools에 보면 정적 분석에 나오며, 정적 분석 툴을 이용하여 발견할 수 있는 것들에 대해서 설명이 나옵니다.그 중에 하나가 Unreachable(dead) code입니다.정적 분석의 목적은 코드단에서 실제로는 SW를 실행하지 않고 도구를 이용하여 동적 테스팅으로 찾기 힘든 결함들을 찾는 것입니다. 따라서 주로 개발자들에 의해..
Q. Which of the following statements is NOT true?A) inspection is the most formal review processB) inspections should be led by a trained leaderC) managers can perform inspections on management documentsD) inspection is appropriate even when there are no written documentsE) inspection compares documents with predecessor (source) documents 리뷰 프로세스에 대한 문제입니다.실라버스 3.2.1의 공식 리뷰 활동 중 1번 계획 활동에 보면 공식 ..
Q. Beta testing is:A) Performed by customers at their own siteB) Performed by customers at their software developer’s siteC) Performed by an independent test teamD) Useful to test bespoke softwareE) Performed as early as possible in the lifecycle 베타 테스트가 무엇인지에 대한 문제입니다.이와 관련하여 정답을 찾을 수 있는 곳은 실라버스 2.2.4 내에 알파와 베타 테스트에 있습니다.Beta testing, or field-testing, is performed by customers or potential cus..
Q. What is the purpose of test completion criteria in a test plan?A) to know when a specific test has finished its executionB) to ensure that the test case specification is completeC) to set the criteria used in generating test inputsD) to know when test planning is completeE) to plan when to stop testing 실라버스 1.4.4를 보면 테스트 완료 조건에 대해 나오는데 그곳에 우선 살짝 내용이 나옵니다.테스트 완료 조건 평가 시 테스트 계획에 명시된 완료 조건을 만족하는..
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..