Font size
WorksheetsHTML Pop QUIZ
Total questions: 23
Worksheet time: 13mins
Select the tags below:
<body>
/body
<p>
<img>
The ______________ object is a built-in JavaScript object. It allows you to get the user's local time by accessing the computer system clock through the browser.
document
navigator
Date
write
Which answer is not a tag?
<body>
/body
<p>
<img>
Which tag is used to display a heading such as "Welcome to my Webpage?"
<body>
<img src = >
<head>
<h1>
Which tags are used to create a paragraph?
<body></body>
<img src = ></img>
<p></p>
<h1></h1>
What language is used to define the structure of a webpage?
HTML
CSS
JavaScript
French
What is the purpose of HTML?
To control space and time
To create webpages
To confuse and infuriate user
To provide Webpage security
Where is the link tag for an external CSS style sheet located?
between the <head> tags
between the <body> tags
above the <html> tags
below the last tag
Which tag is used to display/contain all things shown on the webpage?
<body>
/body
<p>
<img>
What is HTML?
HyperText Markup Language
HighTower Makeup Language
Plain Text on Documents
Expensive Types of Candy
A function that models characteristics of abstract or real objects using classes
method
object
value
property
An action performed by object
method
object
value
property
Descriptive characteristic of an object ex. width, height
method
object
value
property
The specific quality of a property, such as a specified width = 150 or height =200
method
object
value
property
Which tag is an end tag?
<body>
</body>
<p>
<img>
JavaScript is ____________-driven.
Easy
Event
Scripting
Object based
What tags are used to reference Java programing in webpages?
<reference>
<java>
<applet>
<javascript>
What type of language is JavaScript?
object-syncing
object-oriented
Scripting
Compiled
Which programming language was in the mind of the author when they created JavaScript?
Netscape
Linux
Java
C# programming
A programmer is creating an application that needs to store a value indicating if the user is logged in or not. Which of the following would be the BEST data type to accomplish this?
Integer
String
Float
Boolean
A developer is creating an application that requires a value to be stored with decimal precision. Which of the following data types should be used for the variables that will store these values?
Integer
String
Float
Boolean
A developer is creating a program that will store a customer's latest order number. The value will change each time a customer creates a new order. Which of the following would MOST likely be used to store the value?
Constant
Object
Array
Variable
After running the following pseudocode, what will the value of VARIABLE be?
Set value of VARIABLE to 5
Increase the value of VARIABLE by 3
If the value of VARIABLE is odd, increase its value by 1
If the value of VARIABLE is even, increase its value by 1
If the value of VARIABLE is odd, increase its value by 1
8
9
10
11
