Skip to main content

Posts

Showing posts with the label Branch Coverage

ISTQB Exam Question Paper, Part 4

ISTQB Exam Question Paper, Part 4 11. 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. 12. 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. can’t say 13. Coverage measurement a. is nothing to do with testing b. is a partial measure of test thoroughness c. branch coverage should be mandatory for all software d. can only be applied at unit or module testing, not at system testing 14. When should you stop testing? a. when time for testing has run out. b. when all planned tests have been run c. when the test completion criteria have been met d. when no faults have been found by the tests run 15. Which of the following is true? a. Component testing should be ...

Statement Coverage and Pseudo Code, Question Papers

Statement Coverage and Pseudo Code, Question Papers. 1.       Given the following code, which is true: Read P Read Q IF P+Q > 100 THEN   Print "Large" ELSE   IF P+Q > 50 THEN      Print "Medium"   ELSE      Print "Small"   ENDIF ENDIF   a)       1 test for statement coverage, 3 for branch coverage b)       2 tests for statement coverage, 2 for branch coverage c)       2 tests for statement coverage, 3 for branch coverage d)      3 tests for statement coverage, 3 for branch coverage e)       3 tests for statement coverage, 2 for branch coverage 2.       Given the following: Switch PC on Start “outlook” IF outlook appears THEN   Send an email   Close outlook ...