Google News
logo
HTML - Quiz(MCQ)
1 .
Who invented World Wide Web (WWW)?
A)
Blaise Pascal
B)
Charles Babbage
C)
Tim Berners-Lee
D)
Herman Hollerith

Correct Answer : Option (C) :   Tim Berners-Lee

2 .
What does HTML standHome Tool Markup Language for?
A)
Home Tool Markup Language
B)
Hyperlinks and Text Markup LanguageHyper
C)
Hyper Text Markup Language
D)
Hyper Text Markup Link

Correct Answer : Option (C) :   Hyper Text Markup Language

3 .
Who is making the Web standards?
A)
Microsoft
B)
The World Wide Web Consortium
C)
Google
D)
Mozilla

Correct Answer : Option (B) :   World Wide Web

4 .
Choose the correct HTML element for the largest heading:
A)
<h1>
B)
<heading>
C)
<head>
D)
<h6>

Correct Answer : Option (A) :  

<h1>

5 .
What is the correct HTML element for inserting a line break?
A)
<hr>
B)
<br>
C)
<lb>
D)
<break>

Correct Answer : Option (B) :  

<br>

6 .
What is the correct HTML for adding a background color?
A)
<body style="background-color:yellow;">
B)
<background>yellow</background>
C)
<body bg="yellow">
D)
<body color="yellow">

Correct Answer : Option (A) :  

<body style="background-color:yellow;">

7 .
Choose the correct HTML element to define important text
A)
<strong>
B)
<b>
C)
<i>
D)
<important>

Correct Answer : Option (D) :  

<important>

8 .
Choose the correct HTML element to define emphasized text
A)
<i>
B)
<italic>
C)
<em>
D)
Above All

Correct Answer : Option (C) :  

<em>

9 .
How can you open a link in a new tab/browser window?
A)
<a href="url" target="new">
B)
<a href="url" new>
C)
<a href="url" target="_blank">
D)
<a href="url" target="blank">

Correct Answer : Option (C) :  

<a href="url" target="_blank">

10 .
Which of these elements are all <table> elements?
A)
<table><tr><tt>
B)
<table><head><tfoot>
C)
<thead><body><tr>
D)
<table><tr><td>

Correct Answer : Option (D) :  

<table><tr><td>

11 .
How can you make a numbered list?
A)
<ol>
B)
<list>
C)
<dl>
D)
<ul>

Correct Answer : Option (A) :  

<ol>

12 .
How can you make a bulleted list?
A)
<ol>
B)
<ul>
C)
<dl>
D)
<list>

Correct Answer : Option (B) :  

<ul>

13 .
What is the correct HTML for creating a hyperlink?
A)
<a url="http://www.freetimelearning.com">freetimelearning.com</a>
B)
<a>http://www.freetimelearning.com</a>
C)
<a href="http://www.freetimelearning.com">freetimelearning</a>
D)
<a name="http://www.freetimelearning.com">freetimelearning.com</a>

Correct Answer : Option (C) :  

<a href="http://www.freetimelearning.com">freetimelearning</a>

14 .
Which character is used to indicate an end tag?
A)
*
B)
/
C)
^
D)
<

Correct Answer : Option (B) :  

/

15 .
What is the correct HTML for making a checkbox?
A)
<checkbox>
B)
<check>
C)
<input type="check">
D)
<input type="checkbox">

Correct Answer : Option (D) :  

<input type="checkbox">

16 .
What is the correct HTML for making a text input field?
A)
<textfield>
B)
<input type="text">
C)
<textinput type="text">
D)
<input type="textfield">

Correct Answer : Option (B) :  

<input type="text">

17 .
Where we can use <style> tag ?
A)
just in <head> element
B)
just in <body> element
C)
in <head> and in <body> elements
D)
just in <footer> element

Correct Answer : Option (A) :  

just in <head> element

18 .
Which tag would you use to create a hyperlink?
A)
<li>
B)
<img>
C)
<a>
D)
<dl>

Correct Answer : Option (C) :  

<a>

19 .
How to write HTML Comment ?
A)
// This is HTML comment
B)
<!-- This is HTML comment --> ​
C)
// This is HTML comment //
D)
/* This is HTML comment */

Correct Answer : Option (B) :  

<!-- This is HTML comment -->

20 .
Which is not an HTML attribute?
A)
alt
B)
target
C)
fontSize
D)
id

Correct Answer : Option (C) :  

fontSize
 

21 .
What HTML form input should we use to present multiple options, but to select only one?
A)
<input type="text">
B)
<input type="checkbox">
C)
<input type="radio">
D)
<textarea></textarea>

Correct Answer : Option (B) :  

<input type="checkbox">

22 .
What is the HTML form input to use to send the information of the form to the server?
A)
<input type="server">
B)
<input type="send">
C)
<input type="submit">
D)
<input type="mail">

Correct Answer : Option (C) :  

<input type="submit">

23 .
Gif and jpg are the two main types of what ?
A)
outlines
B)
images
C)
animated effects
D)
Style effects

Correct Answer : Option (B) :  

images

24 .
Banners, buttons, dividers, clipart and other simple images usually work best as ?
A)
fonts
B)
gif
C)
jpg
D)
png

Correct Answer : Option (B) :  

gif

25 .
To change the size of an image in HTML use what ?
A)
height and width
B)
pliers
C)
bigger and smaller
D)
Pixels 

Correct Answer : Option (A) :  

height and width

26 .
Adding a border to your image helps the visitor to recognize it as what ?
A)
A Great picture
B)
A Link
C)
A frame
D)
None

Correct Answer : Option (B) :  

A Link

27 .
Using Hspace will add what to your image ?
A)
Space to the top and bottom
B)
Height to all sides
C)
Space to the left and right
D)
Height only top

Correct Answer : Option (C) :  

Space to the left and right

28 .
Rather than using Hspace and Vspace you can use which of the following to add spacing to your image ?
A)
align=+2
B)
height and width
C)
1x1 pixel transparent image
D)
Space Left and Right

Correct Answer : Option (C) :  

1x1 pixel transparent image

29 .
What is the difference between XML and HTML?
A)
XML is used for exchanging data, HTML is not.
B)
HTML is used for exchanging data, XML is not.
C)
HTML can have user defined tags, XML cannot
D)
Both A and C above

Correct Answer : Option (D) :  

Both A and C above

30 .
Hyperlink tag can be applied to :
A)
text
B)
image
C)
video
D)
All   

Correct Answer : Option (D) :   All

31 .
Default size for a text field is around _____________ characters
A)
12
B)
13
C)
14
D)
15

Correct Answer : Option (B) :   13

32 .
What is an iframe?
A)
Divides the page into 2 sections
B)
Is used to create ajax frame
C)
Helps include one webpage into another
D)
iframe is a new style set

Correct Answer : Option (C) :  

Helps include one webpage into another

33 .
Whats is the use of meta tags?
A)
To store information usually relevant to browsers and search engines.
B)
To store information about external links.
C)
To only store information about search engines.
D)
To only store information usually relevant to browsers.

Correct Answer : Option (A) :  

To store information usually relevant to browsers and search engines.

34 .
Each list item in an ordered or unordered list has Which tag ?
A)
<list>
B)
<ol>
C)
<ls>
D)
<li>

Correct Answer : Option (D) :  

<li>

35 .
Which attributes is used to change the number index in tag?
A)
type
B)
header
C)
change
D)
value

Correct Answer : Option (D) :   value

36 .
Which of the following attributes are used for a font name?
A)
@fontname
B)
@font-face
C)
@font
D)
@font-style

Correct Answer : Option (B) :  

@font-face

37 .
What are <div> tags used for?
A)
To logically divide the document
B)
To logically divide the paragraphs
C)
To replace paragraphs.
D)
To provide space between tables

Correct Answer : Option (A) :  

To logically divide the document

38 .
What is cell padding?
A)
Used to set space between cells
B)
The Space between cell walls
C)
To Separate cell walls from their contents.
D)
To provide width to a cell

Correct Answer : Option (C) :  

To Separate cell walls from their contents.

39 .
What attribute is used to specify number of rows?
A)
Rownum
B)
Rowspan
C)
Rownumb
D)
Rowcol

Correct Answer : Option (B) :  

Rowspan

40 .
What is an ISP?
A)
Internal System Program
B)
Internet Service Provider
C)
Internet System Protocol
D)
Internet System Provider

Correct Answer : Option (B) :  

Internet Service Provider

41 .
What is the use of Forms in HTML ?
A)
To display contents of email.
B)
To display animation effect.
C)
To collect user's input.
D)
None of the Above.

Correct Answer : Option (C) :  

To collect user's input.

42 .
FTP is an acronym for
A)
File Transaction Protocol
B)
File Transmission Protocol
C)
File Transfer Protocol
D)
File Translation Protocol

Correct Answer : Option (C) :  

File Transfer Protocol

43 .
What is the correct HTML for inserting a background image?
A)
<body style="background-image:url(image.jpg)">
B)
<background img="image.jpg">
C)
<body bg="image.jpg">
D)
<body background-src="image.jpg">

Correct Answer : Option (A) :  

<body style="background-image:url(image.jpg)">

44 .
How can you create an e-mail link?
A)
<a href="example@gmail.com">
B)
<a href="mailto:example@gmail.com">
C)
<a mailto="example@gmail.com">
D)
<mail>example@gmail.com</mail>

Correct Answer : Option (B) :  

<a href="mailto:example@gmail.com">

45 .
HTML5 browswers will support the following new technology.
A)
CSS 2
B)
PDF 11.1
C)
Macromedia Flash
D)
CSS 3

Correct Answer : Option (C) :  

Macromedia Flash

46 .
What is the correct HTML5 element for playing audio files?
A)
<mp3>
B)
<audio>
C)
<sound>
D)
<music>

Correct Answer : Option (B) :  

<audio>

47 .
What is the correct HTML5 element for playing video files?
A)
<video>
B)
<media>
C)
<movie>
D)
<play>

Correct Answer : Option (A) :  

<video>

48 .
A <!DOCTYPE> defines the document type of any HTML document. It can be of three types:
A)
Strict,Transitional, or Frameset
B)
Strict,Transitional, or Loose
C)
Fixed,Intermediate, or Loose
D)
Fixed, Intermediate, or Frameset

Correct Answer : Option (A) :  

Strict,Transitional, or Frameset

49 .
Which of the following correct syntax of link element?
A)
<link type=" " hrel=" / ">
B)
<link rev=stylesheet type=" ">
C)
<link rel=" " text" ">
D)
<link rel=" " href=" ">

Correct Answer : Option (D) :  

<link rel=" " href=" ">

50 .
Which of the following elements is no longer supported in HTML5?
A)
<base>
B)
<acronym>
C)
<abbr>
D)
<cite>

Correct Answer : Option (B) :  

<acronym>

51 .
In HTML5, onblur and onfocus are :
A)
Event attributes
B)
HTML elements
C)
Style attributes
D)
None of the above

Correct Answer : Option (B) :  

HTML elements

52 .
Which of the following elements is no longer supported in HTML5?
A)
<font>
B)
<menu>
C)
<q>
D)
<ins>

Correct Answer : Option (A) :  

<font>

53 .
Which of the following method cancels an ongoing watchPosition call?
A)
geolocation.getCurrentPosition()
B)
geolocation.watchPosition()
C)
geolocation.clearPosition()
D)
None of the above.

Correct Answer : Option (C) :  

geolocation.clearPosition()

54 .
Which of the following attribute specifies the context menu for an element?
A)
contextmenu
B)
contextcontent
C)
key
D)
context

Correct Answer : Option (A) :  

contextmenu

55 .
Which of the following attribute triggers events when a form gets user input?
A)
onchange
B)
onedit
C)
onformchange
D)
onforminput 

Correct Answer : Option (D) :   onforminput

56 .
Which doctype is correct for HTML5?
A)
<!DOCTYPE HTML5>
B)
<!DOCTYPE html>
C)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN" "http://www.w3.org/TR/html5/strict.dtd">
D)
<html !DOCTYPE>

Correct Answer : Option (B) :  

<!DOCTYPE html>

57 .
The HTML <canvas> element is used to:
A)
create draggable elements
B)
manipulate data in MySQL
C)
draw graphics
D)
display database records

Correct Answer : Option (C) :   draw graphics

58 .
In HTML, which attribute is used to specify that an input field must be filled out?
 
A)
formvalidate
B)
placeholder
C)
required
D)
validate
 

Correct Answer : Option (C) :   required

59 .
Which HTML element is used to display a scalar measurement within a range?
A)
<measure>
B)
<gauge>
C)
<range>
D)
<meter>

Correct Answer : Option (D) :  

<meter>

60 .
In HTML, what does the <aside> element define?
A)
Content aside from the page content
B)
The ASCII character-set; to send information between computers on the Internet
C)
A navigation list to be shown at the left side of the page
D)
Height and Width adjustment

Correct Answer : Option (A) :   Content aside from the page content

61 .
All elements are identified by their __________ and are marked up using either start tags and end tags or self-closing tags.
A)
attribute name
B)
tag name
C)
class name
D)
none of the above

Correct Answer : Option (B) :   tag name

62 .
The __________ element represents a span of text that is isolated from its surroundings for the purposes of bidirectional text formatting.
A)
b
B)
bdi
C)
bdo
D)
base

Correct Answer : Option (B) :   bdi

63 .
_______ element must have a start tag but must not have an end tag.
A)
command
B)
code
C)
details
D)
none of the above

Correct Answer : Option (A) :   command

64 .
Which type attribute of input element sets the element’s value to a string representing a number?
A)
range
B)
email
C)
file
D)
date

Correct Answer : Option (A) :   range

65 .
Which of the following type attributes of input element defines control for entering a telephone number?
A)
mob
B)
mobile
C)
tel
D)
telephone

Correct Answer : Option (C) :   tel

66 .
Which element represents a control for generating a public-private key pair?
A)
ins
B)
keygen
C)
key
D)
command

Correct Answer : Option (B) :   keygen

67 .
Which element represents marked or highlighted text for reference purposes?
A)
highlight
B)
mark
C)
strong
D)
blink

Correct Answer : Option (B) :   mark

68 .
Which element(s) represents a section of a document that links to other documents?
A)
navigation
B)
anchor tag
C)
nav
D)
option

Correct Answer : Option (C) :   nav


Explanation : The nav element represents a section of a page that links to other pages or to parts within the page: a section with navigation links.

69 .
Which of the following element marks the ruby text component of a ruby annotation?
A)
r
B)
rt
C)
ruby
D)
rubytxt

Correct Answer : Option (B) :   rt

70 .
Subtitle tracks and caption tracks to be specified for audio and video elements can be added using which of the following element?
A)
sink
B)
track
C)
stable
D)
caption

Correct Answer : Option (B) :   track

71 .
IDE stands for _____
A)
Internet Development Environment
B)
Integrated Development Environment
C)
Intelligent Development Environment
D)
Integrated Developed Environment

Correct Answer : Option (B) :   Integrated Development Environment

72 .
We can define ________ number of sites with one copy of dreamweaver installed on our computer.
A)
only 1
B)
only 10
C)
only 100
D)
unlimited

Correct Answer : Option (D) :   unlimited

73 .
What should we add to a template in Dreamweaver in order to control where page content goes?
A)
Editable Regions
B)
HTML controllers
C)
Frames
D)
Content Controllers

Correct Answer : Option (A) :   Editable Regions

74 .
The attribute of <form> tag
A)
Method
B)
Action
C)
Both (a)&(b)
D)
None of these

Correct Answer : Option (C) :   Both (a)&(b)

75 .
www is based on which model?
A)
Local-server
B)
Client-server
C)
3-tier
D)
None of these

Correct Answer : Option (B) :   Client-server

76 .
What are Empty elements and is it valid?
A)
No, there is no such terms as Empty Element
B)
Empty elements are element with no data
C)
No, it is not valid to use Empty Element
D)
None of these

Correct Answer : Option (B) :   Empty elements are element with no data

77 .
<DT> tag is designed to fit a single line of our web page but <DD> tag will accept a
A)
line of text
B)
full paragraph
C)
word
D)
request

Correct Answer : Option (B) :   full paragraph

78 .
Character encoding is
A)
method used to represent numbers in a character
B)
method used to represent character in a number
C)
a system that consists of a code which pairs each character with a pattern,sequence of natural numbers or electrical pulse in order to transmit the data
D)
none of the above

Correct Answer : Option (C) :   a system that consists of a code which pairs each character with a pattern,sequence of natural numbers or electrical pulse in order to transmit the data

79 .
From which tag the descriptive list starts?
A)
<LL>
B)
<DD>
C)
<DL>
D)
<DS>

Correct Answer : Option (C) :   <DL>

80 .
A much better approach to establish the base URL is to use
A)
BASE element
B)
HEAD element
C)
both (a) and (b)
D)
none of the above

Correct Answer : Option (A) :   BASE element

81 .
The tag used to create a hypertext relationship between current document and another URL is
A)
<ISINDEX>
B)
<A>
C)
<LINK>
D)
none of the above

Correct Answer : Option (C) :   <LINK>

82 .
Symbol used at the beginning of the HREF text is
A)
#
B)
$
C)
^
D)
&

Correct Answer : Option (A) :   #

83 .
Which Are The Objects Used For Storing Data On The Client Provided By The HTML Local Storage?
A)
Window.localStorage
B)
Window.sessionStorage
C)
Window.localSession
D)
Both A & B

Correct Answer : Option (D) :   Both A & B

84 .
Intensity Of A Color Can Be Described Through
A)
Hue
B)
Saturation
C)
Lightness
D)
Grayscale

Correct Answer : Option (B) :   Saturation

85 .
HTML Web Pages Can Be Read And Rendered By
A)
Compiler
B)
Server
C)
Web Browser
D)
Interpreter

Correct Answer : Option (C) :   Web Browser

86 .
How Can You Make A Bulleted List With Numbers?
A)
<dl>
B)
<list>
C)
<ol>
D)
<ul>

Correct Answer : Option (C) :   <ol>

87 .
Which Of The Following Encoding An XML Parser Assumes ?
A)
UTF-8
B)
UTF-32
C)
UTF-16
D)
Both UTF-8 And UTF-32

Correct Answer : Option (D) :   Both UTF-8 And UTF-32

88 .
The root element of an XHTML document must be html, and must contain an __________ attribute to associate it with the XHTML namespace.
A)
link
B)
xmlns
C)
source
D)
src

Correct Answer : Option (B) :   xmlns


Explanation : The xmlns attribute specifies the xml namespace for a document. It is manadatory in XHTML while in HTML5 it is optional. The root element of an XHTML document must be html, and must contain an xmlns atrribute to associate it with the XHTML namespace.

89 .
_________ is the XML equivalent to strict HTML 4.01.
A)
XHTML 1.0 Transitional
B)
XHTML 1.0 Strict
C)
XHTML 1.0 Frameset
D)
XHTML 1.1 Strict

Correct Answer : Option (B) :   XHTML 1.0 Strict

90 .
The recommended basic size for a favicon is ___________ pixels.
A)
26×26
B)
16×16
C)
48×48
D)
both 16×16 and 48×48

Correct Answer : Option (D) :   both 16×16 and 48×48

91 .
Which image file format is not supported in Firefox?
A)
APNG
B)
SVG
C)
MNG
D)
PNG

Correct Answer : Option (C) :   MNG

92 .
Which attribute is used for favicon?
A)
rel
B)
head
C)
title
D)
icon

Correct Answer : Option (A) :   rel

93 .
Which of the following element is used as a container for content?
A)
<address>
B)
<aside>
C)
<article>
D)
<footer>

Correct Answer : Option (B) :   <aside>

94 .
_________tag is used to specify an inline frame
A)
<jframe>
B)
<frameset>
C)
<iframe>
D)
<frame>

Correct Answer : Option (C) :   <iframe>

95 .
What is mean by DTD?
A)
Document type data
B)
Data type definition
C)
Document type definition
D)
Definition type document

Correct Answer : Option (C) :   Document type definition

96 .
How many graphic object types are allowed by SVG?
A)
2
B)
3
C)
4
D)
5

Correct Answer : Option (B) :   3

97 .
<canvas> element is only a ____________to the graphics.
A)
component
B)
attribute
C)
method
D)
container

Correct Answer : Option (D) :   container

98 .
What is DOM stands for?
A)
Document object model
B)
Data object model
C)
Document Oriented model
D)
Data oriented model

Correct Answer : Option (A) :   Document object model

99 .
HTML is based on which language?
A)
XHTML
B)
XML
C)
SGML
D)
DTD

Correct Answer : Option (C) :   SGML

100 .
HTML5 supports all form controls from HTML4?
A)
Yes
B)
No
C)
--
D)
--

Correct Answer : Option (A) :   Yes

101 .
The __________ is an instruction to the web browser about what version of HTML the page is written in
A)
<!DOCTYPE>
B)
<DOCTYPE>
C)
<TYPE>
D)
<!TYPE>

Correct Answer : Option (A) :   <!DOCTYPE>

102 .
DHTML is the combination of
1)HTML
2)javascript
3)HTML  Dom
4)CSS
A)
1 and 2
B)
3 and 4
C)
all of the above
D)
none of these

Correct Answer : Option (C) :   all of the above

103 .
Frame concept is available in HTML5
A)
Yes
B)
No
C)
--
D)
--

Correct Answer : Option (B) :   No

104 .
Ancestor of all other elements on the page is called________
A)
parent
B)
ancestor
C)
root element
D)
siblings

Correct Answer : Option (D) :   siblings

105 .
Which of the following are not a markup element in html5?
1) <aside>
2) <summary>
3) <progress>
4) <embed>
A)
1
B)
2
C)
3
D)
4

Correct Answer : Option (D) :   <embed>

106 .
Which of the following are input type attribute in html5?
1) search
2) datetime
3) week
4) color
5) track
6) placeholder
A)
1,2,3,4,6
B)
1,2,3,4,5
C)
2,3,4,5,6
D)
1,3,4,5,6

Correct Answer : Option (A) :   1,2,3,4,6

107 .
Canvas is able to draw the 2D graphics using-------
A)
XML
B)
HTML
C)
XHTML
D)
Java script

Correct Answer : Option (D) :   Java script

108 .
What is W3C?
A)
World Wide Web Consortium
B)
world wide web corporation
C)
world wide web company
D)
world wide web controlling

Correct Answer : Option (A) :   World Wide Web Consortium

109 .
What is the correct HTML tag for adding a background color?
A)
<body background=”yellow”>
B)
<background>yellow< backgound>
C)
<bold style=”background-color:white”> 
D)
None of these

Correct Answer : Option (A) :  

<body background=”yellow”>

110 .
Which of the following is not a media element used in html5?
A)
<source>
B)
<audio>
C)
<track>
D)
<time>

Correct Answer : Option (D) :   <time>

111 .
What do you mean by SVG?
A)
Scalable Vector Graphics
B)
Scalable Vertical Graphics 
C)
Scalable Vector Graph
D)
Secondary Vector Graphics

Correct Answer : Option (A) :   Scalable Vector Graphics

112 .
Which of the following term describes the art of making dynamic and interactive web pages?
A)
DHTML
B)
HTML
C)
XHTML
D)
XML

Correct Answer : Option (A) :   DHTML

113 .
The sessionStorage object stores the data for __________
A)
one session
B)
two session
C)
three session
D)
multiple session

Correct Answer : Option (A) :   one session

114 .
Graphics defined by SVG is in_______ format.
A)
HTML
B)
XHTML
C)
XML 
D)
DTD

Correct Answer : Option (C) :   XML 

115 .
If background image is smaller than the screen, what will happen?
A)
It’ll be stretched
B)
It’ll be repeated
C)
It’ll leave blank space at the bottom of page
D)
None of these

Correct Answer : Option (B) :   It’ll be repeated

116 .
which of the following is not true about article element?
A)
Text or embedded content
B)
Both start and end tag are required
C)
can be used to provide author information
D)
ontenteditable attribute can not be used with article element

Correct Answer : Option (D) :   ontenteditable attribute can not be used with article element

117 .
Which attribute will play the audio embed in the audio element continuously?
A)
preload
B)
control
C)
autoplay
D)
loop 

Correct Answer : Option (D) :   loop 

118 .
_____ property returns the url of current audio/video
A)
currentSrc
B)
controls
C)
ended
D)
mediaGroup

Correct Answer : Option (A) :   currentSrc

119 .
Text/Html is called the __________ of the page
A)
content type
B)
MIME type
C)
content type/MIME type
D)
none of the above

Correct Answer : Option (C) :   content type/MIME type

120 .
Which of the following is HTML5-based sketching app that works in all modern browsers?
A)
Muro
B)
hootsuite
C)
X-worlds
D)
csswarp

Correct Answer : Option (A) :   Muro

121 .
Application cache is used for________
1) Offline browsing
2) Speed
3) Reduced server load
A)
1 and 2
B)
2 and 3
C)
all of the above
D)
none of the above

Correct Answer : Option (C) :   all of the above

122 .
Web run on ------------type
A)
content type
B)
MIME
C)
Data type
D)
none of the above

Correct Answer : Option (B) :   MIME

123 .
Height attribute specifies the height of which frame?
A)
iframe
B)
jframe
C)
inline frame
D)
outline frame

Correct Answer : Option (C) :   inline frame

124 .
SVG graphics do not lose quality when they are resized?
A)
True
B)
False
C)
can’t determine
D)
None of these

Correct Answer : Option (A) :   True

125 .
Where does web worker(s) script run?
A)
in foreground
B)
in background
C)
both a and b
D)
None of These

Correct Answer : Option (B) :   in background

126 .
Which attribute allows the inline frame to appear as though it is being rendered as part of the containing document?
A)
sandbox
B)
seamless
C)
src
D)
srcdoc

Correct Answer : Option (B) :   seamless

127 .
If the browser doesn't support the srcdoc attribute, it will use the -------- provided by the src attribute.
A)
URL
B)
source
C)
document
D)
path

Correct Answer : Option (A) :   URL

128 .
Which file is used by the browser to fetch the appropriate data?
A)
Text file
B)
HTML file
C)
XML file
D)
manifest file

Correct Answer : Option (D) :   manifest file

129 .
Target attribute is used for______
A)
opening new document
B)
selecting previous document
C)
deleting frame
D)
None of the above

Correct Answer : Option (A) :   opening new document

130 .
How many browser safe colors are there?
A)
16 Million
B)
216
C)
256
D)
None of the above

Correct Answer : Option (C) :   256

131 .
<output> element represents___________
A)
Authenticate the user
B)
result of a calculation
C)
pre-defined values
D)
none of the above

Correct Answer : Option (B) :  

132 .
In SVG, each drawn shape or figure is considered or remembered as _________
A)
Class
B)
Object
C)
Method
D)
None of the above

Correct Answer : Option (B) :   Object

133 .
__________Function displays the Latitude and Longitude in geoLocation in HTML5.
A)
getLocation()
B)
getCurrentPosition()
C)
getPosition()
D)
getCurrentLocation()

Correct Answer : Option (B) :   getCurrentPosition()

134 .
terminate() method in HTML5 is used for______
A)
terminate everything
B)
terminate all method
C)
terminate a web worker
D)
terminate program

Correct Answer : Option (C) :   terminate a web worker

135 .
If your browser supports HTML 5 microdata API, there will be a _______function on the global document object.
A)
getItems()
B)
getData()
C)
getText()
D)
getContent()

Correct Answer : Option (A) :   getItems()

136 .
The manifest file is _____
A)
Text file
B)
HTML file
C)
XML file
D)
java file

Correct Answer : Option (A) :   Text file