JS-Dev-101 Exam Question 6

A developer is leading the creation of a new web server for their team that will fulfill API requests from an existing client.
The team wants a web server that runs on Node.Js, and they want to use the new web framework Minimalist.Js. The lead developer wants to advocate for a more seasoned back-end framework that already has a community around it.
Which two frameworks could the lead developer advocate for?
Choose 2 answers
  • JS-Dev-101 Exam Question 7

    Refer to code below:
    Let first = 'who';
    Let second = 'what';
    Try{
    Try{
    Throw new error('Sad trombone');
    }catch (err){
    First ='Why';
    }finally {
    Second ='when';
    } catch (err) {
    Second ='Where';
    }
    What are the values for first and second once the code executes ?
  • JS-Dev-101 Exam Question 8

    Refer to code below:
    function Person() {
    this.firstName = 'John';
    }
    Person.prototype ={
    Job: x => 'Developer'
    };
    const myFather = new Person();
    const result=myFather.firstName + ' ' + myFather.job();
    What is the value of the result after line 10 executes?
  • JS-Dev-101 Exam Question 9

    Which statement accurately describes the behaviour of the async/ await keyworks ?
  • JS-Dev-101 Exam Question 10

    Refer to HTML below:
    <div id ="main">
    <div id = " card-00">This card is smaller.</div>
    <div id = "card-01">The width and height of this card is determined by its contents.</div>
    </div>
    Which expression outputs the screen width of the element with the ID card-01?