Tag: testing

Questions Related to testing

Which of the following is not always a pre condition for test execution?

  1. A properly configured test environment

  2. A thoroughly specified test procedure

  3. A process for managing identified defects

  4. A test Oracle


Correct Option: B

AI Explanation

To answer this question, let's go through each option to understand why it is correct or incorrect:

Option A) A properly configured test environment - This option is a pre-condition for test execution. Without a properly configured test environment, the tests may not be able to run successfully.

Option B) A thoroughly specified test procedure - This option is not always a pre-condition for test execution. While having a thoroughly specified test procedure can help in executing tests effectively, it is not always necessary. Some testing approaches, such as exploratory testing, may not require a detailed test procedure.

Option C) A process for managing identified defects - This option is a pre-condition for test execution. Test execution is typically followed by defect management, where identified defects are logged, tracked, and managed.

Option D) A test Oracle - This option is a pre-condition for test execution. A test oracle is a mechanism or criterion used to determine the expected outcome of a test. Without a test oracle, it would be difficult to determine whether the test results are correct or not.

The correct answer is Option B) A thoroughly specified test procedure. This option is not always a pre-condition for test execution as some testing approaches may not require a detailed test procedure.

Which of the following is a dynamic analysis technique related to improving application performance?

  1. Code complexity analysis

  2. Profiling

  3. Network Packet sniffing

  4. spelling and Grammer checking


Correct Option: B

Which of the following is an important principle for use of experienced based test techniques?

  1. Tester skill is a critical factor in assignment of test execution tasks

  2. Tester skills are less imporatant than ensuring 100% tester utilization

  3. Tester should always focus on defect-preventing activities

  4. Tester should be evaluated based on the number of defects they find


Correct Option: A

Which question does the term 'Verification' address?

  1. Have we built the software right?

  2. Have we built the right software?

  3. Have we built the software?

  4. Have we built error free software?


Correct Option: A
  1. Detective

  2. Preventive

  3. Corrective

  4. Protective


Correct Option: B

Quality Assurance Methods are usually considered :

  1. Detective

  2. Preventive

  3. Corrective

  4. Protective


Correct Option: B

AI Explanation

To answer this question, you need to understand the different types of quality assurance methods. Let's go through each option to understand why it is correct or incorrect:

Option A) Detective - This option is incorrect because detective methods are used to identify and analyze defects or issues after they have occurred. It focuses on finding and fixing problems after they have happened, rather than preventing them from happening in the first place.

Option B) Preventive - This option is correct because preventive methods are used to proactively identify and eliminate potential defects or issues before they occur. It focuses on preventing problems from happening in the first place, rather than reacting to them after they have occurred.

Option C) Corrective - This option is incorrect because corrective methods are used to address and fix defects or issues that have already occurred. It focuses on correcting problems that have been identified, rather than preventing them from happening in the first place.

Option D) Protective - This option is incorrect because protective methods are not commonly associated with quality assurance. The term "protective" does not align with the typical goals and practices of quality assurance.

The correct answer is B) Preventive. This option is correct because preventive methods are used in quality assurance to proactively identify and eliminate potential defects or issues before they occur.

Quality Control activities are usually considered:

  1. Preventive

  2. Protective

  3. Corrective

  4. Detective


Correct Option: C

A program validates a numeric field as follows: - Values less than 10 are rejected - Values between 10 and 21 are accepted - Values greater than or equal to 22 are rejected Which of the following input value sets covers all of the equivalence partitions?

  1. 10,11,21

  2. 3,20,21

  3. 3,10,22

  4. 10,21,22


Correct Option: C