일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- App QA
- 테스트케이스
- Test
- istqb 기출문제
- 테스트 외주
- testing
- istqb fl
- ctfl
- 검증
- qa 자격증
- QA자격증
- 외주 테스트
- mobile QA
- 자격증
- istqb dump
- 게임 qa
- 테스트 아웃소싱
- 테스트
- ISTQB
- Polaris Office
- Office test
- 폴라리스오피스
- 테스팅
- 실라버스
- qa 아웃소싱
- 모바일앱 QA
- TestCase
- FL
- QA
- qa테스트
- Today
- Total
목록IT Trend/ISTQB FL (28)
QA Outsourcing & Consulting
Q. Given the following fragment of code, how many tests are required for 100% decision coverage? if width > length then biggest_dimension = width if height > width then biggest_dimension = height end_if else biggest_dimension = length if height > length then biggest_dimension = height end_if end_if A. 3 B. 4 C. 2 D. 1 코드를 보고 Decision Coverage를 맞추는 문제입니다. 코드를 보고 순서도를 그려보면 좀 더 쉽게 맞출 수 있습니다. 물론 좀 더..
Q. The cost of fixing a fault?A) Is not importantB) Increases as we move the product towards live useC) Decreases as we move the product towards live useD) Is more expensive if found in requirements than functional designE) Can never be determined 결점/결함(fault)의 수정 비용에 관한 문제입니다.실라버스 3.1 Static Techniques and the Test Process(정적 기법과 테스트 프로세스)를 보면 답을 찾을 수 있습니다. 리뷰의 이점이 기술되어 있는데 그 이점으로는 결함 조기 발견, 개발..
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. Expected results are?A) only important in system testingB) only used in component testingC) never specified in advanceD) most useful when specified in advanceE) derived from the code 기대 결과에 대한 문제입니다.기대 결과란 무엇인지에 대해서 실라버스 4.1 The Test Development Process에 나와 있습니다. 기대 결과는 결과값, 데이터와 상태의 변화, 테스트의 다른 결과를 포함하며, 미리 정의되어 있지 않은 경우에 잘못된 결과가 Pass로 될 수 있기 때문에 예상 결과는 테스트 실행전에 정의되어 있어야 합니다. A. D Q. Test ma..
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번 계획 활동에 보면 공식 ..