Javascript Datatypes and Variables(Kushal Das)

Quiz
•
Computers
•
Professional Development
•
Medium
Kushal Das
Used 7+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 2 pts
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.js
and 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
Similar Resources on Quizizz
16 questions
Trắc nghiệm kiểu xâu

Quiz
•
Professional Development
15 questions
Flutter Q_0

Quiz
•
Professional Development
20 questions
Chapter 5 : JavaScript Objects & Arrays

Quiz
•
Professional Development
18 questions
Flutter Online Quiz

Quiz
•
Professional Development
15 questions
Day 1 PHP

Quiz
•
Professional Development
10 questions
Python Collections

Quiz
•
Professional Development
10 questions
python quiz

Quiz
•
6th Grade - Professio...
20 questions
JavaScript

Quiz
•
Professional Development
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade