Click here to Skip to main content
15,868,292 members
Articles / Web Development / HTML5

40 important HTML 5 Interview questions with answers

Rate me:
Please Sign up or sign in to vote.
4.86/5 (112 votes)
24 Sep 2014CPOL13 min read 1.3M   23.3K   200   40
In this article we will quickly brushup 40 important HTML 5 interview questions with answers , Happy job hunting.

Contents

Introduction

What is the difference between Canvas and SVG graphics?

How to draw rectangle using Canvas and SVG using HTML 5 ?

What are selectors in CSS?

How can you apply CSS style using ID value?

What is the use of column layout in CSS?

Can you explain CSS box model?

Can you explain some text effects in CSS 3?

What are web workers and why do we need them ?

How can we add and remove data from local storage?

What is the lifetime of local storage?

What is the difference between local storage and cookies?

What is difference between session storage and local storage?

What is WebSQL?

Is WebSQL a part of HTML 5 specification?

So how can we use WebSQL ?

So how do we implement application cache in HTML 5 ?

What is fallback in Application cache?

References for other interview question articles

Introduction

I am ASP.NET MVC developer and recently when I was looking for a job lot of questions were asked connected to HTML 5 and its new features. So below are 40 important questions which would help you brush up your knowledge on HTML 5.

These questions are not silver bullet to get a job but yes they are helpful when you want to quickly brush up the topic.

Happy job hunting.

Image 1

Courtesy: -www.questpond.com

What is the relationship between SGML,HTML , XML and XHTML?

SGML (Standard generalized markup language) is a standard which tells how to specify document markup. It’s only a Meta language which describes how a document markup should be. HTML is a markup language which is described using SGML.

So by SGML they created DTD which the HTML refers and needs to adhere to the same. So you will always find “DOCTYPE” attribute at the top of HTML page which defines which DTD is used for parsing purpose.

<!--!doctype-->

Now parsing SGML was a pain so they created XML to make things better. XML uses SGML. For example in SGML you have to start and end tags but in XML you can have closing tags which close automatically (“”).

XHTML was created from XML which was used in HTML 4.0. So for example in SGML derived HTML “
” is not valid but in XHTML it’s valid. You can refer XML DTD as shown in the below code snippet.

<!--!doctype--><!--!doctype-->

What is HTML 5?

HTML 5 is a new standard for HTML whose main target is to deliver everything without need to any additional plugins like flash, Silverlight etc. It has everything from animations, videos, rich GUI etc.
HTML5 is cooperation output between World Wide Web Consortium (W3C) and the Web Hypertext Application Technology Working Group (WHATWG).

If I do not put <! DOCTYPE html> will HTML 5 work?

No, browser will not be able to identify that it’s a HTML document and HTML 5 tags will not function properly.

Which browsers support HTML 5?

Almost all browsers i.e. Safari, Chrome, Firefox, Opera, Internet Explorer support HTML 5.

How is the page structure of HTML 5 different from HTML 4 or previous HTML?

A typical web page has headers, footers, navigation, central area and side bars. Now if we want to represent the same in HTML 4 with proper names to the HTML section we would probably use a DIV tag.
But in HTML 5 they have made it more clear by creating element names for those sections which makes your HTML more readable.

Image 2



Below are more details of the HTML 5 elements which form the page structure.

  • <header>: Represents header data of HTML.
  • <footer>: Footer section of the page.
  • <nav>: Navigation elements in the page.
  • <article>: Self-contained content.
  • <section>: Used inside article to define sections or group content in to sections.

What is datalist in HTML 5?

Datalist element in HTML 5 helps to provide autocomplete feature in a textbox as shown below.

Image 3

Below is the HTML code for DataList feature:-

HTML
<input list="Country">
<datalist id="Country">
<option value="India">
<option value="Italy">
<option value="Iran">
<option value="Israel">
<option value="Indonesia">
</datalist> 

What are the different new form element types in HTML 5?

There are 10 important new form elements introduced in HTML 5:-

  1. Color.
  2. Date
  3. Datetime-local
  4. Email
  5. Time
  6. Url
  7. Range
  8. Telephone
  9. Number
  10. Search

Let’s understand these elements step by step.

If you want to show color picker dialog box.

<input type="color" name="favcolor">  


Image 4

If you want to show calendar dialog box.

<input type="date" name="bday">  

Image 5

If you want to show calendar with local time.

<input type="datetime-local" name="bdaytime">  

Image 6

If you want to create a HTML text with email validation we can set the type as “email”.

<input type="email" name="email"> 

Image 7

For URL validation set the type as “url” as shown in the below HTML code.

<input type="url" name="sitename">  

Image 8

For URL validation set the type as “url” as shown in the below HTML code.

If you want to display textbox with number range you can set type to number.

<input type="number" name="quantity" min="1" max="5">  

Image 9

If you want to display a range control you can use type as range.

<input type="range" min="0" max="10" step="2" value="6">

Image 10

Want to make text box as search engine box.

<input type="search" name="googleengine">  

What to only take time input.

<input type="time" name="usr_time">  

If you want to make text box to accept telephone numbers.

<input type="tel" name="mytel">  

What is output element in HTML 5?

Output element is needed when you need calculation from two inputs to be summarized in to a label. For instance you have two textboxes( see the below figure) and you want to add numbers from these textboxes and send them to a label.

Image 11

Below goes the code of how to use output element with HTML 5.

HTML
<form onsubmit="return false"  öninput="o.value = parseInt(a.value) + parseInt(b.value)">
<input name="a" type="number"> +
<input name="b" type="number"> =
<output name="o" />
</form>

You can also replace “parseInt” with “valueAsNumber” for simplicity. You can also use “for” in the output element for more readability.

<output name="o" for="a b"></output>  

What is SVG?

SVG stands for scalable vector graphics. It’s a text based graphic language which draws images using text, lines, dots etc. This makes it lightweight and renders faster.

Can we see a simple example of SVG using HTML 5?

Let’s say we want to display the below simple line using HTML 5 SVG.

Image 12

Below is how the code of HTML 5. You can see the SVG tag which encloses the polygon tag for displaying the star image.

HTML
<svg id="svgelem" height="[object SVGAnimatedLength]" xmlns="http://www.w3.org/2000/svg">
<line style="stroke: rgb(255, 0, 0); stroke-width: 2px;" y2="[object SVGAnimatedLength]" x2="[object SVGAnimatedLength]" y1="[object SVGAnimatedLength]" x1="[object SVGAnimatedLength]">
</line>

What is canvas in HTML 5?

Canvas is an HTML area on which you can draw graphics.

</canvas>

Get access to canvas area

To draw on the canvas area we need to first get reference of the context section. Below is the code for canvas section.

<a a="" below="" body="" c="document.getElementById("mycanvas");" canvas="" complete="" ctx="c.getC>So how can we draw a simple line on Canvas? </a></h2>

<ul>
	<li>Define the Canvas area.</li>
	<li>Get access to canvas context area.</li>
	<li>Draw the graphic.</li>
</ul>

<p><strong>Define the canvas area </strong></p>

<p>So to define canvas area you need to use the below HTML code. This defines the area on which you can draw.</p>

<pre>


<canvas height=">

var c=document.getElementById("mycanvas");
var ctx=c.getContext("2d"); </a>

Draw the graphic

Now once you have access to the context object we can start drawing on the context. So first call the “move” method and start from a point , use line method and draw the line and then apply stroke over it.

<a a="" below="" body="" c="document.getElementById("mycanvas");" canvas="" complete="" ctx="c.getC>So how can we draw a simple line on Canvas? </a></h2>

<ul>
	<li>Define the Canvas area.</li>
	<li>Get access to canvas context area.</li>
	<li>Draw the graphic.</li>
</ul>

<p><strong>Define the canvas area </strong></p>

<p>So to define canvas area you need to use the below HTML code. This defines the area on which you can draw.</p>

<pre>


<canvas height=">
</a><a name="WhatisthedifferencebetweenCanvasandSVGgraphics">What is the difference between Canvas and SVG graphics? </a>

Note: - If you see the previous two questions both canvas and SVG can draw graphics on the browser. So in this question interviewer wants to know when will you use what.

 

SVG

Canvas

Here’s it’s like draw and remember. In other words any shape drawn by using SVG can be remembered and manipulated and browser can render it again. Canvas is like draw and forget. Once something is drawn you cannot access that pixel and manipulate it.
SVG is good for creating graphics like CAD software’s where once something is drawn the user wants to manipulate it. Canvas is good for draw and forget scenarios like animation and games.
This is slow as it needs to remember the co-ordinates for later manipulations. This is faster as there is no intention of remembering things later.
We can have event handler associated with the drawing object. Here we cannot associate event handlers with drawing objects as we do not have reference of them.
Resolution independent. Resolution dependent.

How to draw rectangle using Canvas and SVG using HTML 5?

HTML 5 code Rectangle code using SVG.

HTML
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<rect style="fill: rgb(0, 0, 255); stroke-width: 1px; stroke: rgb(0, 0, 0);" height="[object SVGAnimatedLength]" width="[object SVGAnimatedLength]">
</rect>

HTML 5 Rectangle code using canvas.

HTML
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.rect(20,20,150,100);
ctx.stroke();
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  <circle fill="red" stroke-width="2" stroke="black" r="[object SVGAnimatedLength]" cy="[object SVGAnimatedLength]" cx="[object SVGAnimatedLength]">

var canvas = document.getElementById('myCanvas');
var context = canvas.getContext('2d');
var centerX = canvas.width / 2;
var centerY = canvas.height / 2;
var radius = 70;

context.beginPath();
context.arc(centerX, centerY, radius, 0, 2 * Math.PI, false);
context.fillStyle = 'green';
context.fill();
context.lineWidth = 5;
context.strokeStyle = '#003300';
context.stroke();

<!DOCTYPE html>
<html>
<body  önload="DrawMe();">
<svg height="[object SVGAnimatedLength]" width="[object SVGAnimatedLength]">
<circle id="circle1" cx="[object SVGAnimatedLength]" cy="[object SVGAnimatedLength]" r="[object SVGAnimatedLength]" style="stroke: none; fill: rgb(255, 0, 0);">

</body>
<script>

 var timerFunction = setInterval(DrawMe, 20);
alert("ddd");

function DrawMe()
{
var circle = document.getElementById("circle1");
var x = circle.getAttribute("cx");
var newX = 2 + parseInt(x);
if(newX > 500) 
{
            newX = 20;
}
        circle.setAttribute("cx", newX);

}
</script>
</html></circle>

What are selectors in CSS?

Selectors help to select an element to which you want to apply a style. For example below is a simple style called as ‘intro” which applies red color to background of a HTML element.

<style>
.intro
{
background-color:red;
}
</style> 

To apply the above “intro” style to div we can use the “class” selector as shown in the below figure.

<div class="intro">
<p>My name is Shivprasad koirala.</p>
<p>I write interview questions.</p>
</div> 

How can you apply CSS style using ID value?

So let’s say you have a HTML paragraph tag with id “mytext” as shown in the below snippet.

<p id="mytext">This is HTML interview questions.</p> 

You can create a style using “#” selector with the “id” name and apply the CSS value to the paragraph tag. So to apply style to “mytext” element we can use “#mytext” as shown in the below CSS code.

<style>
#mytext
{
background-color:yellow;
}
</style> 

Quick revision of some important selectors.

Set all paragraph tags back ground color to yellow.

P,h1
{ 
background-color:yellow;
} 

Sets all paragraph tags inside div tag to yellow background.

div p
{ 
background-color:yellow;
} 

Sets all paragraph tags following div tags to yellow background.

div+p
{ 
background-color:yellow;
} 

Sets all attribute with “target” to yellow background.

a[target]
{ 
background-color:yellow;
}

<a href="http://www.questpond.com">ASP.NET interview questions</a>
<a href="http://www.questpond.com" target="_blank">c# interview questions</a>
<a href="http://www.questpond.org" target="_top">.NET interview questions with answers</a> 

Set all elements to yellow background when control gets focus.

input:focus
{ 
background-color:yellow;
} 

Set hyperlinks according to action on links.

a:link    {color:green;}
a:visited {color:green;}
a:hover   {color:red;}
a:active  {color:yellow;} 

What is the use of column layout in CSS?

CSS column layout helps you to divide your text in to columns. For example consider the below magazine news which is one big text but we need to divide the same in to 3 columns with a border in between. That’s where HTML 5 column layout comes to help.

Image 13

To implement column layout we need to specify the following:-

  • How many columns we want to divide the text in to ?

To specify number of columns we need to us column-count. “webkit” and “moz-column” are needed for chrome and firefox respectively.

-moz-column-count:3; /* Firefox */
-webkit-column-count:3; /* Safari and Chrome */
column-count:3; 
  • How much gap we want to give between those columns ?
-moz-column-gap:40px; /* Firefox */
-webkit-column-gap:40px; /* Safari and Chrome */
column-gap:20px; 
  • Do you want to draw a line between those columns , if yes how much thick ?
-moz-column-rule:4px outset #ff00ff; /* Firefox */
-webkit-column-rule:4px outset #ff00ff; /* Safari and Chrome */
column-rule:6px outset #ff00ff; 

Below is the complete code for the same.

<style>
.magazine
{
-moz-column-count:3; /* Firefox */
-webkit-column-count:3; /* Safari and Chrome */
column-count:3;

-moz-column-gap:40px; /* Firefox */
-webkit-column-gap:40px; /* Safari and Chrome */
column-gap:20px;

-moz-column-rule:4px outset #ff00ff; /* Firefox */
-webkit-column-rule:4px outset #ff00ff; /* Safari and Chrome */
column-rule:6px outset #ff00ff;
}
</style> 

You can then apply the style to the text by using the class attribute.

<div class="magazine">

Your text goes here which you want to divide in to 3 columns.

</div> 

Can you explain CSS box model?

CSS box model is a rectangular space around a HTML element which defines border, padding and margin.

Border: - This defines the maximum area in which the element will be contained. We can make the border visible, invisible, define height and width etc.

Padding: - This defines the spacing between border and element.

Margin: - This defines the spacing between border and any neighboring elements.

Image 14

For instance below is a simple CSS code which defines a box with border , padding and margin values.

.box {
    width: 200px;
    border: 10px solid #99c;
    padding: 20px;
    margin: 50px;
} 

Now if we apply the above CSS to a DIV tag as shown in the below code , your output would be as shown in the figure below. I have created two test “Some text” and “Some other text” so that we can see how margin property functions.

<div align="middle" class="box">
Some text
</div>

Some other text 
Image 15

 

Can you explain some text effects in CSS 3?

Here the interviewer is expecting you to answer one of two text effects by CSS.Below are two effects which are worth noting.

Shadow text effect

.specialtext
{
text-shadow: 5px 5px 5px #FF0000;
} 

Image 16

Word wrap effect

<style>
.breakword
{word-wrap:break-word;}
</style> 


Image 17

What are web workers and why do we need them ?

Consider the below heavy for loop code which runs above million times.

function  SomeHeavyFunction()
{
for (i = 0; i < 10000000000000; i++)
{
x = i + x;
}
} 

Let’s say the above for loop code is executed on a HTML button click. Now this method execution is synchronous. In other words the complete browser will wait until the for loop completes.

<input type="button" onclick="SomeHeavyFunction();" />  

This can further lead to browser getting freezed and unresponsive with an error message as shown in the screen below.

Image 18

So if we can move this heavy for loop in a JavaScript file and run it asynchronously that means the browser does need to wait for the loop then we can have a more responsive browser. That’s what web worker are for.

Web worker helps to execute JavaScript file asynchronously.

What is local storage concept in HTML 5?

Many times we would like to store information about the user locally in the computer. For example let’s say user has half-filled a long form and suddenly the internet connection breaks off. So the user would like you to store this information locally and when the internet comes back.He would like to get that information and send it to the server for storage.

Modern browsers have storage called as “Local storage” in which you can store this information.

How can we add and remove data from local storage?

Data is added to local storage using “key” and “value”. Below sample code shows country data “India” added with key value “Key001”.

localStorage.setItem("Key001","India");  

To retrieve data from local storage we need to use “getItem” providing the key name.

var country = localStorage.getItem("Key001"); 

You can also store JavaScript object’s in the local storage using the below code.

var country = {};
country.name = "India";
country.code = "I001";
localStorage.setItem("I001", country);
var country1 = localStorage.getItem("I001"); 

If you want to store in JSON format you can use “JSON.stringify” function as shown in the below code.

localStorage.setItem("I001",JSON.stringify(country));  

What is the lifetime of local storage?

Local storage does not have a life time it will stay until either the user clear it from the browser or you remove it using JavaScript code.

What is the difference between local storage and cookies?

  Cookies Local storage
Client side / Server side. Data accessible both at client side and server side. Cookie data is sent to the server side with every request. Data is accessible only at the local browser side. Server cannot access local storage until deliberately sent to the server via POST or GET.
Size 4095 bytes per cookie. 5 MB per domain.
Expiration Cookies have expiration attached to it. So after that expiration the cookie and the cookie data get’s deleted. There is no expiration data. Either the end user needs to delete it from the browser or programmatically using JavaScript we need to remove the same.
 

What is WebSQL?

WebSQL is a structured relational database at the client browser side. It’s a local RDBMS inside the browser on which you can fire SQL queries.

Is WebSQL a part of HTML 5 specification?

No, many people label it as HTML 5 but it’s not part of HTML 5 specification. The specification is based around SQLite.

So how can we use WebSQL?

The first step we need to do is open the database by using “OpenDatabase” function as shown below. The first argument is the name of the database, the next is the version, then a simple textual title and finally the size of the database.

var db=openDatabase('dbCustomer','1.0','Customer app’, 2 * 1024 * 1024); 

To execute SQL we then need to use “transaction” function and call “executeSql” function to fire SQL.

db.transaction(function (tx) 
{
tx.executeSql('CREATE TABLE IF NOT EXISTS tblCust(id unique, customername)');
tx.executeSql('INSERT INTO tblcust (id, customername) VALUES(1, "shiv")');
tx.executeSql('INSERT INTO tblcust (id, customername) VALUES (2, "raju")');
} 

In case you are firing “select” query you will get data is “results” collection which we can loop and display in the HTML UI.

db.transaction(function (tx) 
{
  tx.executeSql('SELECT * FROM tblcust', [], function (tx, results) {
   for (i = 0; i < len; i++)
{
     msg = "<p><b>" + results.rows.item(i).log + "</b></p>";
     document.querySelector('#customer).innerHTML +=  msg;
}
 }, null);
}); 

What is fallback in Application cache?

<a name="WhatisfallbackinApplicati>FALLBACK:
/home/ /homeoffline.html </a></pre>

<h2><a name=" whatisfallbackinapplicati=""></a>

MVC Interview questions with answers: -http://www.codeproject.com/Articles/556995/MVC-interview-questions-with-answers

Entity framework interview questions with answers: -http://www.codeproject.com/Articles/676309/ADO-NET-Entity-Framework-Interview-Questions

.NET interview questions preparation video series http://www.youtube.com/watch?v=gaDn-sVLj8Q

What kind of questions are asked to .NET developers http://www.youtube.com/watch?v=3PXspVcSSKE

This is a sample .NET mock interview video http://www.youtube.com/watch?v=hPXXCdK7nmk

My site updated with interview questions every day

For further reading do watch the below interview preparation videos and step by step video series.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect https://www.questpond.com
India India

Comments and Discussions

 
QuestionGood Summary Pin
RonDsz31-Dec-13 5:57
RonDsz31-Dec-13 5:57 
GeneralMy vote of 5 Pin
Mohammad Rastkar30-Dec-13 6:58
Mohammad Rastkar30-Dec-13 6:58 
GeneralMy Vote of 5 Pin
Neil Diffenbaugh30-Dec-13 6:33
Neil Diffenbaugh30-Dec-13 6:33 
GeneralMy vote of 5 Pin
Menon Santosh29-Dec-13 17:38
professionalMenon Santosh29-Dec-13 17:38 
GeneralMy vote of 3 Pin
Richard MacCutchan28-Dec-13 0:50
mveRichard MacCutchan28-Dec-13 0:50 
GeneralRe: My vote of 3 Pin
Shivprasad koirala29-Dec-13 0:28
Shivprasad koirala29-Dec-13 0:28 
GeneralRe: My vote of 3 Pin
Richard MacCutchan29-Dec-13 1:17
mveRichard MacCutchan29-Dec-13 1:17 
GeneralMy vote of 4 Pin
Paulo Zemek27-Dec-13 18:03
mvaPaulo Zemek27-Dec-13 18:03 
Very good work. You present valuable information here. I am only voting 4 instead of 5 because I consider "interview question" articles to cause some "damage" as some developers use them to say they know a technology they may have never used before.
GeneralRe: My vote of 4 Pin
Shivprasad koirala27-Dec-13 18:22
Shivprasad koirala27-Dec-13 18:22 
GeneralRe: My vote of 4 Pin
Paulo Zemek27-Dec-13 19:06
mvaPaulo Zemek27-Dec-13 19:06 
GeneralRe: My vote of 4 Pin
Shivprasad koirala29-Dec-13 0:29
Shivprasad koirala29-Dec-13 0:29 
GeneralRe: My vote of 4 Pin
Moykn2-Jan-14 2:08
Moykn2-Jan-14 2:08 
QuestionMy Vote for 5 Pin
dpalash27-Dec-13 6:46
professionaldpalash27-Dec-13 6:46 
GeneralMy vote of 5 Pin
Carsten V2.026-Dec-13 0:03
Carsten V2.026-Dec-13 0:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.