0% found this document useful (0 votes)
37 views5 pages

Paper-IV at HTML

Uploaded by

b3312563
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views5 pages

Paper-IV at HTML

Uploaded by

b3312563
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

RABINDRA NATH NATIONAL YOUTH CENTRE

Admin. Office : Srikrishna College Campus, PO- Bagula, PS- Hanskhali, Dist.- Nadia, W.B.
Affiliated to NCT Delhi, Govt. of India
www.rnnycindia.org # E-mail : [email protected]

HTML

❑ What is an html File?


HTML is a format that tells a computer how to display a web page. The documents themselves are plain text
files with special "tags" or codes that a web browser uses to interpret and display information on your
computer screen.

■ HTML stands for Hyper Text Markup Language


■ An HTML file is a text file containing small markup tags
■ The markup tags tell the Web browser how to display the page
■ An HTML file must have an .htm or .html file extension

❑ About Prerequisites for HTML


You will need a text editor, such as Notepad and an Internet browser, such as Internet Explorer or Netscape.

❑ About .HTM or .HTML Extension?


When you save an HTML file, you can use either the .htm or the .html extension. The .htm
extension comes from the past when some of the commonly used software only allowed three
letter extensions. It is perfectly safe to use either .html or .htm, but be consistent. mypage.htm
and mypage.html are treated as different files by the browser.

❑ What is Notepad and where do I get it?


A: Notepad is the default Windows text editor. On most Windows systems, click your Start button and choose
Programs then Accessories. It should be a little blue notebook or winlogo key + R → type notepad → ok

Try It?
Open your text editor and type the following text:
<ht
ml>
<he
ad>
<title>Rabindra Nath National Youth Centre</title>
</head>
<body>
This is my first homepage. <b>This text is bold</b>
</body>
</html>

❑ What are HTML tags?


■ HTML tags are used to mark-up HTML elements
■ HTML tags are surrounded by the two characters < and >
■ The surrounding characters are called angle brackets
■ HTML tags normally come in pairs like <b> and </b>
■ The first tag in a pair is the start tag, the second tag is the end tag
■ The text between the start and end tags is the element content
■ HTML tags are not case sensitive, <b> means the same as <B>

1. Who is founder of HTML Code?


a. Tim burners Lee b. Robin Jackman
c. Rohit Agarwal d. None of this
Ans: a
2. Which HTML Tag will use to scroll a text in web page?
a. <marquee> … </marquee> b. <scroll> … </scroll>
RABINDRA NATH NATIONAL YOUTH CENTRE
Admin. Office : Srikrishna College Campus, PO- Bagula, PS- Hanskhali, Dist.- Nadia, W.B.
Affiliated to NCT Delhi, Govt. of India
www.rnnycindia.org # E-mail : [email protected]

c. <round> … </round> d. <go> … </go>


Ans: a
3. What should be the first tag in any HTML document?
a. <head> b. <title> c. <html> d. <document>
Ans: c
4. <b> tag makes the enclosed text bold. What is other tag to make text bold?
a. <strong> b. <dar> c. <black> d. <emp>
Ans: a
5. A webpage displays a picture. What tag was used to display that picture?
a. picture b. image c. img d. src
Ans: c
6. What is the full form of HTTP?
a. Hyper text transfer protocol b. Hyper text transfer package
c. Hyphenation text test program d. none of the above
Ans: a
7. What is the full form of HTML?
a. Hyper text markup language b. Hyphenation text markup language
c. Hyphenation test marking language d. Hyper text marking language
Ans: a
8. What is the full form of TCP/IP?
a. transmission control protocol / internet protocol
b. telephone call protocol / international protocol
c. transport control protocol / internet protocol
d. none of the above
Ans: a
9. “Yahoo”, “Infoseek” and “Lycos” are _________?
a. Search Engines b. Browsers
c. News groups d. None of the above
Ans: a
10. HTML document start and end with which tag pairs?
a. <HEAD>….</HEAD> b. <BODY>….</BODY>
c. <HTML>….</HTML> d. <WEB>….</WEB>
Ans: c
11. Which tag inserts a line horizontally on your web page?
a. <hr> b. <line>
c. <line direction=”horizontal”> d. <tr>
Ans: a
12. How can you make an e-mail link?
a. <a href=”xxx@yyy”> b. <mail href=”xxx@yyy”>
c. <mail>xxx@yyy</mail> d. <a href=”mailto:xxx@yyy”>
Ans: d
13. What is the correct HTML for making a hyperlink?

a. <a href=”http:// mcqsets.com”>ICT Trends Quiz</a>


b. <a name=”http://mcqsets.com”>ICT Trends Quiz</a>
c. <http://mcqsets.com</a>
d. url=”http://mcqsets.com”>ICT Trends Quiz
Ans:a
14. What is the correct HTML for adding a background color?
a. <body color=”yellow”> b. <body Bgcolor=”yellow”>
c. <background>yellow</background> d. <body background=”yellow”>
Ans: b
15. Which tag allows you to add a Row in a table?
a. <td> and </td> b. <cr> and </cr> c. <th> and </th> d. <tr> and </tr>
Ans:d
RABINDRA NATH NATIONAL YOUTH CENTRE
Admin. Office : Srikrishna College Campus, PO- Bagula, PS- Hanskhali, Dist.- Nadia, W.B.
Affiliated to NCT Delhi, Govt. of India
www.rnnycindia.org # E-mail : [email protected]

16. Choose the correct HTML tag for the smallest size heading?
a. <heading> b. <h6> c. <h1> d. <head>
Ans: c
17. How can you make a numbered list?
a. <dl> `b. <ol> c. <list> d. <ul>
Ans:b
18. What is the correct HTML tag for inserting a line break?
a. <br> b. <lb> c. <break> d. <newline>
Ans: a
19. Which of the following is not a pair tag?
a. <p> b. < u > c. <i> d. <img>
Ans:d
20. Marquee is a tag in HTML to
a. mark the list of items to maintain inqueue
b. Mark the text so that it is hidden in browser
c. Display text with scrolling effect
d. None of above
Ans: c
21. Which tag is used to create body text in HTML?
a. <HEAD> b. <TEXT> c. <TITLE> d. <BODY>
Ans: d
22. Which tag creates a check box for a form in HTML?
a. <checkbox> b. <input type=”checkbox”>
c. <input=checkbox> d. <input checkbox>
Ans:b
23. To create HTML document you require a
a. web page editing software b. High powered computer
c. Just a notepad can be used d. None of above
Ans: c
24. To create a blank line in your web page
a. press Enter two times b. press Shift + Enter
c. insert <BR> tag d. insert <BLINE>
Ans: c

25. In HTML document the tags


a. Should be written in upper case
b. should be written in lower case
c. should be written in proper case
d. can be written in both uppercase or lowercase
Ans: d
26. HTML supports
a. ordered lists b. unordered lists
c. both type of lists d. does not support those types
Ans: c
27. The _____ character tells browsers to stop tagging the text
a. ? b. / c. > d. %
Ans: b
28. HTML documents are saved in

a. Special binary format b. Machine language codes


c. ASCII text d. None of above
Ans: c
29. Some tags enclose the text. Those tags are known as
a. Couple tags b. Single tags c. Double tags d. Pair tags
Ans: d
RABINDRA NATH NATIONAL YOUTH CENTRE
Admin. Office : Srikrishna College Campus, PO- Bagula, PS- Hanskhali, Dist.- Nadia, W.B.
Affiliated to NCT Delhi, Govt. of India
www.rnnycindia.org # E-mail : [email protected]

30. A homepage is __________


a. An index of encyclopedia articles
b. Where all Internet data is stored
c. Required for access to the Internet
d. The first page of a website
Ans: d
31. Choose the correct HTML tag for the largest heading?
a. <H1> b. <H6> c. <H10> d. <HEAD>
Ans: a
32. Which HTML tag would be used to display power in expression (A+B)2 ?
a. <SUP> b. <SUB> c. <B> d. <P>
Ans: a
33. With regards to e-mail addresses:
a. hey must always contain an @ symbol
b. hey can never contain spaces
c. they are case-insensitive
d. all of the above
Ans: d
34. <SCRIPT> … </SCRIPT> tag can be placed within ________
a. Header b. Body
c. both A and B d. none of the above
Ans: b
35. Text within <STRONG> … </STRONG> tag is displayed as ________
a. bold b. italic c. list d. indented
Ans: a
36. The way the browser displays the object can be modified by _____
a. attributes b. parameters c. modifiers d. None of above
Ans: a
37. Which of the following is an attribute related to font tag?
a. size b. face
c. color d. All of above are style tags
Ans: d
38. Which attribute you’ll use with TD tag to merge two cells horizontally?
a. merge=colspan2 b. rowspan=2
c. colspan=2 d.merge=row2
Ans: c
39. How can you make a Bulleted list?
a. <list> b. <nl> c. <ul> d. <ol>
Ans: c
40. What is the correct syntax in HTML for creating a link on a webpage?
a. <LINK SRC= “mcqsets.html”> b. <BODY LINK = “mcqsets.html”>
c. <A SRC = “mcqsets.html” > d. < A HREF = “mcqsets.html”>
Ans: d
41. Which tag is used to display the large font size?
a. <LARGE></LARGE> b. <BIG></BIG>
c. < SIZE ></SIZE> d. <FONT></FONT>
Ans: b
42. <TITLE> … </TITLE> tag must be within ________
a. Title b. Form c. Header d. Body
Ans: c
43. Which attribute can be used with BODY tag to set background color green?
a. background=”green” b. bgcolor=”green”
c. vlink=”green” d. None of above
Ans: b
44. <UL> … </UL> tag is used to ________
a. display the numbered list b. underline the text
c. display the bulleted list d. bold the text
Ans: c
RABINDRA NATH NATIONAL YOUTH CENTRE
Admin. Office : Srikrishna College Campus, PO- Bagula, PS- Hanskhali, Dist.- Nadia, W.B.
Affiliated to NCT Delhi, Govt. of India
www.rnnycindia.org # E-mail : [email protected]

45. In Satellite based communication, VSAT stands for?


a. Very Small Aperture Terminal b. Varying Size Aperture Terminal
c. Very Small Analog Terminal d. None of the above
Ans: a
46. To create a combo box (drop down box) which tag will you use?
a. <select> b. <list>
c. <input type=”dropdown”> d. all of above
Ans: a
47. What does the .com domain represents?
a. Education domain b. Commercial domain
c. Network d. None of the above
Ans: b
48. Choose the correct HTML tag to make a text italic
a. <ii> b. <italics> c. <italic> d. <i>
Ans:d
49. There are ____ different of heading tags in HTML
a. 4 b. 5 c. 6 d. 7
Ans:c
50. Using <P> tag will
a. start a new paragraph b. break the line
c. end the current paragraph d. none of the above
Ans: a

You might also like