Question 26

which statement about test approaches is TRUE7
SELECT ONE OPTION
  • Question 27

    As a tester on an Agile team you have been given the following user story to analyze As a medical professional I want to see the availability of operating rooms So I can schedule surgeries as needed You have talked with the product owner and she expressed some concern over the term "medical professional" You have looked into this and found that doctors want to schedule their surgeries but the hospital administrator does not want them to have this ability At this point what should you do to try to resolve this issue?
  • Question 28

    Refactoring of test cases is needed in agile projects for many reasons.
    Which of the following statements about the refactoring of test cases is correct?
  • Question 29

    A developer has implemented a class that calculates if a given date is a leap year. The definition for the leap year is given:
    Every year that is exactly divisible by four is a leap year, except for years that are exactly divisible by 100, but these centurial years are leap years if they are exactly divisible by 400.
    - divisible by 4
    - but not by 100
    - years divisible by 400 are leap anyway
    You have already thought about it and started with the first test class; the test class looks like (pseudo JavaScript used here):
    // LeapYear.spec.js
    describe('Leap year calculator', () => {
    it('should consider 1996 as leap', () => {
    expect(LeapYear.isLeap(1996)).toBe(true);
    });
    });
    What would now be your next step to proceed as efficient as possible, to validate the correctness of the class above?
  • Question 30

    Which statement about test automation is TRUE7
    SELECT ONE OPTION