Question 111

A test has a dependency on database.query. During the test the dependency is replaced with an object called database with the method, query, that returns an array. The developer needs to verify how many times the method was called and the arguments used each time.
Which two test approaches describe the requirement?
Choose 2 answers
  • Question 112

    Refer to the code below:

    What is display when the cod executes?
  • Question 113

    Refer to the code snippet:

    A developer writes this code to return a message to a user attempting to register a new username. If the username is available, a variable named msg is declared and assigned a value on line 03.
    What is the return of msg when getivelibilityMessage ('' bewUserName') is executed and getAvailability (''newUserName'') returns false?
  • Question 114

    Given the code below:
    const delay = async delay =>{
    return new Promise((resolve,reject)=>{
    console.log(1);
    setTimeout(resolve,deleay);
    });
    };
    const callDelay = async ()=>{
    console.log(2);
    const yup = await delay(1000);
    console.log(3);
    }
    console.log(4);
    callDelay();
    console.log(5);
    What is logged to the console?
  • Question 115

    A developer wants to create an object from a function in the browser using the code below.

    What happens due to the lack of the mm keyword on line 02?