QA Interview Flashcards

1
Q

What are verification and validation and difference between these two?

A

Verification: process of evaluating steps which is followed up to development phase to determine whether they meet the specified requirements for that stage.

Validation: process of evaluating product during or at the end of the development process to determine whether product meets specified requirements.

Difference between Verification and Validation:

- Verification is Static Testing where as Validations is Dynamic Testing.
- Verification takes place before validation.    - Verification evaluates plans, documents, requirements and specifications, where as Validation evaluates product.
- Verification inputs are checklist, issues list, walkthroughs and inspection, where as in Validation testing of actual product.
- Verification output is set of documents, plans, specifications and requirement documents where as in Validation actual product is output
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is difference between Smoke testing and Sanity Testing?

A

Smoke testing is the initial testing process exercised to check whether the software under test is ready/stable for further testing.
Sanity tests helps to avoid wasting time and cost involved in testing if the build is failed. Tester should reject the build upon build failure.
• Sanity testing follows narrow and deep approach with detailed testing of some limited features.
• Sanity testing is typically non-scripted.
• Sanity testing is a sub-set of regression testing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is destructive testing, and what are its benefits?

A

Destructive testing includes methods where material is broken down to evaluate the mechanical properties, such as strength, toughness and hardness.

For example, finding the quality of a weld is good enough to withstand extreme pressure and also to verify the properties of a material.

Benefits of Destructive Testing (DT)

- Verifies properties of a material
- Determines quality of welds
- Helps you to reduce failures, accidents and costs
- Ensures compliance with regulations
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is Testware?

A

The testware is:

The subset of software which helps in performing the testing of application.
Testware are required to plan, design, and execute tests. It contains documents, scripts, inputs, expected results, set-up and additional software or utilities used in testing.
Testware is term given to combination of all utilities and application software that required for testing a software package.

Testware is special because it has:

  1. Different purpose
  2. Different metrics for quality and
  3. Different users
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is difference between Retesting and Regression testing?

A

The difference between Retesting and Regression testing are below:

- Retesting is done to verify defects fixes where as regression is perform to check if the defect fix have not impacted other functionality that was working fine before doing changes in the code.
- Retesting is planned testing based on the defect fixes listed where as regression is not be always specific to any defect fix. Also regression can be executed for some modules or all modules.
- Retesting concern with executing those test cases that are failed earlier whereas regression concern with executing test cases that was passed in earlier builds.
- Retesting has higher priority over regression, but in some case retesting and regression testing are carried out in parallel.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Explain bug life cycle

A

Bug Life Cycle:

- When a tester finds a bug .The bug is assigned with NEW or OPEN status.
- The bug is assigned to development project manager who will analyze the bug .He will check whether it is a valid defect. If it is not valid bug is rejected, now status is REJECTED.    - If not, next the defect is checked whether it is in scope. When bug is not part of the current release .Such defects are POSTPONED
- Now, Tester checks whether similar defect was raised earlier. If yes defect is assigned a status DUPLICATE
- When bug is assigned to developer. During this stage bug is assigned a status IN-PROGRESS
- Once code is fixed. Defect is assigned with FIXED status.
- Next the tester will re-test the code. In case the test case passes the defect is CLOSED
- If the test case fails again the bug is RE-OPENED and assigned to the developer. That’s all to Bug Life Cycle.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is severity and priority of bug? Give some example.

A

Priority: concern with application from the business point of view.
It answers: How quickly we need to fix the bug? Or How soon the bug should get fixed?
Severity: concern with functionality of application. It deals with the impact of the bug on the application.
How much the bug is affecting the functionality of the application?

Ex.
-High Priority and Low Severity:
Company logo is not properly displayed on their website.
-High Priority and High Severity:
Suppose you are doing online shopping and filled payment information, but after submitting the form, you get a message like “Order has been cancelled.”
-Low Priority and High Severity:
If we have a typical scenario in which the application get crashed, but that scenario exists rarely.
-Low Priority and Low Severity:
There is a mistake like “You have registered success” instead of successfully, success is written

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the role of QA in a project development?

A

QA stands for QUALITY ASSURANCE. QA team assures the quality by monitor the whole development process. QA tracks the outcomes and adjusting process to meet the expectation.

The role of Quality Assurance is discussed below:

- QA team is responsible for monitoring the process to be carried out for development.
- Responsibilities of QA team are planning testing execution process.
- QA Lead creates the time tables and agrees on a Quality Assurance plan for the product.    - QA team communicated QA process to the team members.
- QA team ensures traceability of test cases to requirements.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the difference between build and release?

A

BUILD: is a number given to installable software that is given to testing team for testing by the development team. Build number assigned are incremental and sequential.

RELEASE: is a number given to installable software that is handed over to customer by the developer or tester.
The information of build, release and version are displayed in software help page. Using this build and release customer can let the customer team know which release version build that are using.

eg “9.4.123.2” (Release Number.Version Number.Build Number.Patch Number)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the key challenges of software testing?

A

Following are some challenges of software testing

  1. Application should be stable enough to be tested.
  2. Testing always under time constraint
  3. Understanding requirements, Domain knowledge and business user perspective understanding
  4. Which tests to execute first?
  5. Testing the Complete Application
  6. Regression testing
  7. Lack of skilled testers.
  8. Changing requirements
  9. Lack of resources, tools and training
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Why you choose automated testing over manual testing?

A

The reasons for choosing automation testing over manual testing are following:

  1. Frequency of use of test case
  2. Time Comparison (automated script run much faster than manual execution.)
  3. Reusability of Automation Script
  4. Adaptability of test case for automation.
  5. Exploitation of automation tool.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the basis for choosing the SDLC model for development of software?

A

The choice of SDLC depends on the various factors, how stable are the requirements:

- When the requirements are very clearly know, documented and not subject to change then we can follow the waterfall model.
- Most of the companies follow the V mode for the development because this model includes both verification and validation activities and testing is involved in earlier phase.
- Iterative model can be used to build application where requirement changes after a period of times or application features or added on with smaller release. When the client is ready for the delivery of the product in parts or phases.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Explain bug leakage and bug release

A

Bug Leakage: When customer or end user discovered a bug which can be detected by the testing team. Or when a bug is detected which can be detected in previous build then this is called as Bug Leakage.

Bug release: is when a build is handed to testing team with knowing that defect is present in the release. The priority and severity of bug is low. It is done when customer want the application on the time. Customer can tolerate the bug in the released then the delay in getting the application and the cost involved in removing that bug. These bugs are mentioned in the Release Notes handed to client for the future improvement chances.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is regression testing?

A

Regression Testing: When changes in the code of the software are made to fix the previous bug. Then testing needs to be perform to ensure that it will not generate a new bug in the application and it works as specified and that it has not negatively impacted any functionality that it offered previously. Regression Testing is important because of following reason:

  • That the application works even after the alteration in the code were made.
    - The original functionality continues to work as specified even after doing changes in the software application.
    - The alteration to the software application has not introduced any new bugs.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is data driven testing?

A

Data Driven is an automation testing part in which test input or output values, these values are read from data files. It is performed when the values are changing by the time. The different data files may include data pools, csv files, Excel files. The data is then loaded into variables in recorded or manually coded scripts. For data driven testing we use Parameterzing and Regular expression Technique.

Ex: To evaluate login functionality, we use different user name and password combinations, variables are used to access different username and password. The list of username and password are stored in a data table or excel sheet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is alpha and beta testing?

A

Alpha testing: is performed by the IN-House developers. After alpha testing the software is handed over to software QA team, for additional testing in an environment that is similar to the client environment.

Beta testing: It is performed by end user. So that they can make sure that the product is bug free or working as per the requirement. IN-house developers and software QA team perform alpha testing. The public, a few select prospective customers or the general public performs beta testing.

17
Q

What are test driver and test stub and why we need them?

A
  • The Stub is called from the software component to be tested. It is used in top down approach.
    • The driver calls a component to be tested. It is used in bottom up approach.
    • Both test stub and test driver are dummy software components.

We need test stub and test driver because of following reason:

  • Suppose we want to test the interface between modules A and B and we have developed only module A. So we cannot test module A but if a dummy module is prepare, using that we can test module A.
    - Now module B cannot send or receive data from module A directly so, in these cases we have to transfer data from one module to another module by some external features. This external feature used is called Driver.
18
Q

What is Monkey testing?

A

Monkey testing is a type of Black Box Testing used mostly at the Unit Level. In this tester enter the data in any format and check the software is not crashing. In this testing we use Smart monkey and Dumb monkey.

  • Smart monkeys are used for load and stress testing, they will help in finding the bugs. They are very expensive to develop.
    - Dumb monkey, they are important for basic testing. They help in finding those bugs which are having high severity. Dumb monkey are less expensive as compare to Smart monkeys.

Example: In phone number filed Symbols are entered

19
Q

What is Bug Triage?

A

Bug triage is a process to:

- Ensure bug report completeness.
- Analyze and assign bug to proper component.
- Assign bug to proper bug owner.
- Set appropriate bug priority.
- Adjust bug severity properly
20
Q

What is Traceability Matrix?

A

Traceability Matrix is a method used to validate the compliance of product with requirements for that product. The requirement is written in a row of the matrix and the columns of the matrix. Now they are used to identify how and where each requirement has been addressed.

It is in the form of table that correlates two base lined documents that require a many-to-many relationship. It is used with high level requirement and detailed requirement of the software product to the matching parts of high level design, detailed design, test plan, and test cases. The relationship to the source documents is required for both backward traceability and forward traceability