S/W Quality Assurance Certification Interview Questions And Answers
Download S/W Quality Assurance Interview Questions and Answers PDF
Prepare comprehensively for your S/W Quality Assurance interview with our extensive list of 35 questions. These questions will test your expertise and readiness for any S/W Quality Assurance interview scenario. Ideal for candidates of all levels, this collection is a must-have for your study plan. Secure the free PDF to access all 35 questions and guarantee your preparation for your S/W Quality Assurance interview. This guide is crucial for enhancing your readiness and self-assurance.
35 S/W Quality Assurance Questions and Answers:
S/W Quality Assurance Job Interview Questions Table of Contents:
1 :: Explain Software testing activities should start
a. as soon as the code is written
b. during the design stage
c. when the requirements have been formally documented
d. as soon as possible in the development life cycle
d. as soon as possible in the development life cycle
Read More2 :: What is An incident logging system
a only records defects
b is of limited value
c is a valuable source of project information during testing if it contains all incidents
d. should be used only by the test team.
c is a valuable source of project information during testing if it contains all incidents
Read More3 :: What is A test design technique is
a. a process for selecting test cases
b. a process for determining expected outputs
c. a way to measure the quality of software
d. a way to measure in a test plan what has to be done
a. a process for selecting test cases
Read More4 :: Faults found by users are due to:
a. Poor quality software
b. Poor software and poor testing
c. bad luck
d. insufficient time for testing
b. Poor software and poor testing
Read More5 :: Explain Which of the following is true?
a. Component testing should be black box, system testing should be white box.
b. if u find a lot of bugs in testing, you should not be very confident about the quality of software
c. the fewer bugs you find,the better your testing was
d. the more tests you run, the more bugs you will find.
b. if u find a lot of bugs in testing, you should not be very confident about the quality of software
Read More6 :: In which order should tests be run?
a. the most important tests first
b. the most difficult tests first(to allow maximum time for fixing)
c. the easiest tests first(to give initial confidence)
d. the order they are thought of
a. the most important tests first
Read More7 :: Explain Which of the following is a static test?
a. code inspection
b. coverage analysis
c. usability assessment
d. installation test
a. code inspection
Read More8 :: Suppose 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 values cover all of the equivalence partitions?
a. 10,11,21
b. 3,20,21
c. 3,10,22
d. 10,21,22
c. 3,10,22
Read More9 :: Suppose IF YOU HAVE BEEN GIVEN THE RESPONSIBILITY TO ELICIT REQUIREMENTS FROM A CUSTOMER WHO TELL YOU HE IS TOO BUSY TO MEET WITH YOU. WHAT SHOULD YOU DO?
Create a questionaire and try to get as much information from the customer as possible.But be sure to make the questionarie more objective rather than subjective.
based on this questionaire have another set of questions formulated in continuation to answers provided to the first questioanire, this way you can make your understanding more concrete on the requirments and get what you are looking for in a few iterations of requestioning.
Read Morebased on this questionaire have another set of questions formulated in continuation to answers provided to the first questioanire, this way you can make your understanding more concrete on the requirments and get what you are looking for in a few iterations of requestioning.
10 :: Suppose A program with high cyclometic complexity is almost likely to be:
a. Large
b. Small
c. Difficult to write
d. Difficult to test
d. Difficult to test
Read More11 :: Increasing the quality of the software, by better development methods, will affect the time needed for testing (the test phases) by:
a. reducing test time
b. no change
c. increasing test time
d. cant say
a. reducing test time
Read More12 :: Using the same code example as question 17,how many tests are required to achieve 100% branch/decision coverage?
a. 1
b. 2
c. 3
d. 4
c. 3
Read More13 :: Testware(test cases, test dataset)
a. needs configuration management just like requirements, design and code
b. should be newly constructed for each new version of the software
c. is needed only until the software is released into production or use
d. does not need to be documented and commented, as it does not form part of the released
software system
a. needs configuration management just like requirements, design and code
Read More14 :: When reporting faults found to developers, testers should be:
a. as polite, constructive and helpful as possible
b. firm about insisting that a bug is not a ?feature? if it should be fixed
c. diplomatic, sensitive to the way they may react to criticism
d. All of the above
d. All of the above
Read More15 :: Explain Which of the following is not the integration strategy?
a. Design based
b. Big-bang
c. Bottom-up
d. Top-down
a. Design based
Read More16 :: Explain Which of the following is the odd one out?
a. white box
b. glass box
c. structural
d. functional
d. functional
Read More17 :: Suppose If the pseudocode below were a programming language ,how many tests are required to achieve 100% statement coverage?
1.If x=3 then
2. Display_messageX;
3. If y=2 then
4. Display_messageY;
5. Else
6. Display_messageZ;
7.Else
8. Display_messageZ;
a. 1
b. 2
c. 3
d. 4
c. 3
Read More18 :: Explain which of the following statements are true?
a. Faults in program specifications are the most expensive to fix.
b. Faults in code are the most expensive to fix.
c. Faults in requirements are the most expensive to fix
d. Faults in designs are the most expensive to fix.
c. Faults in requirements are the most expensive to fix
Read More19 :: Explain which of the following is the component test standard?
a. IEEE 829
b. IEEE 610
c. BS7925-1
d. BS7925-2
d. BS7925-2
Read More20 :: Explain What is the main reason for testing software before releasing it?
a. to show that system will work after release
b. to decide when the software is of sufficient quality to release
c. to find as many bugs as possible before release
d. to give information for a risk based decision about release
d. to give information for a risk based decision about release
Read More21 :: Explain Which of the following is NOT a standard related to testing?
a. IEEE829
b. IEEE610
c. BS7925-1
d. BS7925-2
b. IEEE610
Read More22 :: Explain Which of the following tools would you use to detect a memory leak?
a. State analysis
b. Coverage analysis
c. Dynamic analysis
d. Memory analysis
c. Dynamic analysis
Read More23 :: Explain The later in the development life cycle a fault is discovered, the more expensive it is to fix. why?
a. the documentation is poor, so it takes longer to find out what the software is doing.
b. wages are rising
c. the fault has been built into more documentation,code,tests, etc
d. none of the above
c. the fault has been built into more documentation,code,tests, etc
Read More24 :: Explain which of the following statements is not true
a. performance testing can be done during unit testing as well as during the testing of whole system
b. The acceptance test does not necessarily include a regression test
c. Verification activities should not involve testers (reviews, inspections etc)
d. Test environments should be as similar to production environments as possible
c. Verification activities should not involve testers (reviews, inspections etc)
Read More25 :: Using the same specifications as question 29, which of the following covers the MOST boundary values?
a. 9,10,11,22
b. 9,10,21,22
c. 10,11,21,22
d. 10,11,20,21
b. 9,10,21,22
Read More