Class 10 Computer Application [165]
Unit 2 : HTML – 1
Multiple Choice Questions [Unit 2 – HTML-I Set 6]
101. The ________ attribute can be used inside the paragraph <P> tag.
a. align
b. leftmargin
c. color
d. type
102. <P align = _______>
Which of the following value can not given to align attribute of <P> tag.
a. LEFT
b. TOP
c. RIGHT
d. CENTER
103. Which of the following is a valid HTML tag.
a. LEFT
b. RIGHT
c. CENTER
d. None of these
104. Which of the following HTML code can place the “MyCSTutorial.in” in the center.
a. <H1 align = “CENTER”> MyCSTutorial.in </H1>
b. <P align = “CENTER”> MyCSTutorial.in </P>
c. <CENTER> MyCSTutorial.in </CENTER>
d. All of these
105. The _________ tag lets you define the basic size for the font, that a browser can use to render normal document.
a. <BASEFONT>
b. <DEFAULTFONT>
c. <FONT>
d. None of these
106. The text for which no other font-size setting has been provided, the browser use the setting given by ________ tag.
a. <BASEFONT>
b. <DEFAULTFONT>
c. <FONT>
d. None of these
107. The <BASEFONT> is container tag?
a. True
b. False
108. The ending tag </BASEFONT> is optional.
a. True
b. False
109. Which of the following is not an attribute of <BASEFONT> tag.
a. size
b. face
c. color
d. style
110. The size attribute of <BASEFONT> can have an absolute value from _________.
a. 0 to 7
b. 0 to 6
c. 1 to 7
d. 1 to 6
111. Each virtual size is successively ______ larger or smaller than the default font size 3.
a. 10%
b. 20%
c. 30%
d. 40%
112. The relative value of size can be given by using ________ before the value.
a. + sign
b. – sign
c. both a and b
d. Only a
113. The ________ tag allow to change the size, style and color of selected text.
a. <BASEFONT>
b. <FONT>
c. <P>
d. <H1>
114. Which of the following is not an attribute of <FONT> tag.
a. size
b. face
c. color
d. style
115. The ________ attribute of <FONT> tag is use to change the font type of the text .
a. style
b. size
c. face
d. type
116. The ________ attribute of <FONT> tag is use to change the size of the text .
a. style
b. size
c. face
d. type
117. The ________ attribute of <FONT> tag is use to change the color of the text .
a. text
b. textcolor
c. face
d. color
118. Amrit wants to change the font type of text to Times New Roman. Help him to identify the correct code for the same .
a. <FONT type = “Times new roman”> text </FONT>
b. <FONT face = “Times new roman”> text </FONT>
c. <FONT style = “Times new roman”> text </FONT>
d. <FONT face = Times new roman> text </FONT>
119. Amrit has written the following code :-
<FONT face = “Broadway, Arial, Times new roman”>
Thanks for visiting mycstutorial.in, please share with others
</font>
Suppose his browser does not support these fonts, then browser renders the text in _________.
a. default font
b. does not display the text
c. show an error message
d. None of these
120. Amrit has written the following code :-
<FONT face = “Broadway, Arial, Times new roman”>
Thanks for visiting mycstutorial.in, please share with others
</font>
How browser execute the given code ?
a. It try to display the text in font type -‘Broadway’
b. It try to display the text in ‘Arial’ font, if Broadway font is not available
c. It try to display the text in “Time new roman”, if both ‘Broadway’ and ‘Arial’ are not available
d. All of the above is possible, depend up on the availability of font.