Ui Developer Interview Questions

3K

Ui Developer interview questions shared by candidates

Top Interview Questions

Sort: Relevance|Popular|Date
Barco
UI Developer was asked...August 19, 2017

Reverse a string of words "Hi I am John" as "John am I Hi" without using array functions like split , reverse or join?

5 Answers

tail recursive algo

str1 = "Hi abc tm" len1 = len(str1) ln = len1 space = " " str3 = [] cnt = 0 while len1 !=0: if str1[len1-1]!=" ": len1 = len1-1 cnt = cnt + 1 if str1[len1-1]==" ": len2 = ln-cnt while len2 != ln: if str1[len2] != " ": print(str1[len2],end="") len2 = len2 + 1 else: break print(space,end="") cnt = cnt + 1 len1 = len1-1 len2 = ln-cnt while len2 != ln: if str1[len2] != " ": print(str1[len2],end="") len2 = len2 + 1 else: break Less

In Core Javascript const str = 'Hi I am John" as "John am I Hi'; const reverseString = () => { let temp = ""; for (let i = str.length; i >= 0; i--) { temp += str.charAt(i); } return temp; }; console.log(reverseString()); Less

Show more responses
Directi

#abc > ul.item li span + a Structure of the above selector

4 Answers

<div> <ul> <li></li> </ul> </div>

<div> <ul> <li> </li> </ul></div>

<div> <ul> <li></li> </ul> </div>

Show more responses
ValueLabs

You have two methods: one method takes long time to run and the other completes in short time. You execute the long method first and after that you execute the short method. Which one will complete first. There is no setTimeout involved.

4 Answers

My answer: The long method finishes first and then short method executes and completes. Expected answer: The short method returns first! Less

the short method returns first! is the right answer since two methods will run parallel. As javascript is async events handling. You may right if had quested him is the methods run in sequence. Less

@Anonymous. It looks like you have not read the question well. It says that there is no setTimeout[) involved. If you have read the question, I have some questions for the answer that you provided. 1. Is asynchronous same as multithreading? I remember reading that JavaScript is single-threaded. 2. Suppose the short method depends on some value modified by the long method. As you said, lets suppose that the short method returns first even though it is next to the long method in sequence. In this case, how do you manage your program? Less

Show more responses
Signiwis Technologies

Technical question but basic on HTML CSS Java Script

4 Answers

Wat all rounds ??

But Java script is given more improtance

Which program u got to execute?

Show more responses
GE

What is the difference between display inline and inline-block ?

4 Answers

inline &amp; inline-block elements takes space upto their content width. The main difference is inline element does not respect any dimensions given to them but inline-block does. Less

It was behavioural like why do you think you are suitable for this position? Explain one critical situation you handled during your working with your last job. There were three questions only in video interview Less

What was the third question for the behavioral part?

Show more responses
Signiwis Technologies

Some small program in JavaScript

3 Answers

Program

What program they asked

Reverse string

Ness Digital Engineering
UI Developer was asked...September 22, 2018

Javscript whats is output of this statement. console.log()? type question eg. console.log('1'+2+5), console.log(+true)

3 Answers

"1" is so it can understand remaining as also string that why 125, "true" = 1, "false" = 0, so true is 1 Less

"1" string is so it can understand remaining as also string that why 125, "true" = 1, "false" = 0, so true is 1 Less

He will ask you answer as well as how did you find that

Tekion

It was all straight forward, I was very impressed the way they conducted all interviews.

3 Answers

It was all straight forward, I was very impressed the way they conducted all interviews. Less

What were the questions?

Could you add questions?

ValueLabs

What is the output of below program. var a = [1,2,3,4] for (var i=0; i<a.length; i++){ setTimeout(function(){ console.log(i) },1000) } ( My Ans : it will print 4 5 times as it will store the latest reference) Next They asked me : How can i print 1,2,3,4 by changing some code in above example

3 Answers

Some Correction : It will print 4 times "4". Fix: just use "let"(block scope) rather than "var" It should be : console.log(a[i]) to print (1,2,3,4) Less

My Answer : var a =[1,2,3,4] for (var i=0; i

Yes, ofcourse, it'll print 4 times 4 (not 5 times). Another way could be: using closure function. var a = [1,2,3,4] for (var i=0; i Less

Capgemini

.2 rounds ..1st round. written technical two js programs like Simple HTML page with three input fields and validation second one is js to find sum of numbers.....2nd round f2f technical...questions about..js hosting..oop oriented javascript..navigation in HTML...display 3 divs in same row.......

3 Answers

3 divs in same row Ans: <div> <div>C1</div> <div>C2</div> <div>C3</div> </div> .Row { display: table; width: 100%; /*Optional*/ table-layout: fixed; /*Optional*/ border-spacing: 10px; /*Optional*/ } .Column { display: table-cell; background-color: red; /*Optional*/ } Less

Sample div { display : inline-block; } <div> <div>C1</div> <div>C2</div> <div>C3</div> </div> Less

Sample div { display : inline-block; } <div> <div>C1</div> <div>C2</div> <div>C3</div> </div> Less

Viewing 1 - 10 of 3,129 interview questions

See Interview Questions for Similar Jobs

ui engineerui designerfront end developerfront end engineerhtml developerweb developerfrontend developerui ux designerhtml5 developerflex developerjavascript developeruser interface designer

Glassdoor has 3,129 interview questions and reports from Ui developer interviews. Prepare for your interview. Get hired. Love your job.