info@kbcambodia.com

KB Cambodia

Which type of test design techniques does the following statement best describe? A procedure to derive test cases based on the specification?

Which type of test design techniques does the following statement best describe? A procedure to derive test cases based on the specification? A. Black Box Techniques. B. White Box Techniques. C. Glass Box Techniques. D. Experience-based Techniques. Answer: Option A

Which activity in the fundamental test process creates test suites for efficient test execution?

Which activity in the fundamental test process creates test suites for efficient test execution? A. Test Implementation and Execution. B. Test Planning and Control. C. Test Analysis and Design. D. Test Closure Activities. Answer: Option A

Which of the following is a benefit of test independence?

Which of the following is a benefit of test independence? A. It does not require familiarity with the code. B. It is cheaper than using developers to test their own code. C. It avoids author bias in defining effective tests.…

Which of the following is correct?

Which of the following is correct? A. Impact analysis assesses the effect on the system of a defect found in regression testing. B. Impact analysis assesses the effect of a new person joining the regression test team. C. Impact analysis…

Which of the following correctly describes component testing?

Which of the following correctly describes component testing? a) Functional testing of the component in isolation from the rest of the system. b) Structure-based testing of the code without recording incidents. c) Automated tests that are run using the business…

Which of the following would usually NOT be found in an incident report?

Which of the following would usually NOT be found in an incident report? A. The name and organisational position of the person raising the problem. B. Version of the software under test. C. Suggestions as to how to fix the…

Which of the following are MOST likely to lead to successful reviews?

Which of the following are MOST likely to lead to successful reviews? a) Defects found are welcome and expressed objectively. b) People issues are ignored. c) Checklists are used to improve risk identification. d) Training in review techniques is provided.…

What is the key difference between preventive and reactive approaches to testing?

What is the key difference between preventive and reactive approaches to testing? A. Preventive tests and reactive tests are designed as early as possible. B. Preventive tests are designed early; reactive tests are designed after the software has been produced.…

Which of the following is NOT a reasonable test objective:

Which of the following is NOT a reasonable test objective: A. to find defects in the software B. to prove that the software is defect-free C. to give confidence in the software D. to find performance problems Answer: Option B

Given the following fragment of code, how many tests are required for 100% decision coverage?

Given the following fragment of code, how many tests are required for 100% decision coverage? discount = 0 order_quantity = 0 read order_quantity if order_quantity >= 20 then discount = 0.05 if order_quantity >= 100 then discount = 0.1 end_if…