A. As Soon As The Code Is Written
A. As Soon As The Code Is Written
3.What is the main reason for testing software before releasing it?
6. 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
7. Which is not true-The black box tester
8. Increasing the quality of the software, by better development methods, will affect the time
needed for testing (the test phases) by:
9. Coverage measurement
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.
12. What is the important criterion in deciding what testing technique to use?
13. If the pseudo code 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
14. 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
a. State-Transition
b. Usability
c. Performance
d. Security
a. Design based
b. Big-bang
c. Bottom-up
d. Top-down
a. statement testing
b. equivalence partitioning
c. error- guessing
d. usability testing
a. code inspection
b. coverage analysis
c. usability assessment
d. installation test
a. white box
b. glass box
c. structural
d. functional
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
22. 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