Quiz for Fundamentals of TypeScript, JavaScript and Node.js Quiz

Categories:

Sample MCQs related to Fundamentals of TypeScript and Node.js Course for Quiz Preparation

This page contains quiz question related to topic being covered for course All Web 3 and Metaverse. The quiz covers the following Topics:

The quiz portal will let you access your preparation for the quiz. The quiz selects random questions from the Question Bank and also changes the answer position. At the end of the quiz this portal will also show you the questions with wrong answer and a small description about the correct answer.
More questions are being added in the portal on regular basis so the questions pool increases day by day and there are chances that you will get 60-70% different questions on each quiz.

Please share your feedback using comments / or email as this will help us to improve this quiz system

/35
0 votes, 0 avg
680
Created on By admin
TS

Fundamentals of TypeScript, JavaScript and Node.js Quiz

Quiz Audience : All Web 3 and Metaverse Students
Topics Included in Quiz :  

TypeScript Foundation Quiz has been scheduled from October 02 to October 08, 2023.

Quiz Content :
First Ten Steps: https://github.com/panaverse/learn-typescript

First Six Chapters of the Book: “Learning TypeScript” by Josh Goldberg
https://www.oreilly.com/library/view/learning-typescript/9781098110321/

1 / 35

1)

2 / 35

2)

JS MCQ

3 / 35

3)

4 / 35

4)

5 / 35

5) Which of the following statement is true?

6 / 35

6)

7 / 35

7)

8 / 35

8)

9 / 35

9) What is the difference between “any” and “unknown” in TypeScript?

10 / 35

10)

JS MCQ

11 / 35

11)

JS MCQ

12 / 35

12)

13 / 35

13)

JS MCQ

14 / 35

14)

15 / 35

15)

Java Script MCQs

16 / 35

16)

17 / 35

17)

18 / 35

18)

19 / 35

19)

20 / 35

20)

21 / 35

21) What is the correct statement to describe difference between let and var for defining variable.

22 / 35

22) What will be the output of the following code ?

var employee: [number, string] = [1, “Steve”];
employee.push(2, “Bill”);
console.log(employee[1]);

23 / 35

23)

24 / 35

24)

25 / 35

25)

26 / 35

26) What will be the output of the following code ?
let nothing: void = undefined;
let num: void = 1; // Error

27 / 35

27) Which import statement can be used to import entire module that are exported by some other module.

28 / 35

28)

29 / 35

29)

30 / 35

30) When multiple computations are happening at the same time we can call it :

31 / 35

31)

32 / 35

32) JavaScript is a ____________________ synchronous programming language.
Select the correct option..

33 / 35

33)

34 / 35

34) What will be the output of the following code
console.log(Math.ceil(-4.6));

35 / 35

35) What is the difference between “undefined” and “null” in TypeScript?

Your score is

The average score is 52%

0%

6 thoughts on “Quiz for Fundamentals of TypeScript, JavaScript and Node.js Quiz”

  1. The validation of this question is wrong.
    const myTimeout = setTimeout(myGreeting, 5000);

    function myStopFunction(){
    clearTimeout(myTimeout);
    }

    function myGreeting(){
    console.log(“Greetings..”);
    }

    console.log(“Start”);

    I have marked the answer: Start will be printed then their is a pause of 5 second and then Greetings will be printed. It should be the right answer and I have compiled this code.
    But the system consider it the wrong.

Comments are closed.