Question 1
Question
HTML is a Programming Language
Question 2
Question
Are you ready for the test?
Question 3
Question
Write a complete HTML file Global Structure
<html>
[blank_start]<head>[blank_end]
[blank_start]<title></title>[blank_end]
[blank_start]</head>[blank_end]
[blank_start]<body>[blank_end]
[blank_start]</body>[blank_end]
[blank_start]</html>[blank_end]
Answer
-
</html>
-
<htm>
-
<body>
-
<Nobody but you>
-
</body>
-
</nobody but you>
-
<title></title>
-
<topic></topic>
-
<title/>
-
<table></table>
-
<head>
-
</head>
Question 4
Question
Which of following tag able to display the below result?
Answer
-
-><b><u>Click Here</u></b><-
-
-><b><u>Click Here</u></b><-
-
-><a>Click Here</a><-
-
-<<b><u>Click Here</u></b>>-
Question 5
Question
We can use <bold></bold> to let the text become thicker
Question 6
Question
Choose all valid tag
Question 7
Question
Which of following code able to generate the below result?
Question 8
Question
We must design our content of webpage within <body> tag.
Question 9
Question
Choose all Valid Colour Value
Question 10
Question
Which following Tag is able to make comment in a HTML document?
Answer
-
<-- Comment Here-->
-
<!-- This is not a Comment tag-->
-
<comment>Je vous remercie. </comment>
-
(; ・`д・´> Comment tag </*ˇωˇ*人)
-
<!----> Choose Me!<-----!>
Question 11
Question
Which is valid tag structure for displaying a photo?
Answer
-
<img source="jed.jpeg" alt="This is photo" Width="500" Height="700" />
-
<img src="jed.jpeg" alt="This is photo" Width="500" Height="700"/>
-
<image src="jed.jpeg" alt="This is photo" Width="500" Height="700"/>
-
<a href src="jed.jpeg">This is photo</a>
Question 12
Question
Which of following result can be generated by the below tag structure
Question 13
Question
How many columns can be generated by this tag?
Question 14
Question
How many rows can generated by this tag?
Question 15
Question
What is the result of below tag structure?
Question 16
Question
Consider the following Webpage layout, guess which tag is utilized for packing these plaintext
Question 17
Question
.mp3 is a valid video file format.
Question 18
Question
Select all invalid audio file
Answer
-
This.avi
-
Youdonhavecare.jpg
-
Kakegurui.mp3
-
Kancolle.midi
-
Excalibur.wav
Question 19
Question
Select all valid video file
Answer
-
ThisaVideo.mp4
-
Sakura_2018.avi
-
photo.flv
-
Kallcolle.png
-
Warspite.mp3
-
ThisisAnswer.docx
Question 20
Question
How many frame generated by this tag?
Question 21
Question
Which of following tag structure able to generate the below result?
Answer
-
<body bgcolor="yellow"></body>
-
<font color="yellow"><body></body></font>
-
<color value="yellow"><body></body></color>
-
<body><yellow></yellow></body>
Question 22
Question
Which tag(s) able to conduct following result?
Answer
-
<ol> tag
-
<li> tag
-
<ol> with <li> tags
-
<ol> with <ul> tags
Question 23
Question
Which of following tag structure able to generate the below result?
Question 24
Question
Which is valid Webpage Filename Extension?
Answer
-
.htm
-
,webpage
-
.htm1
-
none of above
Question 25
Question
Which of following tag able to change text color?
Answer
-
<font></font>
-
<color></color>
-
<body/>
-
none of above
Question 26
Question
Which attribute in font tag able to change text font style?
Answer
-
face
-
style
-
font-family
-
family
Question 27
Question
Consider the following result and complete the HTML file.
[blank_start]<table>[blank_end]
[blank_start]<tr>[blank_end]
[blank_start]<td>[blank_end]
[blank_start]<ol type="A">[blank_end]Guess who is she!
<li>Warspite</li>
<li>Kongo</li>
<li>Musashi</li>
<li>Yamato</li>
[blank_start]</ol>[blank_end]
</td>
<td>
<img [blank_start]src="Warspite.jpg"[blank_end] alt="Pixiv ID:60362206"/>
[blank_start]</td>[blank_end]
[blank_start]</tr>[blank_end]
[blank_start]</table>[blank_end]
Answer
-
<table>
-
</table>
-
<tr>
-
</tr>
-
<td>
-
</td>
-
<ol type="A">
-
<ol type="a">
-
</ol>
-
src="Warspite.jpg"
-
href="Warspite.jpg"
-
photo="Warspite.jpg"
Question 28
Question
Which of following is invalid CSS syntax?
Answer
-
Bold { color:#000000; }
-
#correctsyntax { color: Red;}
-
.SkipThis { text-align: right; }
-
.Thisisinvalid{ font-family:monospace;}
Question 29
Question
Select all CSS necessary property for the Text " Enemy ship is in sight! Open fire! "
Answer
-
text-align
-
font-family
-
color
-
font-size
-
size
-
align
-
font-style
-
colour
Question 30
Question
consider the below result and complete the HTML document.
<head>
[blank_start]<style type="text/css">[blank_end]
.change{
[blank_start]text-align:[blank_end]right;
[blank_start]font-size:50px;[blank_end]
}
#Test { text-align:[blank_start]center[blank_end];
[blank_start]font-family:[blank_end]monospace;
[blank_start]color:[blank_end]darkmagenta;
[blank_start]font-size:30px;[blank_end]
}
[blank_start]</style>[blank_end]
</head>
<body>
<div [blank_start]class=[blank_end]"change">Спасибо</div>
<div [blank_start]id=[blank_end]"Test">Enemy ship is in sight! Open fire!</div>
</body>
Question 31
Question
HTML selector is one of CSS selector.
Question 32
Question
XML selector is one of CSS selector
Question 33
Question
Which of following attribute able to activate the CSS with class selector?
Answer
-
class=
-
class!=
-
value=
-
name=
Question 34
Question
Which of following attribute able to activate the CSS with ID selector?
Answer
-
Id=
-
name=
-
class=
-
none of above
Question 35
Question
Consider the following CSS and guess the result
Question 36
Question
What is the filename extentsion for external CSS files?
Answer
-
.CSS
-
.CS
-
no such feature for CSS
-
.CSV
Question 37
Question
Consider the following result, which of tag structure able to show the result ?