Saturday, January 20, 2018

phpMyPassion

Top UI Developer Interview Questions and Answers

Here I am sharing top frequently asked UI Developer interview questions and answers for freshers and experienced. This list of UI developer interview questions and answers will be helpful for UI beginner who just started their career as UI developer, and surely help you during interview session.

Question #1 - What is the difference between html, xhtml, html 4 and html 5? Which one do you use typically?


HTML5 is an upgraded version of html 4 and presented some new features like Audio, Video, Canvas, Drag & Drop, Storage, Geo Location, Web Socket etc and furthermore presented some new html labels, for example, article, area, header, aside and nav and so on which help to make the page design speedier.

XHTML was the cleaner and stricter version of HTML-4. Though HTML5 is the most recent, sharpest, and quickest form of HTML.

I mostly used HTML 5 latest version.
Question #2 - What are the new form attributes in HTML5 ?

Novalidate,placeholder, required, autocomplete, pattern, autofocus, list, multiple, formnovalidate etc


Question #3 - What is SVG?

SVG known as Scalable Vector Graphics, It is an XML based two-dimensional vector graphics image format.
Question #4 - List out some HTML5 tags

header, footer, main, nav, section, article, aside etc.
Question #5 - What is the use of HTML5 Canvas element ?

Canvas used to draw graphics on a web page by the help of javascript.
Question #6 - What is the use of 'placeholder' attribute in HTML5?

It is used to to show some content with in a textbox or textarea and the content will disappear when user begin writing in that box
Question #7 - Is javascript case sensitive?

Yes, Javascript is case sensitive.

Question #8 - What is difference between == and === operator?

== is a comparison operator while === is a hard equality operator. == checks value only while === check value and datatype. 5=="5" id true but 5==="5" is false.

Question #9 - What is an AJAX request and what is a simple example of where a AJAX request would be used.

AJAX known as "Asynchronous JavaScript and XML". It is commonly used client side process to get or post data from remote server without reloading page.

Question #10 - What is Event bubbling and Event Capturing.

Event Propagation are the order that event fire on element. 

Bubbling :-

Bubbling is when a event fire on the element and then bubble up DOM Tree. Means First child and then parent will call. 

Capturing :-

Capturing is exactly opposite. First parent node is called and then propagates down towards target element.

Question #11 - How to get value of input box using jQuery ?

You can get value of input box using below function..

<script>
   $(‘input:textbox’).val();
</script>


Question #12 - how to remove a class in jquery?

You can remove a class form a html element like :-
<p class="perag">This is a paragraph.</p>

<script>
    $("p").removeClass("perag");
</script>
Question #13 - What is a CDN?

Content Delivery Network (CDN) in straightforward terms is a gathering of servers spread over the globe. In other words, a CDN is a system of servers in which each request will go to the nearest server.
Question #14 - What are the features of jQuery, has been used in web applications?

jQuery uses features like Sliding, File uploading and accordian in web applications.
Question #15 - What are the basic selectors in jQuery?

Following are the basic selectors in jQuery:
  • Element ID
  • CSS Name
  • Tag Name
  • DOM hierarchy



About Author -

Hi, I am Anil.

Welcome to my eponymous blog! I am passionate about web programming. Here you will find a huge information on web development, web design, PHP, Python, Digital Marketing and Latest technology.

Subscribe to this Blog via Email :

Note: Only a member of this blog may post a comment.