WorksheetsJavascript mine
Total questions: 15
Worksheet time: 8mins
Inside which HTML element do we put the JavaScript?
<scripting>
<Javascript>
<Script>
<Js>
Where is the correct place to insert a JavaScript?
Both the <head> and <body> section.
<Head> section
<Body> section
How can you add a comment in a JavaScript?
//This is a comment
<!--This is a comment-->
"This is a comment"
How to insert a comment that has more than one line?
/*This comment has more than one line*/
//This comment has more than one line//
<!- -This comment has more than one line- ->
JavaScript is the same as Java.
True
False
Is JavaScript case-sensitive?
Yes
No
What is the main characteristic of a programming language that distinguishes it from a scripting language?
Only Languages developed by Microsoft can be called Programming language
Scripting languages are open source while programming language is developed by private organisations.
Programming languages are compiled whereas scripting languages are interpreted.
Official name of Javascript?
(a)
Javascript was created by (a) -
Mention one feature or use of Javascript.
A variable in Javascript is a (a) for information you want to store.
The keyword used to declare a variable is (a)
The variable's value can change during the script
True
False
var x=100
x=x+25
What is the current value of the variable.
100
25
125
225
A variable name can only start with ________, __________ and ________
(a)
