info@kbcambodia.com

Category: Software Testing

Before conducting regression testing, it is recommended that _______________ should be done.

Before conducting regression testing, it is recommended that _______________ should be done. A. Business Analysis B. Static Analysis C. Impact Analysis D. Risk Analysis Answer: Option C

What should be the MAIN objective during unit testing?

What should be the MAIN objective during unit testing? A. To identify as many failures as possible so that defects in the software are identified and fixed B. To confirm that the system works as expected and that requirements have…

Which two of the following are attributes of structural testing?

Which two of the following are attributes of structural testing? a. It is based on testing features described in a functional specification. b. Itcanincludestatementanddecisioncoveragetesting. c. It can be carried out at all levels of testing. d. Italwaysincludesthedebuggingactivity. A. a and…

Which one of the following methods for test estimation rely on information captured from previous projects?

Which one of the following methods for test estimation rely on information captured from previous projects? A. Test point-based B. Expert-based C. Metrics-based D. Development effort-based Answer: Option C

Which of the following best describes the purpose of non-functional testing?

Which of the following best describes the purpose of non-functional testing? A. To measure characteristics of a system which give an indication of how the system performs its functions B. To ensure that a system complies with the quality standards…

What is the purpose of configuration management in testing?

What is the purpose of configuration management in testing? a. To choose and implement a suitable configuration management tool. b. To identify unique items of testware and their related developed software. c. To provide traceability between items of testware and…

What does a test execution tool enable?

What does a test execution tool enable? A. Tests to be executed automatically, or semi automatically B. Tests to be written without human intervention C. Preparation of test data automatically D. Manage test assets such as test conditions and test…

Which of the following statements describe why exploratory testing is a useful test design technique?

Which of the following statements describe why exploratory testing is a useful test design technique? a. It can help derive test cases based on the internal structure of systems. b. Itisusefulwhentherearelimitedspecificationdocumentsavailable. c. It is useful when there testing is constrained…

Which stage in the Fundamental Test Process creates test suites for efficient test execution?

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

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

Given the following fragment of code, how many tests are required for 100% statement coverage? If width > length then biggest_dimension = width If height > width then biggest_dimension = height Endif Else biggest_dimension = length If height > length…