HTML
Python
JavaScript
100

____ HTML is easy!</p>
<p>HTML is fun! ____

<p> HTML is easy!</p>
<p>HTML is fun! </P>

100

Fill in the blanks to print "Hi".

>>>____ ("Hi")

What is Print?

100

Which keyword is used to tell JavaScript that we're going to work with a variable? 

a. vrb

b. int

c. var

what is var?

200

What tags are used to indicate headings? 

a. h1-h6

b. head

c. headerd

d.heading

What is h1 - h6? 

200

Fill in the blank with the output of this code.
>>> 1 + 2 + 3 + 4.0 + 5?


what is 15.0?

200

What characters cannot be used in variable names?

a. Underscore sign 

b. Letters

c. Special symbols (%, #, etc.) 

d. Numbers 

what is Special symbols (%, #, etc.)?

300

Which two tags below make the text visually bold? 

a. ins and del 

b. sub and sup 

c. i and em 

d. b and strong

What is b and strong?

300

Fill in the blank to prompt for user input. 

>>>_____("Enter a number:") 

what is input?

300

What is the output of the following code:
var x = "50";
var y = "100";
document.write(x+y); 

a. 150

b.50100

c.5000

d.Null

what is 50100?

M
e
n
u