SlideShare a Scribd company logo
1 of 8
Download to read offline
HTML5 Interview Questions And
       Answers Guide.




             Global Guideline.
       http://www.globalguideline.com/
HTML5 Interview Questions And Answers




                             HTML5 Job Interview Preparation Guide.




Question # 1
What is the status of the development of the HTML 5 standard?
Answer:-
HTML5 is being developed as the next major revision of HTML (HyperText Markup Language), the core markup language of the World Wide Web. The Web
Hypertext Application Technology Working Group (WHATWG) started work on the specification in June 2004 under the name Web Applications 1.0. As of March
2010, the specification is in the Draft Standard state at the WHATWG, and in Working Draft state at the W3C.
Read More Answers.


Question # 2
What are the new APIs provided by the HTML 5 standard? Give a brief description of each
Answer:-
>> The canvas element: Canvas consists of a drawable region defined in HTML code with height and width attributes. JavaScript code may access the area through a
full set of drawing functions similar to other common 2D APIs, thus allowing for dynamically generated graphics. Some anticipated uses of the canvas include
building graphs, animations, games, and image composition.
>> Timed media playback
>> Offline storage database
>> Document editing
>> Drag-and-drop
>> Cross-document messaging
>> Browser history management
>> MIME type and protocol handler registration
Read More Answers.


Question # 3
What purpose does HTML5 serve?
Answer:-
HTML5 is the proposed next standard for HTML 4.01, XHTML 1.0 and DOM Level 2 HTML. It aims to reduce the need for proprietary plug-in-based rich internet
application (RIA) technologies such as Adobe Flash, Microsoft Silverlight, Apache Pivot, and Sun JavaFX.
Read More Answers.


Question # 4
What other advantages does HTML5 have?
Answer:-
>> Cleaner markup
>> Standardized approach to mobile devices support
>> Additional semantics of new elements like <header>, <nav>, and <time>
>> New form input types and attributes that will (and in Opera’s case, do) take the hassle out of scripting forms.
Read More Answers.


Question # 5
WHAT IS THE DIFFERENCE BETWEEN HTML5 APPLICATION CACHE AND REGULATE HTML BROWSER CACHE?
Answer:-
The new HTML5 specification allows browsers to prefetch some or all of a website assets such as HTML files, images, CSS, JavaScript, and so on, while the client is
connected. It is not necessary for the user to have accessed this content previously, for fetching this content. In other words, application cache can prefetch pages that
have not been visited at all and are thereby unavailable in the regular browser cache. Prefetching files can speed up the site’s performance, though you are of course
using bandwidth to download those files initially.
Read More Answers.




Copyright © http://www.GlobalGuideline.COM                                                                                                                 Page 2/8
HTML5 Interview Questions And Answers


Question # 6
WHAT IS HTML5?
Answer:-
HTML5 is the latest version of HTML standard supporting multimedia and graphical content.
Read More Answers.


Question # 7
GIVE AN EXAMPLE OF NEW ELEMENTS IN HTML5 TO SUPPORT MULTIMEDIA AND GRAPHICS?
Answer:-
HTML5 introduced many elements such as , instead of to support multimedia.
Read More Answers.


Question # 8
Explain WHAT OTHER ADVANTAGES DOES HTML5 HAVE?
Answer:-
a) Cleaner markup
b) Additional semantics of new elements like <header>, <nav>, and <time>
c) New form input types and attributes that will (and in Opera’s case, do) take the hassle out of scripting forms.
Read More Answers.


Question # 9
HOW DO YOU PLAY A VIDEO USING HTML5?
Answer:-
We can display video using the tag as shown below:

  <video width=“320&#8243; height=“240&#8243; controls=“controls”>
  <source src=“test.mp4&#8243; type=“video/mp4&#8243; />
  </video>
Read More Answers.


Question # 10
WHAT ARE THE DIFFERENT TYPES OF STORAGE IN HTML5?
Answer:-
HTML5 offers two new objects for storing data on the client:

LocalStorage – stores data with no time limit

  <script type=“text/javascript”>
  localStorage.lastname=“ZAG”;
  document.write(localStorage.lastname);
  </script>

SessionStorage – stores data for one session.The data is deleted when the user closes the browser window.

  <script type=“text/javascript”>
  sessionStorage.lastname=“ZAG”;
  document.write(sessionStorage.lastname);
  </script>
Read More Answers.


Question # 11
HOW DO YOU PLAY A AUDIO USING HTML5?
Answer:-
We can display audio using the tag as shown below:

  <audio controls=“controls”>
  <source src=“test.mp3&#8243; type=“audio/mp3&#8243; />
  </audio>
Read More Answers.


Question # 12
What is the difference between HTMl5 Application cache and regular HTML browser cache?
Answer:-
HTML5 specification allows browsers to prefetch some or all of a website assets such as HTML files, images, CSS, JavaScript, and so on, while the client is
connected. It is not necessary for the user to have accessed this content previously, for fetching this content. In other words, application cache can prefetch pages that
have not been visited at all and are thereby unavailable in the regular browser cache. Prefetching files can speed up the site’s performance, though you are of course
using bandwidth to download those files initially.

Copyright © http://www.GlobalGuideline.COM                                                                                                                 Page 3/8
HTML5 Interview Questions And Answers


Read More Answers.


Question # 13
Tell me What purpose does HTML5 serve?
Answer:-
HTML5 is the proposed next standard for HTML 4.01, XHTML 1.0 and DOM Level 2 HTML. It aims to reduce the need for proprietary plug-in-based rich internet
application (RIA) technologies such as Adobe Flash, Microsoft Silverlight, Apache Pivot, and Sun JavaFX.
Read More Answers.


Question # 14
Can you explain What the use of Canvas Element in HTML5?
Answer:-
The canvas element is used to draw graphics images on a web page by using javascript like below

  <canvas id=“pcdsCanvas” width=“500&#8243; height=“400&#8243;>
  </canvas>
  <script type=“text/javascript”>
  var pcdsCanvas=document.getElementById(“phpzagCanvas”);
  var pcdsText=pcdsCanvas.getContext(“2d”);
  pcdsText.fillStyle=“#82345c”;
  pcdsText.fillRect(0,0,150,75);
  </script>
Read More Answers.


Question # 15
Do you know What is the sessionStorage Object in html5? How to create and access?
Answer:-
The sessionStorage object stores the data for one session. The data is deleted when the user closes the browser window. like below we can create and access a
sessionStorage here we created “name” as session

  <script type=“text/javascript”>
  sessionStorage.name=“PHPZAG”;
  document.write(sessionStorage.name);
  </script>
Read More Answers.


Question # 16
Explain What is the use of localStorage in HTML5?
Answer:-
Before HTML5 LocalStores was done with cookies. Cookies are not very good for large amounts of data, because they are passed on by every request to the server,
so it was very slow and in-effective.

In HTML5, the data is NOT passed on by every server request, but used ONLY when asked for. It is possible to store large amounts of data without affecting the
website’s performance.and The data is stored in different areas for different websites, and a website can only access data stored by itself.

And for creating localstores just need to call localStorage object like below we are storing name and address

  <script type=“text/javascript”>
  localStorage.name=“PHPZAG”;
  document.write(localStorage.name);
  </script>
  <script type=“text/javascript”>
  localStorage.address=“Newyork USA”;
  document.write(localStorage.address);
  </script>
Read More Answers.


Question # 17
Tell me How to add video and audio in HTML5
Answer:-
The canvas element is used to draw graphics images on a web page by using javascript like below

Like below we can add video in html5

  <video width=“320&#8243; height=“240&#8243; controls=“controls”>
  <source src=“mysong.mp4&#8243; type=“video/mp4&#8243; />
  <source src=“mysong.ogg” type=“video/ogg” />
  </video>

And audio like this


Copyright © http://www.GlobalGuideline.COM                                                                                                       Page 4/8
HTML5 Interview Questions And Answers


  <audio controls=“controls”>
  <source src=“mysong.ogg” type=“audio/ogg” />
  <source src=“mysong.mp3&#8243; type=“audio/mpeg” />
  </audio>
Read More Answers.


Question # 18
Tell me Do you know New Input Type Attribute in HTML5
Answer:-
Yes we can use below new input type Attribute in HTML5
Type: Value:
tel The input is of type telephone number
search The input field is a search field
url a URL
email One or more email addresses
datetime A date and/or time
date A date
month A month
week A week
time The input value is of type time
datetime-local A local date/time
number A number
range A number in a given range
color A hexadecimal color, like #82345c
placeholder Specifies a short hint that describes the expected value of an input field
Read More Answers.


Question # 19
Explain What are the New Media Elements in HTML5? is canvas element used in HTML5
Answer:-
Below are the New Media Elements have added in HTML5
Tag Description
<audio> For multimedia content, sounds, music or other audio streams
<video> For video content, such as a movie clip or other video streams
<source> For media resources for media elements, defined inside video or audio
elements
<embed> For embedded content, such as a plug-in
<track> For text tracks used in mediaplayers

yes we can use Canvas element in html5 like <canvas></canvas>
Read More Answers.


Question # 20
Explain How many New Markup Elements you know in HTML5
Answer:-
Below are the New Markup Elements added in HTML5
Tag Description
<article> Specifies independent, self-contained content, could be a news-article, blog post, forum post,
or other articles which can be distributed independently from the rest of the site.
<aside> For content aside from the content it is placed in. The aside content should
be related to the surrounding content
<bdi> For text that should not be bound to the text-direction of its parent elements
<command> A button, or a radiobutton, or a checkbox
<details> For describing details about a document, or parts of a document
<summary> A caption, or summary, inside the details element
<figure> For grouping a section of
stand-alone content, could be a video
<figcaption> The caption of the figure section
<footer> For a footer of a document or section, could include the name of the author, the
date of the document, contact information, or copyright information
<header> For an introduction of a document or section, could include navigation
<hgroup> For a section of headings, using <h1> to <h6>, where the largest is the main
heading of the section, and the others are sub-headings
<mark> For text that should be highlighted
<meter> For a measurement, used only if the maximum and minimum values are known
<nav> For a section of navigation
<progress> The state of a work in progress
<ruby> For ruby annotation (Chinese notes or characters)
<rt> For explanation of the ruby annotation
<rp> What to show browsers that do not support the ruby element
<section> For a section in a document. Such as chapters, headers, footers, or any
other sections of the document
<time> For defining a time or a date, or both
<wbr> Word break. For defining a line-break opportunity.
Read More Answers.


Copyright © http://www.GlobalGuideline.COM                                                                 Page 5/8
HTML5 Interview Questions And Answers


Question # 21
Tell me What is the <!DOCTYPE>? Is it necessary to use in HTML5
Answer:-
The <!DOCTYPE> is an instruction to the web browser about what version of HTML the page is written in. AND The <!DOCTYPE> tag does not have an end tag
and It is not case sensitive.

The <!DOCTYPE> declaration must be the very first thing in HTML5 document, before the <html> tag. As In HTML 4.01, all <! DOCTYPE > declarations require
a reference to a Document Type Definition (DTD), because HTML 4.01 was based on Standard Generalized Markup Language (SGML). WHERE AS HTML5 is not
based on SGML, and therefore does not require a reference to a Document Type Definition (DTD).
Read More Answers.


Question # 22
Explain the difference between HTML and HTML5
Answer:-
HTML5 is nothing more then upgraded version of HTML where in HTML5 Lot of new future like Video, Audio/mp3, date select function , placeholder , Canvas,
2D/3D Graphics, Local SQL Database added so that no need to do external plugin like Flash player or other library
Read More Answers.




Copyright © http://www.GlobalGuideline.COM                                                                                                 Page 6/8
World Wide Web Most Popular Interview Topics.




1 : JavaScript Frequently Asked Interview Questions and Answers Guide.
2 : AJAX Frequently Asked Interview Questions and Answers Guide.
3 : jQuery Frequently Asked Interview Questions and Answers Guide.
4 : Cascading Style Sheet CSS Frequently Asked Interview Questions and
Answers Guide.
5 : Search engine optimization (SEO) Frequently Asked Interview Questions and
Answers Guide.
6 : HTML Frequently Asked Interview Questions and Answers Guide.
7 : Basic Internet Frequently Asked Interview Questions and Answers Guide.
8 : VBScript Frequently Asked Interview Questions and Answers Guide.
9 : Web Developers Frequently Asked Interview Questions and Answers Guide.
10 : Web 2.0 Frequently Asked Interview Questions and Answers Guide.
About Global Guideline.




Global Guideline is a platform to develop your own skills with thousands of job interview questions
and web tutorials for fresher's and experienced candidates. These interview questions and web
tutorials will help you strengthen your technical skills, prepare for the interviews and quickly revise
the concepts. Global Guideline invite you to unlock your potentials with thousands of Interview
Questions with Answers or begin a tutorial right away, such as HTML, XML, XSLT, Cascading
Style Sheet (CSS), Search Engine Optimization (SEO), JavaScript, Structure Query Language (SQL),
Database Articles, Web Hosting Guide and much more. Learn the most common technologies
Interview Questions and Answers. We will help you to explore the resources of the World Wide Web
and develop your own skills from the basics to the advanced. Here you will learn anything quite
easily and you will really enjoy while learning. Global Guideline will help you to become a
professional and Expert, well prepared for the future.

* This PDF was generated from http://www.GlobalGuideline.com at January 29th, 2013

* If any answer or question is incorrect or inappropriate or you have correct answer or you found any
problem in this document then don't hesitate feel free and e-mail us we will fix it.

You can follow us on FaceBook for latest Jobs, Updates and other interviews material.
www.facebook.com/InterviewQuestionsAnswers

Follow us on Twitter for latest Jobs and interview preparation guides
http://twitter.com/InterviewGuide


Best Of Luck.

Global Guideline Team
http://www.globalguideline.com
angelina@globalguideline.com

More Related Content

What's hot

Intro to mobile web application development
Intro to mobile web application developmentIntro to mobile web application development
Intro to mobile web application developmentzonathen
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5Steven Chipman
 
1 Introduction to Drupal Web Development
1 Introduction to Drupal Web Development1 Introduction to Drupal Web Development
1 Introduction to Drupal Web DevelopmentWingston
 
HTML5 Semantics, Accessibility & Forms [Carsonified HTML5 Online Conference]
HTML5 Semantics, Accessibility & Forms [Carsonified HTML5 Online Conference]HTML5 Semantics, Accessibility & Forms [Carsonified HTML5 Online Conference]
HTML5 Semantics, Accessibility & Forms [Carsonified HTML5 Online Conference]Aaron Gustafson
 
Rails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSSRails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSSTimo Herttua
 
0 csc 3311 slide internet programming
0 csc 3311 slide internet programming0 csc 3311 slide internet programming
0 csc 3311 slide internet programmingumardanjumamaiwada
 
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!Evan Mullins
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53Ivy Rueb
 
HTML5 Tags and Elements Tutorial
HTML5 Tags and Elements TutorialHTML5 Tags and Elements Tutorial
HTML5 Tags and Elements TutorialProdigyView
 
Gsm library for proteus the engineering projects
Gsm library for proteus   the engineering projectsGsm library for proteus   the engineering projects
Gsm library for proteus the engineering projectsZerihunDemere
 
SharePoint 2010 Web Standards & Accessibility
SharePoint 2010 Web Standards & AccessibilitySharePoint 2010 Web Standards & Accessibility
SharePoint 2010 Web Standards & AccessibilityMavention
 
HTML5 Smart Markup for Smarter Websites [FoWD NYC 2011]
HTML5 Smart Markup for Smarter Websites [FoWD NYC 2011]HTML5 Smart Markup for Smarter Websites [FoWD NYC 2011]
HTML5 Smart Markup for Smarter Websites [FoWD NYC 2011]Aaron Gustafson
 
Introduction to html 5
Introduction to html 5Introduction to html 5
Introduction to html 5Sayed Ahmed
 
4 internet programming
4 internet programming4 internet programming
4 internet programmingsoner_kavlak
 
Peter lubbers-html5-overview-sf-dev-conf-2011
Peter lubbers-html5-overview-sf-dev-conf-2011Peter lubbers-html5-overview-sf-dev-conf-2011
Peter lubbers-html5-overview-sf-dev-conf-2011Peter Lubbers
 
HTML5 New Features and Resources
HTML5 New Features and ResourcesHTML5 New Features and Resources
HTML5 New Features and ResourcesRon Reiter
 

What's hot (20)

Intro to mobile web application development
Intro to mobile web application developmentIntro to mobile web application development
Intro to mobile web application development
 
Lecture 6 Data Driven Design
Lecture 6  Data Driven DesignLecture 6  Data Driven Design
Lecture 6 Data Driven Design
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5
 
1 Introduction to Drupal Web Development
1 Introduction to Drupal Web Development1 Introduction to Drupal Web Development
1 Introduction to Drupal Web Development
 
HTML5 Semantics, Accessibility & Forms [Carsonified HTML5 Online Conference]
HTML5 Semantics, Accessibility & Forms [Carsonified HTML5 Online Conference]HTML5 Semantics, Accessibility & Forms [Carsonified HTML5 Online Conference]
HTML5 Semantics, Accessibility & Forms [Carsonified HTML5 Online Conference]
 
Html 5 Features And Benefits
Html 5 Features And Benefits  Html 5 Features And Benefits
Html 5 Features And Benefits
 
Rails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSSRails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSS
 
0 csc 3311 slide internet programming
0 csc 3311 slide internet programming0 csc 3311 slide internet programming
0 csc 3311 slide internet programming
 
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53
 
HTML5 Tags and Elements Tutorial
HTML5 Tags and Elements TutorialHTML5 Tags and Elements Tutorial
HTML5 Tags and Elements Tutorial
 
Gsm library for proteus the engineering projects
Gsm library for proteus   the engineering projectsGsm library for proteus   the engineering projects
Gsm library for proteus the engineering projects
 
SharePoint 2010 Web Standards & Accessibility
SharePoint 2010 Web Standards & AccessibilitySharePoint 2010 Web Standards & Accessibility
SharePoint 2010 Web Standards & Accessibility
 
Html 5
Html 5Html 5
Html 5
 
Html5 Basics
Html5 BasicsHtml5 Basics
Html5 Basics
 
HTML5 Smart Markup for Smarter Websites [FoWD NYC 2011]
HTML5 Smart Markup for Smarter Websites [FoWD NYC 2011]HTML5 Smart Markup for Smarter Websites [FoWD NYC 2011]
HTML5 Smart Markup for Smarter Websites [FoWD NYC 2011]
 
Introduction to html 5
Introduction to html 5Introduction to html 5
Introduction to html 5
 
4 internet programming
4 internet programming4 internet programming
4 internet programming
 
Peter lubbers-html5-overview-sf-dev-conf-2011
Peter lubbers-html5-overview-sf-dev-conf-2011Peter lubbers-html5-overview-sf-dev-conf-2011
Peter lubbers-html5-overview-sf-dev-conf-2011
 
HTML5 New Features and Resources
HTML5 New Features and ResourcesHTML5 New Features and Resources
HTML5 New Features and Resources
 

Similar to Html5 guide

IT230-Assignment 1 Solved.pdf
IT230-Assignment 1 Solved.pdfIT230-Assignment 1 Solved.pdf
IT230-Assignment 1 Solved.pdfDark179280
 
Html5 deciphered - designing concepts part 1
Html5 deciphered - designing concepts part 1Html5 deciphered - designing concepts part 1
Html5 deciphered - designing concepts part 1Paxcel Technologies
 
HTML5 Presentation
HTML5 PresentationHTML5 Presentation
HTML5 Presentationvs4vijay
 
Ed presents JSF 2.2 and WebSocket to Gameduell.
Ed presents JSF 2.2 and WebSocket to Gameduell.Ed presents JSF 2.2 and WebSocket to Gameduell.
Ed presents JSF 2.2 and WebSocket to Gameduell.Edward Burns
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5Gil Fink
 
HTML5 introduction for beginners
HTML5 introduction for beginnersHTML5 introduction for beginners
HTML5 introduction for beginnersVineeth N Krishnan
 
HTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentHTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentTilak Joshi
 
HTML5 and Search Engine Optimization (SEO)
HTML5 and Search Engine Optimization (SEO)HTML5 and Search Engine Optimization (SEO)
HTML5 and Search Engine Optimization (SEO)Performics.Convonix
 
Html5 Interview Questions & Answers
Html5 Interview Questions & AnswersHtml5 Interview Questions & Answers
Html5 Interview Questions & AnswersRatnala Charan kumar
 
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるIt is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるSadaaki HIRAI
 
IRJET- HTML5 in Web Development: A New Approach
IRJET- HTML5 in Web Development: A New ApproachIRJET- HTML5 in Web Development: A New Approach
IRJET- HTML5 in Web Development: A New ApproachIRJET Journal
 
WordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebWordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebGeorge Kanellopoulos
 
Thadomal IEEE-HTML5-Workshop
Thadomal IEEE-HTML5-WorkshopThadomal IEEE-HTML5-Workshop
Thadomal IEEE-HTML5-WorkshopRomin Irani
 
Making Of PHP Based Web Application
Making Of PHP Based Web ApplicationMaking Of PHP Based Web Application
Making Of PHP Based Web ApplicationSachin Walvekar
 

Similar to Html5 guide (20)

php
phpphp
php
 
IT230-Assignment 1 Solved.pdf
IT230-Assignment 1 Solved.pdfIT230-Assignment 1 Solved.pdf
IT230-Assignment 1 Solved.pdf
 
Html5 deciphered - designing concepts part 1
Html5 deciphered - designing concepts part 1Html5 deciphered - designing concepts part 1
Html5 deciphered - designing concepts part 1
 
Qnx html5 hmi
Qnx html5 hmiQnx html5 hmi
Qnx html5 hmi
 
HTML5 Presentation
HTML5 PresentationHTML5 Presentation
HTML5 Presentation
 
Ed presents JSF 2.2 and WebSocket to Gameduell.
Ed presents JSF 2.2 and WebSocket to Gameduell.Ed presents JSF 2.2 and WebSocket to Gameduell.
Ed presents JSF 2.2 and WebSocket to Gameduell.
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 
HTML5 introduction for beginners
HTML5 introduction for beginnersHTML5 introduction for beginners
HTML5 introduction for beginners
 
HTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentHTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web Development
 
HTML5 and Search Engine Optimization (SEO)
HTML5 and Search Engine Optimization (SEO)HTML5 and Search Engine Optimization (SEO)
HTML5 and Search Engine Optimization (SEO)
 
Html5 Interview Questions & Answers
Html5 Interview Questions & AnswersHtml5 Interview Questions & Answers
Html5 Interview Questions & Answers
 
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるIt is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
 
IRJET- HTML5 in Web Development: A New Approach
IRJET- HTML5 in Web Development: A New ApproachIRJET- HTML5 in Web Development: A New Approach
IRJET- HTML5 in Web Development: A New Approach
 
Fundamentals of HTML5
Fundamentals of HTML5Fundamentals of HTML5
Fundamentals of HTML5
 
WordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebWordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWeb
 
HTML5 and DHTML
HTML5 and DHTMLHTML5 and DHTML
HTML5 and DHTML
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
 
Thadomal IEEE-HTML5-Workshop
Thadomal IEEE-HTML5-WorkshopThadomal IEEE-HTML5-Workshop
Thadomal IEEE-HTML5-Workshop
 
Making Of PHP Based Web Application
Making Of PHP Based Web ApplicationMaking Of PHP Based Web Application
Making Of PHP Based Web Application
 

Html5 guide

  • 1. HTML5 Interview Questions And Answers Guide. Global Guideline. http://www.globalguideline.com/
  • 2. HTML5 Interview Questions And Answers HTML5 Job Interview Preparation Guide. Question # 1 What is the status of the development of the HTML 5 standard? Answer:- HTML5 is being developed as the next major revision of HTML (HyperText Markup Language), the core markup language of the World Wide Web. The Web Hypertext Application Technology Working Group (WHATWG) started work on the specification in June 2004 under the name Web Applications 1.0. As of March 2010, the specification is in the Draft Standard state at the WHATWG, and in Working Draft state at the W3C. Read More Answers. Question # 2 What are the new APIs provided by the HTML 5 standard? Give a brief description of each Answer:- >> The canvas element: Canvas consists of a drawable region defined in HTML code with height and width attributes. JavaScript code may access the area through a full set of drawing functions similar to other common 2D APIs, thus allowing for dynamically generated graphics. Some anticipated uses of the canvas include building graphs, animations, games, and image composition. >> Timed media playback >> Offline storage database >> Document editing >> Drag-and-drop >> Cross-document messaging >> Browser history management >> MIME type and protocol handler registration Read More Answers. Question # 3 What purpose does HTML5 serve? Answer:- HTML5 is the proposed next standard for HTML 4.01, XHTML 1.0 and DOM Level 2 HTML. It aims to reduce the need for proprietary plug-in-based rich internet application (RIA) technologies such as Adobe Flash, Microsoft Silverlight, Apache Pivot, and Sun JavaFX. Read More Answers. Question # 4 What other advantages does HTML5 have? Answer:- >> Cleaner markup >> Standardized approach to mobile devices support >> Additional semantics of new elements like <header>, <nav>, and <time> >> New form input types and attributes that will (and in Opera’s case, do) take the hassle out of scripting forms. Read More Answers. Question # 5 WHAT IS THE DIFFERENCE BETWEEN HTML5 APPLICATION CACHE AND REGULATE HTML BROWSER CACHE? Answer:- The new HTML5 specification allows browsers to prefetch some or all of a website assets such as HTML files, images, CSS, JavaScript, and so on, while the client is connected. It is not necessary for the user to have accessed this content previously, for fetching this content. In other words, application cache can prefetch pages that have not been visited at all and are thereby unavailable in the regular browser cache. Prefetching files can speed up the site’s performance, though you are of course using bandwidth to download those files initially. Read More Answers. Copyright © http://www.GlobalGuideline.COM Page 2/8
  • 3. HTML5 Interview Questions And Answers Question # 6 WHAT IS HTML5? Answer:- HTML5 is the latest version of HTML standard supporting multimedia and graphical content. Read More Answers. Question # 7 GIVE AN EXAMPLE OF NEW ELEMENTS IN HTML5 TO SUPPORT MULTIMEDIA AND GRAPHICS? Answer:- HTML5 introduced many elements such as , instead of to support multimedia. Read More Answers. Question # 8 Explain WHAT OTHER ADVANTAGES DOES HTML5 HAVE? Answer:- a) Cleaner markup b) Additional semantics of new elements like <header>, <nav>, and <time> c) New form input types and attributes that will (and in Opera’s case, do) take the hassle out of scripting forms. Read More Answers. Question # 9 HOW DO YOU PLAY A VIDEO USING HTML5? Answer:- We can display video using the tag as shown below: <video width=“320&#8243; height=“240&#8243; controls=“controls”> <source src=“test.mp4&#8243; type=“video/mp4&#8243; /> </video> Read More Answers. Question # 10 WHAT ARE THE DIFFERENT TYPES OF STORAGE IN HTML5? Answer:- HTML5 offers two new objects for storing data on the client: LocalStorage – stores data with no time limit <script type=“text/javascript”> localStorage.lastname=“ZAG”; document.write(localStorage.lastname); </script> SessionStorage – stores data for one session.The data is deleted when the user closes the browser window. <script type=“text/javascript”> sessionStorage.lastname=“ZAG”; document.write(sessionStorage.lastname); </script> Read More Answers. Question # 11 HOW DO YOU PLAY A AUDIO USING HTML5? Answer:- We can display audio using the tag as shown below: <audio controls=“controls”> <source src=“test.mp3&#8243; type=“audio/mp3&#8243; /> </audio> Read More Answers. Question # 12 What is the difference between HTMl5 Application cache and regular HTML browser cache? Answer:- HTML5 specification allows browsers to prefetch some or all of a website assets such as HTML files, images, CSS, JavaScript, and so on, while the client is connected. It is not necessary for the user to have accessed this content previously, for fetching this content. In other words, application cache can prefetch pages that have not been visited at all and are thereby unavailable in the regular browser cache. Prefetching files can speed up the site’s performance, though you are of course using bandwidth to download those files initially. Copyright © http://www.GlobalGuideline.COM Page 3/8
  • 4. HTML5 Interview Questions And Answers Read More Answers. Question # 13 Tell me What purpose does HTML5 serve? Answer:- HTML5 is the proposed next standard for HTML 4.01, XHTML 1.0 and DOM Level 2 HTML. It aims to reduce the need for proprietary plug-in-based rich internet application (RIA) technologies such as Adobe Flash, Microsoft Silverlight, Apache Pivot, and Sun JavaFX. Read More Answers. Question # 14 Can you explain What the use of Canvas Element in HTML5? Answer:- The canvas element is used to draw graphics images on a web page by using javascript like below <canvas id=“pcdsCanvas” width=“500&#8243; height=“400&#8243;> </canvas> <script type=“text/javascript”> var pcdsCanvas=document.getElementById(“phpzagCanvas”); var pcdsText=pcdsCanvas.getContext(“2d”); pcdsText.fillStyle=“#82345c”; pcdsText.fillRect(0,0,150,75); </script> Read More Answers. Question # 15 Do you know What is the sessionStorage Object in html5? How to create and access? Answer:- The sessionStorage object stores the data for one session. The data is deleted when the user closes the browser window. like below we can create and access a sessionStorage here we created “name” as session <script type=“text/javascript”> sessionStorage.name=“PHPZAG”; document.write(sessionStorage.name); </script> Read More Answers. Question # 16 Explain What is the use of localStorage in HTML5? Answer:- Before HTML5 LocalStores was done with cookies. Cookies are not very good for large amounts of data, because they are passed on by every request to the server, so it was very slow and in-effective. In HTML5, the data is NOT passed on by every server request, but used ONLY when asked for. It is possible to store large amounts of data without affecting the website’s performance.and The data is stored in different areas for different websites, and a website can only access data stored by itself. And for creating localstores just need to call localStorage object like below we are storing name and address <script type=“text/javascript”> localStorage.name=“PHPZAG”; document.write(localStorage.name); </script> <script type=“text/javascript”> localStorage.address=“Newyork USA”; document.write(localStorage.address); </script> Read More Answers. Question # 17 Tell me How to add video and audio in HTML5 Answer:- The canvas element is used to draw graphics images on a web page by using javascript like below Like below we can add video in html5 <video width=“320&#8243; height=“240&#8243; controls=“controls”> <source src=“mysong.mp4&#8243; type=“video/mp4&#8243; /> <source src=“mysong.ogg” type=“video/ogg” /> </video> And audio like this Copyright © http://www.GlobalGuideline.COM Page 4/8
  • 5. HTML5 Interview Questions And Answers <audio controls=“controls”> <source src=“mysong.ogg” type=“audio/ogg” /> <source src=“mysong.mp3&#8243; type=“audio/mpeg” /> </audio> Read More Answers. Question # 18 Tell me Do you know New Input Type Attribute in HTML5 Answer:- Yes we can use below new input type Attribute in HTML5 Type: Value: tel The input is of type telephone number search The input field is a search field url a URL email One or more email addresses datetime A date and/or time date A date month A month week A week time The input value is of type time datetime-local A local date/time number A number range A number in a given range color A hexadecimal color, like #82345c placeholder Specifies a short hint that describes the expected value of an input field Read More Answers. Question # 19 Explain What are the New Media Elements in HTML5? is canvas element used in HTML5 Answer:- Below are the New Media Elements have added in HTML5 Tag Description <audio> For multimedia content, sounds, music or other audio streams <video> For video content, such as a movie clip or other video streams <source> For media resources for media elements, defined inside video or audio elements <embed> For embedded content, such as a plug-in <track> For text tracks used in mediaplayers yes we can use Canvas element in html5 like <canvas></canvas> Read More Answers. Question # 20 Explain How many New Markup Elements you know in HTML5 Answer:- Below are the New Markup Elements added in HTML5 Tag Description <article> Specifies independent, self-contained content, could be a news-article, blog post, forum post, or other articles which can be distributed independently from the rest of the site. <aside> For content aside from the content it is placed in. The aside content should be related to the surrounding content <bdi> For text that should not be bound to the text-direction of its parent elements <command> A button, or a radiobutton, or a checkbox <details> For describing details about a document, or parts of a document <summary> A caption, or summary, inside the details element <figure> For grouping a section of stand-alone content, could be a video <figcaption> The caption of the figure section <footer> For a footer of a document or section, could include the name of the author, the date of the document, contact information, or copyright information <header> For an introduction of a document or section, could include navigation <hgroup> For a section of headings, using <h1> to <h6>, where the largest is the main heading of the section, and the others are sub-headings <mark> For text that should be highlighted <meter> For a measurement, used only if the maximum and minimum values are known <nav> For a section of navigation <progress> The state of a work in progress <ruby> For ruby annotation (Chinese notes or characters) <rt> For explanation of the ruby annotation <rp> What to show browsers that do not support the ruby element <section> For a section in a document. Such as chapters, headers, footers, or any other sections of the document <time> For defining a time or a date, or both <wbr> Word break. For defining a line-break opportunity. Read More Answers. Copyright © http://www.GlobalGuideline.COM Page 5/8
  • 6. HTML5 Interview Questions And Answers Question # 21 Tell me What is the <!DOCTYPE>? Is it necessary to use in HTML5 Answer:- The <!DOCTYPE> is an instruction to the web browser about what version of HTML the page is written in. AND The <!DOCTYPE> tag does not have an end tag and It is not case sensitive. The <!DOCTYPE> declaration must be the very first thing in HTML5 document, before the <html> tag. As In HTML 4.01, all <! DOCTYPE > declarations require a reference to a Document Type Definition (DTD), because HTML 4.01 was based on Standard Generalized Markup Language (SGML). WHERE AS HTML5 is not based on SGML, and therefore does not require a reference to a Document Type Definition (DTD). Read More Answers. Question # 22 Explain the difference between HTML and HTML5 Answer:- HTML5 is nothing more then upgraded version of HTML where in HTML5 Lot of new future like Video, Audio/mp3, date select function , placeholder , Canvas, 2D/3D Graphics, Local SQL Database added so that no need to do external plugin like Flash player or other library Read More Answers. Copyright © http://www.GlobalGuideline.COM Page 6/8
  • 7. World Wide Web Most Popular Interview Topics. 1 : JavaScript Frequently Asked Interview Questions and Answers Guide. 2 : AJAX Frequently Asked Interview Questions and Answers Guide. 3 : jQuery Frequently Asked Interview Questions and Answers Guide. 4 : Cascading Style Sheet CSS Frequently Asked Interview Questions and Answers Guide. 5 : Search engine optimization (SEO) Frequently Asked Interview Questions and Answers Guide. 6 : HTML Frequently Asked Interview Questions and Answers Guide. 7 : Basic Internet Frequently Asked Interview Questions and Answers Guide. 8 : VBScript Frequently Asked Interview Questions and Answers Guide. 9 : Web Developers Frequently Asked Interview Questions and Answers Guide. 10 : Web 2.0 Frequently Asked Interview Questions and Answers Guide.
  • 8. About Global Guideline. Global Guideline is a platform to develop your own skills with thousands of job interview questions and web tutorials for fresher's and experienced candidates. These interview questions and web tutorials will help you strengthen your technical skills, prepare for the interviews and quickly revise the concepts. Global Guideline invite you to unlock your potentials with thousands of Interview Questions with Answers or begin a tutorial right away, such as HTML, XML, XSLT, Cascading Style Sheet (CSS), Search Engine Optimization (SEO), JavaScript, Structure Query Language (SQL), Database Articles, Web Hosting Guide and much more. Learn the most common technologies Interview Questions and Answers. We will help you to explore the resources of the World Wide Web and develop your own skills from the basics to the advanced. Here you will learn anything quite easily and you will really enjoy while learning. Global Guideline will help you to become a professional and Expert, well prepared for the future. * This PDF was generated from http://www.GlobalGuideline.com at January 29th, 2013 * If any answer or question is incorrect or inappropriate or you have correct answer or you found any problem in this document then don't hesitate feel free and e-mail us we will fix it. You can follow us on FaceBook for latest Jobs, Updates and other interviews material. www.facebook.com/InterviewQuestionsAnswers Follow us on Twitter for latest Jobs and interview preparation guides http://twitter.com/InterviewGuide Best Of Luck. Global Guideline Team http://www.globalguideline.com angelina@globalguideline.com