UI Developer Questionnaire Welcome to your UI Developer Questionnaire The questionnaire needs to be completed in 30 minutes. Full Name Email Address English Fluency Assessment > This general assessment has been designed to help us decide what level of fluency you possess in English, which is essential for all communication. I'm from Pune. ____________ is in Maharastra. They It He She Excuse Me. How _________ your last name? K-A-R-A-N Spell you spell do you spell spell you I'd like ________ omelette, please. A __ an two My name's Pete and this is Sylvia. ________ doctors from France. I'm We're She's They're Sorry, ________ Vaibhav. My name's Aman. I isn't I is not I aren't I 'm not I go to work ________ train. With by for in She ________ a dog. not have don't have don't has doesn't have Stephan ________ in our company. Work works is work working ________ they live in London? Are Is Do Does When do you play tennis? ________ Mondays. On In At By What time ________ work? starts he do he starts does he starts does he start ________ two airports in the city. It is There is There are This is ________ at school last week? Do you were Was you Were you You were Brad Pitt is a popular actor but I don't like ________ . him his her them We ________ the film last week. see saw sees were see He ________ tennis with me yesterday. doesn't played didn't played not played didn't play She was born ________ May 6th, 1979. in at on from Where ________ last summer? you went did you went do you went did you go Were you at the shop at 5 p.m. yesterday? No, I ________ . didn't am not wasn't weren't Excuse me, ________ is the T-shirt? It's 699/- what expensive how much how many how price UI Developer Questionnaire > These questions are to assess your knowledge as a UI Developer. The minimum HTML elements needed for an HTML document are html, body, head, title body, header, footer doctype, html, body, head None of the above HTML stand for Hypermark Language Hypermix language Hypertext Markup Language Hypertension Language Which attribute set the text direction? dir lang direction sub HTML need a compiler True False HTML is subset of which of the following? GHL SHL SGHL SGML Which of the following is the attribute that is used to set a global identifier for a microdata item? id item itemid key In JavaScript what does x===y statement implies? Both x and y are equal in value, type and reference address as well Both are equal in the value and data type Both are x and y are equal in value only Both are not same at all Which is not valid data type in Javascript? Add description here! Undefined Boolean Float Number What is the output? int a==2;int b=4;int ans=a+b;print(ans); 2 6 error 0 What will be the output of console.log("one"<8); True False Which one of the following is correct output for the following code? var obj = { length:20, height:35,}if('breath' in obj === false) { obj.breadth = 12;}console.log(obj.breadth); Error Undefined 12 20 What will be the output of the following code? function getHeightType() { var height = 123.56; var type = (height>=190)?"Taller":"Little short"; return type;}var heightType = getHeightType();console.log(heightType); 123.56 Taller 190 Little short Which of the following selector selects all elements of E that have the attribute attr that end with the given value? E[attr^=value] E[attr$=value] E[attr*=value] None of the above Which of the following selector selects an element that has no children? :empty :nochild :inheritance :no-child Which of the following selector selects elements that do not match the selector s? :!(s) :nth-child(s) :not(s) None of the above Which of the following selectors selects adjacent siblings? E > F E F E + F E ~ F What will be the output of below mentioned code snippet? p strong {background-color: yellow;} Strong have yellow background Strong element within a p element have a yellow background Both p and strong have yellow background None of the above What is Callback? Callback is a technique in which a method call back the caller method Callback is an synchronous equivalent for a function Both of the above None of the above Which of the following is a utility function in jQuery? Add description here! jQuery.each() jQuery.parseJSON() jQuery.noConflict() jQuery.Conflict() Which built-in method returns the character at the specified index? characterAt() getCharAt() charAt() None of the above Which of the following jQuery method checks the current selection against an expression? getIs( selector ) is( selector ) checkIs( selector ) None of the above Which jQuery method is used to perform an asynchronous HTTP request? jQuery.ajaxAsync() jQuery.ajaxSetup() jQuery.ajax() None of the above The CSS property used to set the distance between the borders of the adjacent cells in the table is border-collapse border-radius border-spacing None of the above Which of the following is the correct syntax to select the p siblings of a div element? Add description here! p div + p div p div ~ p The primary purpose of the array map() function is that it passes each element of the array and returns the necessary mapped elements passes each element of the array on which it is invoked to the function you specify, and returns an array containing the values returned by that function maps the elements of another array into itself None of the above Which of the following is not a type of combinator? > ~ + * Which if the following CSS function allows us to perform calculations? calc() function calculator() function calculate() function cal() function What will happen if we execute the following code of JavaScript? vartensquared=(function(x){return x*x;}(10)); Memory leak Error Exception will be thrown Will work perfectly If the following lines of code differ, what is the difference? Code A !!(obj1 && obj2); Code B (obj1 && obj2); The first line results in a realBoolean value whereas the second line merely checks for the existence of the objects Both the lines of code A and B will result in a Boolean value "False" Both the lines of code A and B will check just for the existence of the object alone Both the lines of code A and B will result in a Boolean value "True" What will be the correct output of the following JavaScript code - Math.atan2(8,4)? 1.01 1.10 1.05 1.11 The CSS property used to specify the order of flex item in the grid container is order property float property overflow property None of the above Which of the following method is used to toggle between the fadeIn() method and fadeOut() method? toggle() method fadeToggle() method slideToggle() method animate() method The correct syntax for selecting the first paragraph element with id p1 is $("p.p1:first") $("p#p1:first") $("p1#p:first") None of the above