Correct Answer: a) Quality Assurance Quality assurance is an activity that establishes and evaluates the processes that produce products Quality assurance would measure processes to identify weaknesses and then correct them to continually improve the process: Eg Code review b) Quality Control Quality control is a process in which the product's quality is compared with standards and corrective actions taken if required Quality control activities focus on identifying defects in the actual products produced Eg Testing c) Test Case A test case is a unit level document describing the inputs, steps of execution and the expected result of each test condition for every requirement from the BRD Testers determine whether the application is working correctly or not based on the test case that is being executed A test case is marked as "Pass" if the application works as expected and is marked as "Fail" if otherwise Test cases also aide in generating test status metrics d) Test Condition Test condition is the condition on which the test execution evaluates to pass or fail Eg of a test condition: Set Password field should accept a mix of Alphanumeric and Special characters on mandatory basis and throw error message otherwise e) Test Script Test script is the set of instructions performed on the application to verify its functions f) Test Data Test data is the input data used to test a particular functionality Eg: Username and password to test a login screen g) Test Bed Test bed is the environment on which the testing is done and includes the software and hardware set up that is required for testing the application
5. What is risk analysis? What does it have to do with Severity and Priority?
Correct Answer: Risk analysis is a method to determine how much risk is involved in something In testing, it can be used to determine when to test something or whether to test something at all Items with higher risk values should be tested early and often Items with lower risk value can be tested later, or not at all It can also be used with defects Severity tells us how bad a defect is: "how much damage can it cause?" Priority tells us how soon it is desired to fix the defect: "should we fix this and if so, by when?" Defects with High Severity and Priority are tested first
6. What is the role of QA in a project development?
Correct Answer: The word assurance means ?guarantee? So the Quality Assurance Group?s role is to guarantee that the product is of high quality They examine the overall s/w development process and their responsibility is to create and enforce standards and methods to improve it with the goal of preventing bugs from ever occurring
7. Benefits of Software Quality Assurance to the organization
Correct Answer: The main task of Software Quality Assurance Group is to examine the overall s/w development process and to create and enforce standards and methods to improve it with the goal of preventing bugs from ever occurring With this definition, it is imperative that the QA helps an organization in continuous performance improvement and strive for perfection
8. What are the key challenges of software testing?
Correct Answer: Key Challenges of s/w testing: 1 Testing considered late in project 2 Requirements not testable 3 Integration is done after all components have been developed: This might result into full testing not being covered 4 Complete testing is not possible
9. What are the roles of glass-box and black-box testing tools?
Correct Answer: Glass Box (or white box) testing is the process of giving i/p to the system and checking how the system processes i/p to generate o/p Black Box testing is the process of giving i/p to the system and checking if the system is giving correct o/p without bothering how the o/p is generated As we can see from the definitions, the role of black box testing is to ensure that the o/p generated is correct And role of white box testing is to ensure that methods used to generate the o/p are correct
10. What methodologies have you used to develop test cases?
Correct Answer: I have used following 4 types of Methodologies: 1 Boundary value analysis 2 Equivalence partitioning 3 Error guessing 4 Cause effect graphing