HTML MCQ (Multiple Choice Questions) PDF (With Answers)

HTML Multiple Choice Questions and Answers PDF

Are you embarking on your journey to become a web developer or do you want to refresh your HTML skills? Look no further! This article covers all aspects of HTML Multiple Choice Questions and Answers pdf, including HTML MCQ pdf and Multiple Choice Questions on HTML and CSS with Answers for various exams.

This comprehensive guide will help you gain a better understanding of both basic and advanced HTML concepts. We have included various helpful resources, such as tutorials and example codes, to aid in mastering the fundamentals and building confidence in HTML coding.

What is HTML?

HTML stands for Hypertext Markup Language. It is the standard markup language used to create web pages and other information that can be displayed in a web browser.

HTML uses a set of tags and attributes to structure and present content on the web. These tags and attributes allow developers to add headings, paragraphs, images, links, and other elements to a web page.

Here is an example of HTML code that creates a simple web page with a heading, a paragraph, and an image:

<!DOCTYPE html>

<html>

<head>

<title>My Web Page</title>

</head>

<body>

<h1>Welcome to my web page</h1>

<p>This is a paragraph of text.</p>

<img src="image.jpg" alt="An image">

</body>

</html>

In this example, the <!DOCTYPE html> declaration tells the browser that the document is an HTML5 document. The <html> element is the root element of the document, and all other elements are contained within it.

The <head> element contains metadata about the document, including the page title, which is displayed in the browser's title bar. The <body> element contains the visible content of the document, including the heading, paragraph, and image.

The <h1> element is a heading element, which is used to create a top-level heading on the page. The <p> element is a paragraph element, which is used to create a block of text. The <img> element is an image element, which is used to insert an image into the page. The src attribute specifies the location of the image file, and the alt attribute provides alternative text that is displayed if the image cannot be loaded.

HTML Multiple Choice Questions and Answers PDF

1) There are ___ levels of heading in HTML
a) Three
b) Four
c) Five
d) Six
Ans. d)

2) There are ___ levels of heading in HTML
a) three
b) four
c) five
d) six
Ans. d)

3) The purpose of markup is to 
___
a) add hypertext capabilities
b) enhance the document
c) both A & B
d) none of the above
Ans. c)

4) Which of the following tags do not require a terminator?
a) <u>
b) <br>
c) <b>
d) none of the above
Ans. b)


5) To get the ordered list we use 
___
a) <h1>
b) <ul>
c) <ol>
d) <ml>
Ans. c)

6) For a particular font its size attribute can be an absolute value ranging form
a) 1-10
b) 1-9
c) 1-8
d) 1-7
Ans. a)

7) The Major components of the Web browser are ___
A) Menu Bar.
B) ToolBar.
C) Location
D) All Of the Above.
Ans. D)

8) Which one of the following tags are used to insert graphics in the webpage
a) <image>
b) <images>
c) <img>
d) <graphics>
Ans. c)

9) The following HTML tag is used to display the content as a moving text
a) <marquee>
b) </img>
c) <a href>
d) none of the above
Ans. a)

10) html comment should be enclosed between
a) <!– and — >
b) <! And !>
c) <!— and –“”
d) none of the above
Ans. a)

11) ___ tag is used before the beginning of the paragraph text
a) <textarea>
b) <sup>
c) <p>
d) <h1>
Ans. c)

12) Example of picture editing software is 
___
a) ms paint
b) photoshop
c) animator pro
d) none of the above
Ans. b)

13) CD ROM stands for 
___
a) computer disk read only memory
b) computer disk read out memory
c) compact disk read only memory
d) compact disk read out memory
Ans. c)

14) HTML document have an extension ____
a) .htx or .htxl
b) .htm or .html
c) .hmt or hmtl
d) none of the above
Ans. b)


15) The ___ element can be used to identify your HTML file to the outside world
a) title
b) body
c) head
d) none of the above
Ans. d)

16) The decimal range of network address for the class b network is between 
___
a) 127-190
b) 128-190
c) 128-191
d) 127-255
Ans c)

17) Which of the following tags do not require a terminator
a) <u>
b) <br>
c) <b>
d) none of the above
Ans. b)

18. CGI stands for 
___
A) Command Gate Interface
B) Common Gateway Interface
C) Common Gate input
D) None of the above
Ans. B

19) For a particular font its size attribute can be an absolute value ranging from 
___
A) 1-10
B) 1-9
C) 1-8
D) 1-7
Ans. D

20) Which of the following is true
A) In tables, header cells are centered by default and the data cells are right-aligned.
B) In the case of character formatting the tag <TW> is used for typewriter-like text
C) Unordered list starts with <UL> and ends with <UL>
D) <SUPR> tag is used for superscripts text
Ans. C

21) Which of the following is true?
A) BR tag is used to have a blank line
B) In tables, the header cell is centered by default and the data cells are right-aligned
C) The <TR> is used to create a data cell
D) INPUT tag must have at least 4 attributes
Ans. A

22) Example of a bitmap application is 
___
A) MS paint
B) Photoshop
B) Sound recorder
D) None of the above
Ans. A

23) The ideal rate for animation is 
___
A) 30 Frames/second
B) 20 Frames/second
C) 40 Frames/second
D) None of the above
Ans. A

24) The symbol that identities that HREF attribute as the name of a NAME anchor rather than an address or filename is
A) “&”
B) “$”
C) “#”
D) “!”
Ans. C

25) The purpose of markup is to 
___
A) Add hypertext capabilities
B) Enhance the document
C) Both a) & b)
D) None of the above
Ans. C

26) to get the ordered list we use
A) <HI>
B) <UL>
C) <OL>
D) <ML>
Ans. C

27) HTML is the method where ordinary text can be converted into 
___
A) ASCII Text
B) EBCDIC Text
C) Hypertext
D) None of the above
Ans. C

28). OLE stands for 
___
A) Object-level embedding
B) Object linking and embedding
C) Object-level extraction
D) None of the above
Ans. B

29) Example of picture editing software is 
___
A) MS paint
B) Photoshop
C) Sound recorder
D) None of the above
Ans. B

30) Which of the following tags do not require a terminator?
A) <U>
B) <BR>
C) <B>
D) None of above
Ans. B

31) The tag to give visual division between sections of the page and which causes the browser to draw an embossed line is 
___
A) <HL>
B) <HR>
C) <UR>
D) None of the above
Ans. B

32) Which one of the following tags is used to insert graphics on the web page?
A) <IMAGE>
B) <IMAGES>
C) <IMG>
D) <GRAPHICS>
Ans. C

33) In HTML ____ tag contains the information about the current document such as title etc.
A) Body
B) TD
C) HEAD
D) None of the above
Ans. C

34) Which of the following is false?
A) TYPE and NAME are the attributes of the INPUT tag
B) SCR is a must if UNPUT TYPE is the image
C) POST allows the content of the forms to be passed one element at a time
D) GET allows accepting one element at a time
Ans. D


35) The components of multimedia are 
___
A) Text, pictures, video, sound
B) Text pictures, animation
C) Text, pictures, video, animation, sound
D) None of the above
Ans. C

36) Which of the following is NOT a sound property 
___
A) Asterisk
B) Critical stop
C) Default beep
D) Frame grabber
Ans. C

37. If you want to allow to play music on your web page with Internet Explorer; will not work with people browsing with Netscape.
a) <BGSOUND SRC=sounds.wav loop=infinite>
b) <Bgsound = abc.wav loop =infinite>
c) <background sound= sound.wav loop= infinite >
d) None of the above
Ans. A

38) The application of creative mixer is 
___
A) To control the only output of the audio signal
B) To control only input of the audio signal
C) To control both input and output of the audio signal
D) None of the above
Ans. C

39) JPEG stands for 
___
A) Joint photographic embedded group
B) Joint photographic extended group
C) Joint photographic experts group
D) None of the above
Ans. C

40) Morphing is also related to 
___
A) Text
B) Sound
C) Animation
D) None of the above
Ans. C

41) Minimum main memory required to set up a multimedia computer is 
___
A) 4GB
B) 4MB
C) 200MB
D) 8MB
Ans. D

42) CD-ROM stands for
___
A) Computer disk read-only memory
B) Computer disk readout memory
C) Compact disk read-only memory
D) Compact disk readout memory
Ans. C

43) MIDI stands for 
___
A) Musical interface digital instrument
B) Musical instrument digital interfaces
C) Musical instrument digital input
D) Musical instrument digital instrument
Ans. B

44) TIFF stands for 
___
A) Tagged image file format
B) Textual images file format
C) Tagged image font file
D) None of the above
Ans. A

45) WMF is a 
___
A) Text format
B) Vector format
C) CompuServe
D) None of the above
Ans. B

46) The application of wave studio is 
___
A) Transfer sound information from analog to digital
B) It is used to record play and edits 8-bit or 16-bit wave data
C) Transfer sound information from waveform to avi form
D) None of the above
Ans. B

47) The main factor in the rapid growth of the net was the inclusion of ___ protocol in the Berkely versions of ___
A) TCP/IP, Xenix
B) TCP/IP, Linux
C) TCP/IP, Punix
D) None of the above
Ans. C

48) For abbreviation we can use
a) <abbr> </abbr> tags
b) <acronym> </acronym>
c) Both of the Above.
d) None of the Above.
Ans. C)

49) FTP applications are 
___
A) Used to download and upload files
B) Internet browsers
C) Used to send E-mails
D) Used to chat with other people
Ans. A

50) Which of the following FTP program found in all the Windows systems?
A) WFTP.EXE.
B) FTP.EXE.
C) WSFTP.EXE
D) TFTP.EXE
Ans. B

51) The domain for India is 
___
A) Ind
B) Indi
C) In
D) Indus
Ans. C

52) Modem speeds are measured in 
___
a) BSP
b) BPS
c) BDS
d) none of the above
Ans. B

53) Which of the following is true?
A) TCP/IP account is less expensive than a shell account and does not allow graphics to download.
B) TCP/IP account is more expensive than a shell account and does allow graphics to download.
C) TCP/IP account is more expensive than a shell account and allows graphics to download
D) None of the above
Ans. C

54) DNS server is used for 
___
A) To translate the domain name of another computer into an IP address only
B) To translate the domain name of another computer into an IP address and vice versa on request
C) To translate the IP address to the domain name
D) None of the above
Ans. B

55) The program which can be used to make your computer act as a terminal is 
___
A) Terminal simulation program
B) Terminal emulation program
C) Terminal emulsion program
D) None of the above
Ans. B

56) ___ is widely known as the father of the world wide web
A) Tom Berners-lee
B) Tom bruce-lee
C) Tim bruce-lee
D) Tim Berners-Lee
Ans. D

57) The search engine, lets you search across sites in many languages, ranging from Greek to Hebrew to Estonian.
A) www.isleuth.com.
B) www.altavista.digital.com.
C) www.excite.com.
D) www.yahoo.com.
Ans. B

58) The leading bit pattern for the class c network is 
___
A) 0
B) 10
C) 101
D) None of the above
Ans. D

59) Which of the following is true
A) TCP/IP link allows your computer to function as an internet host
B) Local area network link allows your computer to function as an internet host
C) TCP/IP link does not allow the computer to the internet host
D) Local area network link cannot be used as an intranet host
Ans. A

60) URL is an acronym for 
___
A) Universal research locator
B) Universal resource locator
C) Uniform research locator
D) Uniform resource locator
Ans. D

61) The following is best suitable for the remote administration of a computer
A) WAIS
B) Browsers
C) Telnet
D) None of the above
Ans. C

62) Www.lycos.com was developed by 
___
A) Cambridge University
B) California University
C) Carnegie-Mellon University
D) None of the above
Ans. C

63) Which of the following is not a layer of the OSI reference models
A) Session
B) Data transmission
C) Network
D) Physical
Ans. B

64) ARPA is the acronym for 
___
A) Applied research project agency
B) Advanced remote project agency
C) Applied remote project agency
D) Advanced research project agency
Ans. D

65) VSNL is an acronym for 
___
A) Vishesh Samachar Nigam ltd
B) Virat Sanchar Nigam ltd
C) Videsh Sanchar Nigam ltd
D) Videsh Samachar Nigam ltd
Ans. C

66) TCP is the acronym for 
___
A) Transmission control protocol
B) Transit control protocol
C) Transmission calling protocol
D) None of the above
Ans. A

67) The network address of all ones represents
A) This network
B) All network
C) This node
D) None of the above
Ans. B

68) Most of the E-mail service providers use either ___ or ___ protocol for e-mail
A) X.25, X.500
B) X.50, X.400
C) X.25, X.400
D) None of the above
Ans. C

69) IMAP is an acronym for 
___
A) Internet mail access protocol
B) International mail access protocol
C) Interactive mail access protocol
D) None of the above
Ans. C

70) URI is the acronym for 
___
A) Universal resource identifier
B) Unified resource identifier
C) Universal reference identifier
D) None of the above
Ans. A

71) HTML is acronym for 
___
A) Hypertext marking language
B) Hypertext making language
C) Hypertext markup language
D) Hyper transport markup language
Ans. C

72) The domain name “gov.” stands for 
___
A) U.S.Governmet
B) Any Government
C) Developed nations government
D) None of the above
Ans. A

73) BBS are ventured usually run by 
___
A) Government
B) Institutes
C) Students
D) None of the above
Ans. A

74) Which of the following is not correct in regard to the E-mail system
A) Using encryption you could electronically deliver confidential documents saving time and money
B) Limited only to local area network
C) Cost of sending messages across the world is the same as that of sending across the city
D) If the recipient is not around, the message is delivered to this mailbox
Ans. B

75) Every resource available on the web has an address that may be encoded by a 
___
A) URI
B) HTTP
C) BOTH A) & B)
D) None of the above
Ans. A

76) The actual number of usable classes a network is 
___
A) 127
B) 128
C) 126
D) None of the above
Ans. A

77) In Microsoft Outlook Express, if the same e-mail has to be sent to many addresses what can be done?
A) The addresses are typed in the to box separated by a comma or a colon
B) E_Mail are sent one by one typing the addresses separately
C) Same messages cannot be sent to different users
D) None of the above
Ans. A

78) While sending e-mail addresses typed against BCC receive ___
A) Blank Carbon Copy
B) Block Carbon Copy
C) Blind Carbon Copy
D) None of the above
Ans. C

79) In India E-mail through an Internet service provider is available since 
___
A) August 15, 1994
B) August 14, 1995
C) August 15, 1995
D) August 14, 1996
Ans. C

80) HTTP stands for 
___
A) Hyper Text Transfer Protocol
B) Hyper Text Transfer Process
C) Higher Text Transfer Process
D) None of the above
Ans. A

81) The class B network format is 
___
A) Network. Node. Network. Node
B) Network. Node. Node. Node
C) Network. Network. Network. Node
D) Network. Network. Node. Node
Ans. D

82) POP is an acronym for 
___
A) Process Order Protocol
B) Post Order Protocol
C) Power Order Protocol
D) Post Office Protocol
Ans. D

83) BBS-based message can be echoed across the world through 
___
A) Globalnet
B) Fidonet
C) Didonet
D) Internet
Ans. D

84) E-mail works on 
___
A) Forward and Backward Principle
B) Store and Retrieve Principle
C) Store and Forward Principle
D) Front and Back Principle
Ans. C

85) The Web relies on the following mechanisms to make its resources readily available.
A) A uniform naming scheme
B) Protocols
C) Hypertext
D) All the above.
Ans. B

86) WWW stands for 
___
a) wide world web
b) web world wide
c) world wide web
d) world web wide
Ans. (c)

87) WINS stands for 
___
a) windows intranet named service
b) world internet name server
c) world intranet named service
d) windows internet name service
Ans. (D)

88) SLIP is an acronym for 
___
a) selected line input process
b) selected line inputs provider
c) serial line internet protocol
d) serial line input process
Ans. (c)

89) PPP is an acronym for 
___
a) process to process protocol
b) process to process pointing
c) point to point process
d) point to point protocol
Ans. (d)

90) A modem is used for 
___
a) to connect the local area network to TCP/IP network
b) to connect internet via telephone line
c) to connect internet via satellite
d) all the above
Ans. (D)

91) Which of the following FTP program found in all Windows systems?
a) wftp.exe
b) wsftp.exe
c) ftp.exe
d) tftp.exe
Ans. c)

92) OSI stands for 
___
a) open system interconnect
b) open system interface
c) other system interface
d) none of the above
Ans. b)

93) The domain name for India is 
___
a) ind
b) indi
c) .in
d) India
Ans. c)

94) Which of the following is not a layer of the OSI reference model.
a) Session
b) Data transmission
c) Network
d) Physical
Ans. b)

95) SMTP stands for 
___
a) simple mail transfer protocol
b) single mail transfer protocol
c) sequential mail transfer protocol
d) none of the above
Ans. a)

96) Email works on 
___
a) forward and backward principle
b) store and retrieve principle
c) store and forward principle
d) front and back principle
Ans. a)

97) The domain name “gov” stands for 
___
a) us government
b) any government
c) developed nations' government
d) none of the above
Ans. b)

98) FTP application is
a) internet browsers
b) used to send email
c) used to download and upload files
d) none of the above
Ans. c)

99) HTTP stands for 
___
a) hypertext transfer process
b) hypertext transfer protocol
c) higher text transfer process
d) none of the above
Ans. b)

100) URL is the acronym for 
___
a) Uniform research location.
b) Uniform resource locator
c) Uniform resource location.
d) Uniform resistor locator.
Ans. b)

Conclusion

HTML is a vital tool for constructing websites and applications, and the information presented in this article can be an essential resource for those seeking to learn more about the language.

We trust that you now have a more comprehensive understanding of how HTML functions and can apply it to produce impressive websites.

Remember to hone your coding skills and broaden your expertise by exploring the various types of HTML tags available. With dedication and persistence, anyone can become an HTML master!

Post a Comment

0 Comments