Quality Assurance

  Home  Quality Assurance  Quality Assurance


“Inspector Quality Assurance/QC based Frequently Asked Questions by expert members with experience as Inspector QA/QC. These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts”



113 Quality Assurance Questions And Answers

41⟩ Explain QA, QC and Software Testing?

☛ Quality Assurance (QA) QA refers to the planned and systematic way of monitoring the quality of process which is followed to produce a quality product. QA tracks the outcomes and adjusts the process to meet the expectation.

☛ Quality Control (QC) Concern with the quality of the product. QC finds the defects and suggests improvements. The process set by QA is implemented by QC. The QC is the responsibility of the tester.

☛ Software Testing is the process of ensuring that product which is developed by the developer meets the user requirement. The motive to perform testing is to find the bugs and make sure that they get fixed.

 194 views

42⟩ What are stress testing, load testing and volume testing?

☛ Load Testing: Testing an application under heavy but expected load is known as Load Testing. Here, the load refers to the large volume of users, messages, requests, data, etc.

☛ Stress Testing: When the load placed on the system is raised or accelerated beyond the normal range then it is known as Stress Testing.

☛ Volume Testing: The process of checking the system, whether the system can handle the required amounts of data, user requests, etc. is known as Volume Testing.

 194 views

44⟩ Tell me what should your QA documents should include?

QA testing document should include

☛ List the number of defects detected as per severity level

☛ Explain each requirement or business function in detail

☛ Inspection reports

☛ Configurations

☛ Test plans and test cases

☛ Bug reports

☛ User manuals

☛ Prepare separate reports for managers and users

 216 views

47⟩ What is a Project Procedure (PP)?

PP is a procedure that presents the systematic controls to be implemented and identifies the responsibilities and authorities such as to ensure that the specified requirements are followed .

 186 views

48⟩ Tell me the steps for Bug Cycle?

☛ Once the bug is identified by the tester, it is assigned to the development manager in open status

☛ If the bug is a valid defect the development team will fix it and if it is not a valid defect, the defect will be ignored and marked as rejected

☛ The next step will be to check whether it is in scope, if it is happen so that, the bug is not the part of the current release then the defects are postponed

☛ If the defect or bug is raised earlier then the tester will assigned a DUPLICATE status

☛ When bug is assigned to developer to fix, it will be given a IN-PROGRESS status

☛ Once the defect is repaired, the status will changed to FIXED at the end the tester will give CLOSED status if it passes the final test.

 212 views

51⟩ Why are you the best candidate for the job?

XX has a rep for quality, I want quality things in my life. My past positions has taught me the little things matter in very part of your work XX would want someone like me to watch over what they sell to others to ensure quality is not lost.

 158 views

56⟩ Explain what are QA/QC's ITP's and QCP? Give a brief?

ITP: This is procedure informs about the kinds of quality check (surveillance inspection witness or hold points) means quality of works is being done in proper sequences.

QCP: This is procedure addresses the activities and requirement in details.

 190 views

57⟩ Tell me what are test driver and test stub and why it is required?

☛ 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

☛ It is required when we need to test the interface between modules X and Y and we have developed only module X. So we cannot just test module X but if there is any dummy module we can use that dummy module to test module X

☛ Now module B cannot receive or send data from module A directly, so in these case we have to transmit data from one module to another module by some external features. This external feature is referred as Driver

 191 views