____ HTML is easy!</p>
<p>HTML is fun! ____
<p> HTML is easy!</p>
<p>HTML is fun! </P>
Fill in the blanks to print "Hi".
>>>____ ("Hi")
What is Print?
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?
What tags are used to indicate headings?
a. h1-h6
b. head
c. headerd
d.heading
What is h1 - h6?
Fill in the blank with the output of this code.
>>> 1 + 2 + 3 + 4.0 + 5?
what is 15.0?
What characters cannot be used in variable names?
a. Underscore sign
b. Letters
c. Special symbols (%, #, etc.)
d. Numbers
what is Special symbols (%, #, etc.)?
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?
Fill in the blank to prompt for user input.
>>>_____("Enter a number:")
what is input?
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?