Creative UI/UX Designers Interview Preparation Guide
Optimize your Creative User Interface UX interview preparation with our curated set of 17 questions. Our questions cover a wide range of topics in Creative User Interface UX to ensure youre well-prepared. Whether youre new to the field or have years of experience, these questions are designed to help you succeed. Download the free PDF to have all 17 questions at your fingertips. This resource is designed to boost your confidence and ensure youre interview-ready.17 Creative User Interface UX Questions and Answers:
1 :: Explain Jquery? How Jquery will work?
Jquery is lightweight javascript library file.
Jquery run in all browsers.
Jquery is client side scripting language.
Jquery browser depended framework.
Jquery developed by javascript.
Jquery run in all browsers.
Jquery is client side scripting language.
Jquery browser depended framework.
Jquery developed by javascript.
2 :: How to get value of textbox in jquery?
Include jquery library in the head section of page. Then use below code.
$("#id").val();
jQuery("#id").val();
$("#id").val();
jQuery("#id").val();
3 :: Can we apply css in div element using JQuery library?
This is example to apply css on a div element which have id name myDivId.
$("#myDivId ").css("border","3px solid red");
To apply css on all div elements use below code.$("div").css("border","3px solid red");
Where$("div") pointing all div elements in the page.For You need to use.$("P") on above code.
$("#myDivId ").css("border","3px solid red");
To apply css on all div elements use below code.$("div").css("border","3px solid red");
Where$("div") pointing all div elements in the page.For You need to use.$("P") on above code.
4 :: How to modify css class using JQuery library?
Suppose that Css class has following defination
.class
{
font-size:10px;
font-weight:normal;
color:#000000;
}
now we want to add border property on above class, so we should follow below code.
$(".class").css("border","1px solid blue");
Where $(".class") name of css class. Now .class will automatically add border property in his class definition.
.class
{
font-size:10px;
font-weight:normal;
color:#000000;
}
now we want to add border property on above class, so we should follow below code.
$(".class").css("border","1px solid blue");
Where $(".class") name of css class. Now .class will automatically add border property in his class definition.
5 :: Can we apply css in last child of parent using JQuery library?
$("tr:last").css({backgroundColor: 'yellow', fontWeight: 'bolder'});
6 :: How to apply css in even childs of parent node using JQuery library?
$("tr:even").css("background-color", "#bbbbff");
7 :: How to apply css in odd childs of parent node using JQuery library?
$("tr:odd").css("background-color", "#bbbbff");
8 :: Explain dollar Sign ($) means in JQuery?
Dollar Sign is nothing but it's an alias for JQuery. Take a look at below jQuery code
$(document).ready(function(){
});
Over here $ sign can be replaced with "jQuery " keyword.
jQuery(document).ready(function(){
});
$(document).ready(function(){
});
Over here $ sign can be replaced with "jQuery " keyword.
jQuery(document).ready(function(){
});
9 :: How body onload() function is different from document.ready() function used in jQuery?
Document.ready() function is different from body onload() function because off 2 reasons.
1. We can have more than one document.ready() function in a page where we can have only one onload function.
2. Document.ready() function is called as soon as DOM is loaded where body.onload() function is called when everything gets loaded on the page that includes DOM, images and all associated resources of the page.
1. We can have more than one document.ready() function in a page where we can have only one onload function.
2. Document.ready() function is called as soon as DOM is loaded where body.onload() function is called when everything gets loaded on the page that includes DOM, images and all associated resources of the page.
10 :: What are steps you need to follow to use jQuery in ASP.Net project?
It's really simple. One just need to add reference of javascript file(.js). Go to Jquery.com and download the latest version of jQuery. When download is completed, there is a "jQuery-1.3.2.js" in the folder. Include this file and you good to go now for JQuery.