Question 66

Which of the following statements about error guessing is true?
  • Question 67

    Which of the following statements is true?
  • Question 68

    Which of the following statements about white-box testing is false?
  • Question 69

    You are testing a room upgrade system for a hotel. The system accepts three differed types of room (increasing order of luxury): Platinum. Silver and Gold Luxury. ONLY a Preferred Guest Card holder s eligible for an upgrade.
    Below you can find the decision table defining the upgrade eligibility:
    What is the expected result for each of the following test cases?
    Customer A: Preference Guest Card holder, holding a Silver room
    Customer B: Non Preferred Guest Card holder, holding a Platinum room
  • Question 70

    A requirement specifies that if the total amount of sales (TAS) made during the year by a corporate seller is
    300000€ or more, the bonus that must be paid to the seller is 100% of a certain amount agreed upon at the beginning of the year. The software contains a fault as it implements this requirement with the decision "IF (TAS = 300000)" instead of "IF (TAS >= 300000)". The application of the 3-value boundary value analysis to this problem consists of the following three test cases (TAS is an integer variable):
    TC1 = 299999 TC2=300000 TC3=300001
    Which of the following statements is true?