To find question/answers simply use Find (CTRL + F).
Syllabus of the Test
ü HTML 5 Elements and attributes
ü HTML 5 Events
ü HTML 5 syntax
ü HTML 5 Web application APIs
ü Loading HTML 5 Web pages
Question: 01 - Which of the
following <iframe> attributes are NOT supported in HTML 5.0?
a.
height
- marginheight
- sandbox
- scrolling
Question: 2 - Which <body> tag
event is fired when the user leaves the document?
a.
onunload
- onundo
- onredo
- onerror
Question: 03 - Which of the
following is NOT a valid value for the <iframe> sandbox attribute in HTML
5.0?
a.
url
- allow-scripts
- allow-same-origin
- allow-forms
Question: 04 - Which of the
following is an INVALID value for the type attribute of command tag?
a.
checkbox
- radio
- command
- text
Question: 05 - What is the function
of the history traversal task source in HTML 5.0?
a.
It is used for features that react
to user interaction, for example, keyboard or mouse input.
- It is used for features that react to DOM manipulations, for example, the things that happen asynchronously when an element is inserted in the document.
- It is used to queue calls to history.back() and similar APIs.
- All of the above.
Question: 06 - What will be the
result if you use the following code to your HTML 5.0 document?
<p>I use <del>MAC</del> <ins>Microsoft</ins>!</p>/p>
<p>I use <del>MAC</del> <ins>Microsoft</ins>!</p>/p>
a.
I use MAC Microsoft!
- I use MAC Microsoft!
- I
use
MACMicrosoft! - I use MAC Microsoft!
Question: 07 - You want to create a
link for your website allowing users to email the webmaster. How will you
implement this if the webmaster’s email address is webmaster@xcompany.com?
a.
<a
href="mailto:webmaster@xcompany.com" >webmaster</a>
- <a href="webmaster@xcompany.com">webmaster</a>
- <a http="mail:webmaster@xcompany.com">webmaster</a>
- <mail http="send:webmaster@xcompany.com">webmaster</mail>
Question: 08 - In HTML 5.0, how will
the script be executed if you use the script element shown below?
<script src="script.js" type="text/javascript" defer="defer"></script>
<script src="script.js" type="text/javascript" defer="defer"></script>
a.
The script is fetched and executed
immediately, before the user agent continues parsing the page.
- The script will be executed when the page has finished parsing.
- The script will be executed asynchronously, as soon as it is available.
Question: 09 - What is the output
when you use the HTML 5.0 code snippet shown below?
<body onload="alert(this)">
<body onload="alert(this)">
a.
It will alert saying “[object
HTMLBodyElement]" when the document is loaded.
- It will alert saying “[object Window]" when the document is loaded.
- It will alert saying “[this]" when the document is loaded.
- The alert message is not properly defined in the body element and an error will be generated when the document is loaded.
Question: 10 - A computer programming book has to go online. Which of the following tags is ideal for displaying the program snippets?
a.
<emp>
- <code>
- <dfn>
- <cite>
Question: 11 - Consider the above code. What will be the impact upon the contents of the element if both the style sheets define the same class?
This question is based upon the figure shown below:
a.
The contents of the element will be
of red color and will inherit all the effects of style.css.
- The contents of the element will be of blue color and will inherit all the effects of style1.css.
- The contents of the element will be of white color and will inherit all the effects of style.css and style1.css.
- None of the style effects will be applied to the contents of the element.
Question: 12 - Which of the
following are valid HTML 5.0 elements?
a.
<canvas>
- <summary>
- <aside>
- <video>
All are correct
Question: 13 - How does a button
created by the <button> tag differ from the one created by an
<input> tag?
a.
An input
tag button can be a reset button too.
- A button tag button can be a reset button too.
- An input tag button can include images as well.
- A button tag can include images as well.
Question: 14 - Which of the
following attributes comes in handy when borders have to be put between groups
of columns instead of every column?
a.
col
- colgroup
- rowspan
- row
Question: 15 - Which of the
following is correct with regard to the oncanplaythrough event fired by media
resources in the HTML 5.0 document?
a.
The script will run when the media
has reached the end.
- The script will run when the media is played to the end, without stopping for buffering.
- The script will run when media data is loaded.
- The script will run when the length of the media is changed.
Question: 16 - The following link is
placed on an HTML webpage.
<a href="http://msdn.com/" target="_blank"</a>
What do you infer from it?
<a href="http://msdn.com/" target="_blank"</a>
What do you infer from it?
a.
It will open the site msdn.com in
the same window.
- It will open the site msdn.com in a new window.
- It will open the site msdn.com in a frame below.
- It will not be clickable as it is not formed correctly.
Question: 17 - While rendering your
HTML 5.0 web page, which of the following <link> element files will get
skipped by a compliant user agent if you include the link elements shown below
in your document?
<link rel="stylesheet" href="A" type="text/plain"> <link rel="stylesheet" href="B" type="text/css">
<link rel="stylesheet" href="A" type="text/plain"> <link rel="stylesheet" href="B" type="text/css">
a.
A link element whose href is
“B"
- A link element whose href is “A"
- None of the above
Question: 18 - What does the icon
attribute of the HTML 5.0 command tag define?
<command icon="?">Click Me!</command>
<command icon="?">Click Me!</command>
a.
It is used
to define the url of an image to display as the command.
- It is used to define the name of the radiogroup this command belongs to.
- It is used to define if the command is checked or not.
- It is used to define if the command is available or not.
Question: 19 - How will you change
the value of the cookies and items in the Storage objects of the localStorage
attributes in HTML 5.0?
a.
By invoking the
window.dialogArguments() API method.
- By invoking the window. navigator.yieldForStorageUpdates() API method.
- By invoking the window.navigator.appName API method.
Question: 20 - What is the role of
the <dfn> element in HTML 5.0?
a.
It is used to define important text.
- It is used to define computer code text.
- It is used to define sample computer code.
- It is used to define a definition term
Question: 21 - Which of the
following is not a valid input type of the form tag?
a.
checkbox
- image
- hidden
- button
- All are valid
Question: 22 - Which form event is
fired on the click of a button using a button tag with its type attribute value
equal to submit?
a.
onload
- onsubmit
- onunload
- onreset
Question: 23 - How will you return a
reference to the parent of the current window or subframe in an HTML 5.0 web
application?
a.
window.top
- window.parent
- window.frameElement
- None of the above
Question: 24 - In HTML 5.0, which of
the following is NOT a valid value for the type attribute when used with the
<command> tag shown below?
<command type="?">Click Me!</command>
a.
button
- command
- checkbox
- radio
Question: 25 - What is the default
background color for the canvas element in HTML 5.0?
a.
Black
- White
- Transparent
- Gray
Question: 26 - Which of the
following are valid mouse events in HTML 5.0?
a.
ondblclick
- ondragstart
- ondragenter
- onscroll
- ondrop
All are correct
Question: 27 - Which of the
following languages will you use to paint the graphics designed using the HTML
5.0 <canvas> tag?
a.
VB script
- JavaScript
- PostScript
- None of the above
Question: 28 - Consider the
following items of a <select> list:
<option value="89″>Item 1</option>
<option value="90″>Item 2</option>
Which of the following values would be passed on by clicking the submit button on selecting Item 2 from the list?
<option value="89″>Item 1</option>
<option value="90″>Item 2</option>
Which of the following values would be passed on by clicking the submit button on selecting Item 2 from the list?
a.
89
- 90
- Item 1
- Item 2
Question: 29 - Which of the
following would give a yellow background to the web page?
Note: The code used in the “correct" answer below was deprecated in HTML 4.01! Use styles instead for new code.
Note: The code used in the “correct" answer below was deprecated in HTML 4.01! Use styles instead for new code.
a.
<body
backcolor="Yellow">
- <body background="Yellow">
- <body bgcolor="Yellow">
- <body color="Yellow">
Question: 30 - What is the function
of onobsolete, an application cache API method in HTML 5.0?
a.
It reflows the HTML document using
updated cached content.
- It triggers an event when the cache content has been marked as obsolete.
- It triggers an event when the cache content has been updated.
- It updates the cache for the current document in the background.
Question: 31 - Which of the
following represents INVALID syntax for defining an attribute value in an HTML
5.0 document?
a.
<input name =’be evil’ />
- <input name=be evil />
- <input name = “be-evil" />
- All of the above.
Question: 32 - Which of the
following is NOT a valid attribute for the <link> element in HTML 5.0?
a.
hreflang
- rel
- http-equiv
- media
Question: 33 - How will you bind the
datalist option (shown below) with an <input> element, whose type
attribute is set to url, to get the result shown in the image?
This question is based upon the figure shown below:
This question is based upon the figure shown below:
a.
User should define an accept
attribute to the input element whose type is url.
- User should define multiple attribute to the input element whose type is url.
- User should define a list attribute to the input element whose type is url.
- User should define a placeholder attribute to the input element whose type is url.
Question: 34 - Which of the
following statements is correct if you allow the user to select only one radio
button from a group of radio buttons?
a.
The name
of the input tag must be the same for all the radio buttons.
- The value of the input tag must be the same for all the radio buttons.
- The display text of the input tag must be the same for all the radio buttons.
- All the radio buttons must be added to the same group using the <optgroup> tag.
Question: 35 - Which of the
following is an INVALID keyword value for http-equiv attribute when used with
the <meta> element in HTML 5.0?
a.
content-type
- expires
- set-cookie
- keywords
- refresh
- author
Question: 36 - Which media event is
triggered when there is an error in fetching media data in HTML 5.0?
a.
onstalled
- onwaiting
- onsuspend
- oninvalid
Question: 37 - In HTML 5.0, what is
the function of the sandbox attribute when used with <iframe> as shown
below?
<iframe src="aaa " sandbox=?></iframe>
<iframe src="aaa " sandbox=?></iframe>
a.
It is used
to define the restrictions to the frame content.
- It is used to define the URL of the document that should appear in the iframe.
- It is used to specify that an iframe should appear as if it is part of the document the iframe is in.
Question: 38 - Which of the
following is NOT a supported attribute of the <ol> element in HTML 5.0?
a.
type
- reversed
- start
- compact
Question: 39 - When is the window
onstorage event triggered in the HTML document?
a.
It is triggered when the window is
resized.
- It is triggered when a document loads.
- It is triggered when a document performs an undo function.
- It is triggered when the window becomes visible.
Question: 40 - Which of the
following is NOT a valid attribute for the <video> element in HTML 5.0?
a.
controls
- autoplay
- disabled
- preload
Question: 41 - Which of the
following is NOT a valid syntax for the <h1> element in HTML 5.0?
a.
<h1> This is header
1</h1>
- <h1 align="center"> This is header 1</h1>
- <h1 onClick="dothis(‘sc1′)" >This is header </h1>
- <h1 style="cursor:auto;">This is header </h1>
Question: 42 - Which of the
following video file formats are currently supported by the <video>
element of HTML 5.0?
a.
CCTV
- MPEG 4
- Ogg
- 3GPP
0 comments:
Post a Comment