You are on page 1of 2

Quiz No.

3 – JavaScript

I. Give the correct answer to the following questions about the history of
JavaScript:

1. Who is the creator of JavaScript?


2. What is the former name of JavaScript?
3. What are the 2 parts of the HTML document can we add JavaScript?
4. What are the 2 ways of adding (embedding) JavaScript to HTML?
5. What is the keyword used to write variables in JavaScript?

II. JS Statements:

6. What is the statement used to terminate (stop) a loop or switch statement


from further execution?

7. What is the statement described as an inverted while statement?

8. What is the statement describes as a loop mechanism that executes code as


long as the condition evaluation continues to be true? Hint: It requires 3
parameters inside its parenthesis.

9. What is the statement that returns a value from a function?

10.What is the statement that evaluates an argument passed through it for a


match against a specific set of values that are defined using case labels?

III. Write the correct JS Operator based on the following description:

11.equal
12.strict equal
13.strict not equal
14.less than
15.greater than
16.less than or equal
17.greater than or equal
18.append
19.logical OR
20.logical AND
21.

You might also like