Website Developer

  Home  Web Development  Website Developer


“Website Developer related Frequently Asked Questions by expert members with professional career as Website Developer. These list of interview questions and answers will help you strengthen your technical skills, prepare for the new job interview and quickly revise your concepts”



80 Website Developer Questions And Answers

61⟩ Tell us do you prefer to work alone or on a team?

This is an important question to ask depending on the work environment. If your project is going to require close interaction with other developers it's very handy to have someone who has had that kind of experience. On the other hand, many developers thrive while going solo. Try to find a developer that fits your needs.

 189 views

64⟩ Tell me what Are Different Types Of CSS?

Below are the different types of CSS.

☛ Embedded – It adds the CSS styles using the <style> attribute.

☛ Inline – It adds the CSS to the HTML elements.

☛ Linked/External – It adds an external CSS file to the HTML document.

 194 views

65⟩ Tell me how Does JavaScript Handle Automatic Type Conversion?

As per ECMA Script standard, JavaScript is dynamic as well as weakly typed language with first-class functions which means a function can accept other functions as arguments.

Also, it does support auto-type conversion. Whenever an operator or a statement doesn’t get a value of the expected type, then the conversion takes place automatically.

 188 views

66⟩ Tell me what is the w3c?

Standards compliance in web development is where everything is (hopefully?) going. Don't ask them to recite the w3c's mission statement or anything, but they should at least have a general idea of who they are.

 227 views

67⟩ Can you fix this code, please?

Give them some broken code written in the development language they are expected to know for the position. Have them go through it line by line and point out all the mistakes.

 178 views

68⟩ Tell us how Does Canvas Differ From SVG?

Here are a few points elaborating the differences between Canvas and SVG.

☛ Canvas depends on the resolution whereas SVG doesn’t.

☛ Canvas does not allow event handlers whereas SVG does provide the support for event handlers.

☛ Canvas is ideal for graphic-intensive games whereas SVG doesn’t intend for gaming.

☛ It works well for small rendering areas whereas SVG may perform better for large rendering areas like Google map.

 189 views

69⟩ Tell us what Is Difference Between <Window.Onload> And <OnDocumentReady>?

The <onload> event doesn’t invoke until the page gets finished loading of CSS and images. It could cause a significant delay in rendering of the web page.

As a web developer, we have to ensure the page should load as quick as possible. The event <onDocumentReady> lets us only wait for the DOM to initialize instead of delaying any action required.

 211 views

70⟩ Tell me what Is HTML5 Web Storage?

HTML5 brought this new ability to store web pages within the browser cache. This web storage is not only faster than the cookies but secured too. It is capable of storing a large amount of data without compromising the performance of the website.

Also, note that the cached data is not must for every server request. Instead, it gets utilized only when the page asks for it. And only the web page which gets the data stored can access it.

 190 views

71⟩ Tell us what web browser do you use?

There is a right answer to this question: all of them. A competent developer should be familiar with testing cross-browser compatibility by using all the major web browsers. Obviously they'll have a primary browser they use for surfing, but their answer to this question might be a good way for you to segue to asking how extensively they test cross-browser issues. Also, if it's some kind of css/html position seeing what toolbars they have installed can be a good metric of their skillset.

 178 views

72⟩ Do you know table-less XHTML? Do you validate your code?

Weed out the old-school table-driven design junkies! Find a developer who uses HTML elements for what they were actually intended. Also, many developers will say they can go table-less, but when actually building sites they still use tables out of habit and/or convenience. Possibly draw up a quick navigation menu or article and have them write the markup for it. To be tricky, you could draw up tabular data - give them bonus points if they point out that a table should be used in that scenario :)

 186 views

73⟩ Tell me what Is A Canvas? And What Is Its Default Border Size?

Canvas is an HTML5 element which can draw graphics on the fly with the help of JavaScript. The <canvas> element can only contain graphics. It supports a no. of methods for drawing paths, boxes, circles, text, and images.

By default, It has no border. However, it allows using CSS to change the border style.

 235 views

74⟩ Tell me what Are Transitions In CSS3?

CSS3 transitions help to create easy and fast animation effect. They not only give us control to change the value of a property but also let it proceed slowly for the given duration.

We can use the following CSS properties.

transition, transition-delay, transition-duration, transition-property, and transition-timing-function.

 210 views

76⟩ Tell me what Is A Class Selector?

In CSS, a class selector is an expression which begins with a full stop (“.”) and followed by the name of a class. The class attribute could be a space-separated list of items, and one of those must match with the class name specified in the selector.

Here is an example which selects a div and modified it style.

.sampleclass {font-family: Ariel; font-size: 10; background: green;}

<div class="sampleclass">....</div>

 188 views

77⟩ Explain me how Do You Make Border Rounded With CSS3?

Yes, in CSS3, there is a <border-radius> property which allows creating an element with rounded corners. We can apply the same style to all the sides and make the corners round.

The <border-radius> property has four individual properties <border-top-left-radius>, <border-top-right-radius>, <border-bottom-left-radius> and <border-bottom-right-radius>.

 211 views

80⟩ Tell me what is long polling?

Long polling is a web application development pattern used to emulate pushing data from the server to the client. When the long polling is used, the client sends a request to the server, and the connection remains intact until the server is ready to send data to the client. The connection will be closed only after the data is sent back to the client or connection timeout occurs.

 200 views