CTFL_Foundation Certified Tester - Foundation Level (Syllabus 2011)

Loading demo links...

Showing 4–6 of 15 questions

Question 4

You have to specify test cases based on equivalence partitioning and boundary value analysis for an internet shop selling baby shoes. The shop provides a selection of shoes based on the following input parameters:

-There are 4 different sizes, depending on the age of the baby. The system selects the appropriate size based on the following criteria: 1. 0 < age <= 4 months: size 1

2. 4 < age <= 8 months: size 2

3. 8 < age <= 15 months: size 3

4. 15 < age <= 24 months: size 4

-The gender of the baby: boy or girl

Which of the following statements is true?

Select an option, then click Submit answer.

  • The total number of combinations of valid equivalence classes of age and gender is 8.

  • There are two invalid equivalence classes for the age input parameter: age <= 0, and age > 25

  • All combinations of valid equivalence classes could be covered with 4 test cases.

  • All valid equivalence classes could be covered with 6 test cases.

Question 5

Which of the following statements is LEAST likely to be true of non-functional testing?

Select an option, then click Submit answer.

  • It covers the evaluation of the interaction of various specified components.

  • It tests “how” the system works.

  • It may include testing the ease of modification of systems.

  • It may be performed at unit, integration, system and acceptance test levels.

Question 6

Why is measurement of code coverage important?

Select an option, then click Submit answer.

  • Because 100% code coverage implies 100% coverage of requirements

  • Because 100% code coverage guarantees that there are no coding errors

  • Because code coverage can be used to ensure that all code is exercised by tests

  • Because code coverage can ensure that all decisions are correctly implemented in the code