For the following pseudo-code determine number of tests required for 100% statement coverage
IF Gender = Boy
If Age > 3 AND Age < 5
Shoe Size = 1
ELSE IF Age >=5 AND Age < 7
Shoe Size = 2
ENDIF
ELSE
IF Age > 3 AND Age < 5
Shoe Size = 0
ELSE IF Age >=5 AND Age < 7
Shoe Size = 1
ENDIF
ENDIF
A Static analysis tool analyzes a given program's CONTROL FLOW among other things. Which of the following options represents the most likely outcome of the control flow analysis:
Why should you choose a test technique?
Which of the following would be the LEAST likely to be used as the basis for a test exit criteria?
The following 4 equivalence classes are given:
Which of the following alternatives includes correct test values for x. based on equivalence partitioning?
Given the following priorities and dependencies for these test cases:
Which of the following test execution schedules BEST takes into account the priorities and technical and logical dependencies?
Which of the following types of tools is BEST suited for determining source code compliance with the guidelines provided by a coding standard?
Which of the following definitions is NOT true?
Confirmation testing is performed after:
Which of the following statements is NOT true about Configuration management and software testing?