What Does HTML Stand For?: Hyperlinks and Text Markup Language
What Does HTML Stand For?: Hyperlinks and Text Markup Language
Microsoft
Mozilla
3. Choose the correct HTML tag for the largest heading
<h6>
<h1>
<head>
<heading>
<br />
<break />
<lb />
<br />
<break />
<lb />
<body style="background-color:yellow">
<background>yellow</background>
<body background="yellow">
<b>
<bold>
<i>
<a href="http://www.w3schools.com">W3Schools</a>
<a url="http://www.w3schools.com">W3Schools.com</a>
<a name="http://www.w3schools.com">W3Schools.com</a>
<a>http://www.w3schools.com</a>
<a href="mailto:xxx@yyy">
<a href="xxx@yyy">
<mail href="xxx@yyy">
<mail>xxx@yyy</mail>
12. What is the correct HTML for referring to an external style sheet?
<style src="mystyle.css">
<stylesheet>mystyle.css</stylesheet>
<style>
<css>
<script>
style
class
font
styles
{body:color=black(body}
body:color=black
{body;color:black}
17. How do you insert a comment in a CSS file?
// this is a comment
/* this is a comment */
// this is a comment //
bgcolor:
Color:
background-color:
19. How do you add a background color for all <h1> elements?
h1 {background-color:#FFFFFF}
all.h1 {background-color:#FFFFFF}
h1.all {background-color:#FFFFFF}
text-color=
text-color:
fgcolor:
<scripting>
<script>
<javascript>
<js
document.write("Hello World")
response.write("Hello World")
("Hello World")
"Hello World"
Both the <head> section and the <body> section are correct
24. What is the correct syntax for referring to an external script called
"xxx.js"?
25. The external JavaScript file must contain the <script> tag
True
False
msgBox("Hello World")
alert("Hello World")
alertBox("Hello World")
alertBox="Hello World"
27. How do you create a function?
function=myFunction()
function myFunction()
28. How do you call a function named "myFunction"?
function:myFunction()
myFunction()
call myFunction()
29. How do you write a conditional statement for executing some code if "i"
is equal to 5?
if i=5 then
if i==5 then
if (i==5)
if i=5
30. How do you write a conditional statement for executing some code if "i"
is NOT equal to 5?
if =! 5 then
if (i <> 5)
if <>5
if (i != 5)
31. What does XML stand for?
X-Markup Language
True
False
34. What is the correct syntax of the declaration which defines the XML
version?
<?xml version="1.0"?>
<xml version="1.0" />
Do The Dance
<?xml version="1.0"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
Yes
No
<?xml version="1.0"?>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
Yes
No
False
True