JavaScript Basics

JavaScript Basics

Assessment

Quiz

Computers

9th Grade - University

Medium

Created by

Dena L.

Used 14+ times

FREE Resource

Student preview

quiz-placeholder

56 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which HTML element can we write JavaScript in?

<scripting>

<script>

<js>

<source>

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Evaluate


Number("1") - 1 == 0;

true

false

TypeError

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the result?


2+4 > 5 + 2;

true

false

Nan

TypeError

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the correct JavaScript syntax to modify the content of the HTML element?


<p id="greeting">Hello, World!</p>

document.getElementById("greeting").innerHTML = "Hello there!";

#greeting.innerHTML = "Hello there!";

document.getElementByName("p").innerHTML = "Hello there!";

document.getElement("p").innerHTML = "Hello there!";

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following statements will let us output values?

innerHTML

document.write

alert

console.log

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the correct syntax for referring to an external JavaScript script?

<script src="myscript.js"></script>

<script href="myscript.js"></script>

<js href="myscript.js"></js>

<js src="myscript.js"></js>

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How would you write Hello World in an pop up box?

msg("Hello World");

alertBox("Hello World");

console.log("Hello World");

alert("Hello World");

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?