Free JS Institute JSA-41-01 Exam Questions

Try our Free Demo Practice Tests for Comprehensive JSA-41-01 Exam Preparation

  • JS Institute JSA-41-01 Exam Questions
  • Provided By: JS Institute
  • Exam: JSA - Certified Associate JavaScript Programmer
  • Certification: JavaScript
  • Total Questions: 160
  • Updated On: Sep 26, 2024
  • Rated: 4.9 |
  • Online Users: 320
Page No. 1 of 32
Add To Cart
  • Question 1
    • What is the value of property "y" in object "point2" after the following code is executed?
      let point = {x: 100, y: 200}; 
      let point2 = {...point}; 
      point2.y = 300; 

      Answer: C
  • Question 2
    • What will be the output when the following code is executed:
      class Car { 
       _brand = ""; 
       set brand(value) { 
       this._brand = value; 
       } 
       get brand() { 
       return this._brand; 
       } 
      let car = new Car(); 
      car.brand = "Toyota"; 
      console.log(car.brand) 

      Answer: A
  • Question 3
    • What is the output of the following code snippet?
      class Shape{}; 
      class Pyramid extends Shape{}; 
      class SquareBasedPyramid extends Pyramid {}; 
      let shape = new SquareBasedPyramid (); 
      console.log(`${shapeinstance of Shape} ${shape instance of Pyramid } ${shape instance of SquareBasedPyramid }`) 

      Answer: A
  • Question 4
    • What will appear on the console after executing the following code?
      let car = { model: "Tesla", year: 2022 }; 
      let vehicle = {...car, color: "red"}; 
      car.year = 2021; 
      console.log(`${vehicle.model} ${vehicle.year} ${vehicle.color}`);

      Answer: B
  • Question 5
    • What is the output of the following code?
      const add = (a, b) => a + b; 
      const double = n => add(n, n); 
      console.log(double(3));

      Answer: A
PAGE: 1 - 32
Add To Cart

© Copyrights Dumpscity 2024. All Rights Reserved

We use cookies to ensure your best experience. So we hope you are happy to receive all cookies on the Dumpscity.