Font size
WorksheetsRecap on JavaScript and HTML
Total questions: 18
Worksheet time: 22mins
Inside which HTML element do we put the JavaScript
<scripting>
<script>
<js>
<javascript>
Where is the correct place to insert a JavaScript?
<body>
<head>
<body>, <head>
html
Which of these is a method?
getElementById( )
style
document
color
Where is the correct place to insert a JavaScript?
The <head> section
Both the <head> section and the <body> section are correct
The <body> section
How do you write "Hello World" in an alert box?
msg("Hello World");
alert("Hello World");
alertBox("Hello World");
msgBox("Hello World");
How can you add a comment in a JavaScript?
//This is a comment
<!--This is a comment-->
'This is a comment
JavaScript is the same as Java.
True
False
Which event occurs when the user clicks on an HTML element?
onmouseover
onmouseclick
onchange
onclick
Is JavaScript case-sensitive?
No
Yes
How can a developer show a pop-up message to the user?
alert
prompt
console.log
<p> tag
A programming language used for webpage functionality such as interactivity, data processing, animation, and development of purpose built apps such as mobile and desktop apps and more.
HTML5
CSS
JS
C#
Specify the name of JavaScript box that displays two buttons which are the OK and cancel buttons; it is not used to collect inputs.
What is the name of HTML list that formats list as numbered?
Specify the JavaScript event that triggers the script once the mouse is moved out of an HTML element
onmouseout()
onmouseover()
onclick()
onload()
Is there a specific tag to create table columns?
What does CSS stand for?
write the correct HTML code to create a heading level 1 and has been assigned a class with the value "main".
