Corporate Training
Request Demo
Click me
Menu
Let's Talk
Request Demo

HTML5 Interview Question and Answers

by Venkatesan M, on Nov 3, 2017 4:03:33 PM

HTML5 interview question and answers

Q1. What is HTML5? Name some of the few features of HTML5.

Ans: xHTML5 is the next major revision of the HTML standard superseding HTML 4.01, XHTML 1.0, and XHTML 1.1. HTML5 is a standard for structuring and presenting content on the World Wide Web. HTML5 introduces a number of new elements and attributes that helps in building a modern websites. Following are great features introduced in HTML5:

  • New Semantic Elements: These are like <header>, <footer>, and <section>.
  • Forms 2.0: Improvements to HTML web forms where new attributes have been introduced for <input> tag.
  • Persistent Local Storage: To achieve without resorting to third-party plugins.
  • WebSocket: A a next-generation bidirectional communication technology for web applications.
  • Server-Sent Events: HTML5 introduces events which flow from web server to the web browsers and they are called Server-Sent Events (SSE).
  • Canvas: This supports a two-dimensional drawing surface that you can program with JavaScript.
  • Audio & Video: You can embed audio or video on your web pages without resorting to third-party plugins.
  • Geolocation: Now visitors can choose to share their physical location with your web application.
  • Microdata: This lets you create your own vocabularies beyond HTML5 and extend your web pages with custom semantics.
  • Drag and drop: Drag and drop the items from one location to another location on a the same webpage.

Q2. Which browsers support HTML5?

Ans: The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many HTML5 features and Internet Explorer 9.0 will also have support for some HTML5 functionality.

The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have excellent support for HTML5.

Q3. Is HTML5 backward compatible with old browsers?

Ans: Yes! HTML5 is designed, as much as possible, to be backward compatible with existing web browsers. New features build on existing features and allow you to provide fallback content for older browsers.

It is suggested to detect support for individual HTML5 features using a few lines of JavaScript.

Q4. Are HTML tags case sensitive?

Ans: No!

Q5. What is the purpose of 'section' tag in HTML5?

Ans: This tag represents a generic document or application section. It can be used together with h1-h6 to indicate the document structure.

Q6. What is the purpose of 'article' tag in HTML5?

Ans: This tag represents an independent piece of content of a document, such as a blog entry or newspaper article.

Q7. What is the purpose of 'aside' tag in HTML5?

Ans: This tag represents a piece of content that is only slightly related to the rest of the page.

Q8. What is the purpose of 'header' tag in HTML5?

Ans: This tag represents the header of a section.

Q9. What is the purpose of 'footer' tag in HTML5?

Ans: This tag represents a footer for a section and can contain information about the author, copyright information, et cetera.

Q10. What is the purpose of 'nav' tag in HTML5?

Ans: This tag represents a section of the document intended for navigation.

Q11. What is the purpose of 'dialog' tag in HTML5?

Ans: This tag can be used to mark up a conversation.

Q12. What is the purpose of 'figure' tag in HTML5?

Ans: This tag can be used to associate a caption together with some embedded content, such as a graphic or video.

Q13. What are custom attributes in HTML5?

Ans: A custom data attribute starts with data- and would be named based on your requirement. Following is the simple example:

<div class="example" data-subject="physics" data-level="complex">

   ...

</div>

The above will be perfectly valid HTML5 with two custom attributes called data-subject and data-level. You would be able to get the values of these attributes using JavaScript APIs or CSS in similar way as you get for standard attributes.

Q14. What is Web Forms 2.0?

Ans: Web Forms 2.0 is an extension to the forms features found in HTML4. Form elements and attributes in HTML5 provide a greater degree of semantic mark-up than HTML4 and remove a great deal of the need for tedious scripting and styling that was required in HTML4.

Q15. What is the purpose of datetime input control in Web form 2.0?

Ans: It represents a date and time (year, month, day, hour, minute, second, fractions of a second) encoded according to ISO 8601 with the time zone set to UTC.

Q16. What is the purpose of datetime-local input control in Web form 2.0?

Ans: It represents a date and time (year, month, day, hour, minute, second, fractions of a second) encoded according to ISO 8601 with no time zone information.

Q17. What is the purpose of date input control in Web form 2.0?

Ans: It represents a date (year, month, day) encoded according to ISO 8601.

Q18. What is the purpose of month input control in Web form 2.0?

Ans: It represents a date consisting of a year and a month encoded according to ISO 8601.

Q19. What is the purpose of week input control in Web form 2.0?

Ans: It represents a date consisting of a year and a week number encoded according to ISO 8601.

Q20. What is the purpose of time input control in Web form 2.0?

Ans: It represents a time (hour, minute, seconds, fractional seconds) encoded according to ISO 8601.

Q21. What is the purpose of number input control in Web form 2.0?

Ans: This control accepts only numerical value. The step attribute specifies the precision, defaulting to 1.

Q22. What is the purpose of range input control in Web form 2.0?

Ans: The range type is used for input fields that should contain a value from a range of numbers.

Q23. What is the purpose of email input control in Web form 2.0?

Ans: This accepts only email value. This type is used for input fields that should contain an e-mail address. If you try to submit a simple text, it forces to enter only email address in email@example.com format.

Q24. What is the purpose of url input control in Web form 2.0?

Ans: This accepts only URL value. This type is used for input fields that should contain a URL address. If you try to submit a simple text, it forces to enter only URL address either in http://www.example.com format or in http://example.com format.

Q25. What is the purpose of 'output' tag in HTML5?

 

Ans: HTML5 introduced a new element <output> which is used to represent the result of different types of output, such as output written by a script.

Q26. What is the purpose of 'placeholder' attribute in HTML5?

Ans: HTML5 introduced a new attribute called placeholder. This attribute on <input> and <textarea> elements provides a hint to the user of what can be entered in the field. The placeholder text must not contain carriage returns or line-feeds.

Q27. What is the purpose of 'autofocus' attribute in HTML5?

Ans: This is a simple one-step pattern, easily programmed in JavaScript at the time of document load, automatically focus one particular form field.

Q28. What is the purpose of 'required' attribute in HTML5?

Ans: HTML5 introduced a new attribute called required which would insist to have a value in an input control.

Q29. Can you use SVG tags directly in HTML5 without any plugin?

Ans: Yes! HTML5 allows embeding SVG directly using <svg>...</svg> tag.

Q30. Can you use MathML tags directly in HTML5 without any plugin? What are the drawbacks of cookies?

Ans: Cookies have following drawbacks:

  • Cookies are included with every HTTP request, thereby slowing down your web application by transmitting the same data.
  • Cookies are included with every HTTP request, thereby sending data unencrypted over the internet.
  • Cookies are limited to about 4 KB of data . Not enough to store required data.

 

Q31. What do you mean by session storage in HTML5?

Ans: HTML5 introduces the sessionStorage attribute which would be used by the sites to add data to the session storage, and it will be accessible to any page from the same site opened in that window i.e. session and as soon as you close the window, session would be lost.

Q32. What do you mean by local storage in HTML5?

Ans: HTML5 introduces the localStorage attribute which would be used to access a page's local storage area without no time limit and this local storage will be available whenever you would use that page.

Q33. When a session storage data gets deleted?

Ans: The Session Storage Data would be deleted by the browsers immediately after the session gets terminated.

Q34. When a local storage data gets deleted?

Ans: Local storage data has no time limit. To clear a local storage setting you would need to call localStorage.remove('key'); where 'key' is the key of the value you want to remove. If you want to clear all settings, you need to call localStorage.clear() method.

Q35. What is Server Side Events in HTML5?

Ans: Along with HTML5, WHATWG Web Applications 1.0 introduces events which flow from web server to the web browsers and they are called Server-Sent Events (SSE). Using SSE you can push DOM events continously from your web server to the visitor's browser.

The event streaming approach opens a persistent connection to the server, sending data to the client when new information is available, eliminating the need for continuous polling.

Server-sent events standardizes how we stream data from the server to the client.

Q36. How to utilize a server-sent event in HTML5?

Ans: To use Server-Sent Events in a web application, you would need to add an <eventsource> element to the document.

The src attribute of <eventsource> element should point to an URL which should provide a persistent HTTP connection that sends a data stream containing the events.

The URL would point to a PHP, PERL or any Python script which would take care of sending event data consistently.

Q37. What are the steps of server side scripts for SSE?

Ans: Server side script should send Content-type header specifying the type text/event-stream as follows:

<span class="kwd">print</span> <span class="str">"Content-Type: text/event-streamnn"</span><span class="pun">;</span>

After setting Content-Type, server side script would send an Event − tag followed by event name. Following example would send Server-Time as event name terminated by a new line character.

<span class="kwd">print</span> <span class="str">"Event: server-timen"</span><span class="pun">;</span>

Final step is to send event data using Data − tag which would be followed by integer of string value terminated by a new line character as follows−

$time = localtime();

print "Data: $time\n";

Q38. What are web sockets?

Ans: Web Sockets is a next-generation bidirectional communication technology for web applications which operates over a single socket and is exposed via a JavaScript interface in HTML 5 compliant browsers.

Once you get a Web Socket connection with the web server, you can send data from browser to server by calling a send() method, and receive data from server to browser by an onmessage event handler.

Following is the API which creates a new WebSocket object.

var Socket = new WebSocket(url, [protocal] );Here first argument, url, specifies the URL to which to connect. The second attribute, protocol is optional, and if present, specifies a sub-protocol that the server must support for the connection to be successful.

Q39. What is the purpose of Socket.readyState atribute of WebSocket?

Ans: The readonly attribute readyState represents the state of the connection. It can have the following values:

  • A value of 0 indicates that the connection has not yet been established.
  • A value of 1 indicates that the connection is established and communication is possible.
  • A value of 2 indicates that the connection is going through the closing handshake.
  • A value of 3 indicates that the connection has been closed or could not be opened.

Q40. What is the purpose of Socket.bufferedAmount atribute of WebSocket?

Ans: The readonly attribute bufferedAmount represents the number of bytes of UTF-8 text that have been queued using send() method.

Q41. What is the purpose of 'canvas' tag in HTML5?

Ans: HTML5 element <canvas> gives you an easy and powerful way to draw graphics using JavaScript. It can be used to draw graphs, make photo compositions or do simple (and not so simple) animations.

Q42. What is the purpose of 'audio' tag in HTML5?

Ans: HTML5 supports <audio> tag which is used to embed sound content in an HTML or XHTML document. The current HTML5 draft specification does not specify which audio formats browsers should support in the audio tag. But most commonly used audio formats are ogg, mp3 and wav.

You can use <source> tag to specify media along with media type and many other attributes. An audio element allows multiple source elements and browser will use the first recognized format.

Q43. What is the purpose of 'video' tag in HTML5?

Ans: HTML5 supports <video> tag which is used to embed a video file in an HTML or XHTML document.The current HTML5 draft specification does not specify which video formats browsers should support in the video tag. But most commonly used video formats are:

  • Ogg: Ogg files with Thedora video codec and Vorbis audio codec.
  • mpeg4: MPEG4 files with H.264 video codec and AAC audio codec.

You can use <source> tag to specify media along with media type and many other attributes. An audio element allows multiple source elements and browser will use the first recognized format.

Q44. What is Geolocation API in HTML?

Ans: HTML5 Geolocation API lets you share your location with your favorite web sites. A Javascript can capture your latitude and longitude and can be sent to backend web server and do fancy location-aware things like finding local businesses or showing your location on a map.

Today most of the browsers and mobile devices support Geolocation API. The geolocation APIs work with a new property of the global navigator object ie. Geolocation object which can be created as follows:

var geolocation = navigator.geolocation;The geolocation object is a service object that allows widgets to retrieve information about the geographic location of the device.

Q45. What is purpose of getCurrentPosition() method of geolocation object of HTML5?

Ans: This method retrieves the current geographic location of the user.

Q46. What is purpose of watchPosition() method of geolocation object of HTML5?

Ans: This method retrieves periodic updates about the current geographic location of the device.

Q47. What is purpose of clearPosition() method of geolocation object of HTML5?

Ans: This method cancels an ongoing watchPosition call.

Q48. What are Web Workers?

Ans: Web Workers do all the computationally expensive tasks without interrupting the user interface and typically run on separate threads.

Web Workers allow for long-running scripts that are not interrupted by scripts that respond to clicks or other user interactions, and allows long tasks to be executed without yielding to keep the page responsive.

Related Interview Questions...

 

Topics:Html5 interview QuestionsInformation Technologies (IT)

Comments

Subscribe

Top Courses in Python

Top Courses in Python

We help you to choose the right Python career Path at myTectra. Here are the top courses in Python one can select. Learn More →

aathirai cut mango pickle

More...