최신 Python Institute PCET PCET-30-01 무료샘플문제:
1. What are benefits of following the test pyramid strategy?
A) Lower maintenance cost
B) Early defect detection
C) Slower testing cycles
D) Reduced code coverage
2. Which of the following are key components of a test case?
A) Test steps
B) Preconditions
C) Resource constraints
D) Expected results
3. Why is software testing essential in modern development practices?
A) It ensures security and performance compliance
B) It accelerates product launch without risk
C) It prevents the need for refactoring
D) It validates that requirements are implemented correctly
4. A testing team inserts assertions in multiple functions to verify that values never drop below zero. They find that certain values do, and the program halts.
What could be the reasons for these assertion failures?
A) Insufficient logging
B) Disabled assertions in production
C) Faulty logic in calculation
D) Incorrect test data
E) Mismatch with business rules
5. Which of the following activities is considered dynamic testing?
A) Style guide analysis
B) Walkthrough
C) Peer review
D) Executing test scripts
질문과 대답:
질문 # 1 정답: A,B | 질문 # 2 정답: B,D | 질문 # 3 정답: A,D | 질문 # 4 정답: C,D,E | 질문 # 5 정답: D |