Javascript Datatypes and Variables(Kushal Das)

Javascript Datatypes and Variables(Kushal Das)

Professional Development

15 Qs

quiz-placeholder

Similar activities

Day 3 - Dom Manipulation

Day 3 - Dom Manipulation

Professional Development

20 Qs

JavaScript

JavaScript

Professional Development

12 Qs

Python quiz

Python quiz

10th Grade - Professional Development

10 Qs

Advance Python

Advance Python

KG - Professional Development

10 Qs

PLSQL and Cursor Quiz

PLSQL and Cursor Quiz

Professional Development

10 Qs

Javascript basics

Javascript basics

Professional Development

15 Qs

Javascript HTML CSS

Javascript HTML CSS

Professional Development

13 Qs

Python

Python

University - Professional Development

10 Qs

Javascript Datatypes and Variables(Kushal Das)

Javascript Datatypes and Variables(Kushal Das)

Assessment

Quiz

Computers

Professional Development

Medium

Created by

Kushal Das

Used 7+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

In Replit, we have created a file named “DemoFile.js”, which command is used to run the JavaScript code within it.

run DemoFile

run DemoFile.js

node DemoFile

node DemoFile.js

Answer explanation

Answer Explanation :

On Replit, click the shell tab on the right. Effectively this gives you a terminal and access to node.js. 

node <file name>  is the command to get node to run your program, in our case file name is “DemoFile.js”.  

Please note: DemoFile.jsand DemoFile are two different files.

2.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

JavaScript can be used for?

Creating web pages

Game Development

Building web servers

All of the Above

Answer explanation

You can use JavaScript for multiple purposes like creating web pages, game development, building web servers, etc.

3.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

JavaScript is ________________ typed language.

Statically

Dynamically

Strongly

None of the Above

Answer explanation

JavaScript is a dynamically-typed language where the interpreter assigns variables a type at runtime based on the variable's value at the time.

This means below code snippet is valid in JavaScript:

let num = 1;
num = "some string";

4.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Which of the following is not a data type?

String

null

number

char

Answer explanation

In JavaScript, char is not a data type.

5.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

___________ data type is used to represent the intentional absence of any value.

undefined

boolean

null

None of the Above

Answer explanation

null used for intentionally missing values.

6.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

What will be the output of the below code snippet:

var num;
console.log(num);

null

undefined

number

string

Answer explanation

Variable num is only declared not assigned any value hence the output will be undefined.

7.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Which is the correct statement for declaring a variable "myName" with its initial value as “Kushal”? (Camel Case)

var

myName="Kushal";

var myname="Kushal";

var MyName="Kushal";

All of the above

Answer explanation

JavaScript is a case-sensitive language. This means that capitalisation matters. Variable myName is not the same as MyName nor myname. It is possible to have multiple distinct variables with the same name but different casing.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?