Quality Engineer

  Home  Quality Assurance  Quality Engineer


“Certified Quality Engineer related Frequently Asked Questions in various Quality Engineer based job Interviews by interviewer. The set of questions here ensures that you offer a perfect answer posed to you. So get preparation for your new job hunting”



80 Quality Engineer Questions And Answers

23⟩ Define severity of bug?

Severity is to concern with functionality of application. It deals with the impact of the bug on the application.

 175 views

24⟩ Define Build in Quality Engineer?

Build is a number given to install-able software that is given to testing team for testing by the development team. Build number assigned are incremental and sequential.

 176 views

25⟩ Define Release in Quality Engineering?

Release is a number given to install-able 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.

 150 views

26⟩ Describe the key challenges of software testing in Quality Engineering?

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

) Lack of resources, tools and training

 148 views

28⟩ What is the reason behind to choosing the SDLC model for development of software?

★ 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.

 179 views

29⟩ Define Bug Leakage in Quality Engineering?

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.

 160 views

30⟩ Define Bug release in Quality Engineering?

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.

 161 views

31⟩ Define 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.

 167 views

32⟩ Why Regression Testing is important in Quality Engineering?

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.

 170 views

33⟩ Define Beta testing in Quality Engineering?

Beta testing 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.

 183 views

34⟩ Define Alpha testing in Quality Engineering?

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.

 164 views

35⟩ Define Specification-driven testing in Quality Engineering?

Specification-driven testing means to test the functionality of software according to the user requirements. In this, tester inputs multiple data and monitors the outputs from, the test object. In this testing tester evaluate the showstopper bugs which break the major functionality of the application. This type of testing requires test plan and test.

 161 views

36⟩ Define Exploratory testing in Quality Engineering?

Exploratory testing means testing an application without a test plan and test script. In exploring testing test explore the application on the basis on his knowledge. The tester has no knowledge about the application previously. He explores the application like an end user and try to use it. While using the application his main motive is to find the bugs which are in the application.

 156 views

37⟩ Tell me how you decide that you have tested enough?

★ When there is no time and budget.

★ When maximum number of test cases are executed.

★ All the Requirements are mapped that is RTM is filled completely.

★ When Test coverage is more than 80%.

★ When bug rate falls below certain level.

 198 views

38⟩ What is the purpose of testing?

★ Quality assurance, Verification and Validation,

★ To find the bugs before the product is released to customer.

★ To improve the quality of the product

★ The Purpose of Testing is to evaluate that the product is according to requirements

 182 views

39⟩ Define test driver and test stub?

★ 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.

 174 views

40⟩ Why test stub and test driver needed in Quality Engineering?

★ 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.

 192 views