User Experience Developer Interview Questions

179

User Experience Developer interview questions shared by candidates

Top Interview Questions

Sort: Relevance|Popular|Date
Workday
Software Engineer, User Experience was asked...November 20, 2016

Given a linked list of characters, print the characters in reverse order.

3 Answers

reverse the linked list, iterate through it and print, reverse it back.

traverse through it using a recursive function with a printing statement after the traversal statement so when it gets to the end of the function and its returning, it will print along the way. Less

def reverse[T](seq: Seq[T]): Seq[T] = { seq match { case Nil => Seq() case head :: tail => reverse(tail) :+ head } } println(reverse(List('A', 'B', 'C', 'D', 'E'))) Less

GoDaddy

Using a nested for() loop is inefficient, can you do it more efficient than the native String.indexOf() method? Without nesting for loops or recursion.

2 Answers

Convert the strings to objects with each word being added as a property to speed up the lookup. I had heard of this technique but never done it myself. Less

sort the words will be done in n Log n . for each word in 1st string do binary search on other string which will run in n log n so overall complexity will be n log n. Less

Fusion Alliance

"You have 30 minutes to show us what you've got."

2 Answers

Ask more specifics on the position. The recruiter gave me NO information on the available position, so I was under the impression that I was up for consideration in several positions.. Less

I can tell you what I don't got -- a job.

GoDaddy

Given two strings of words create an algorithm to return all the words that occur in only one of the two strings. A word can be in one string many times and still pass as long as it's not in the other.

2 Answers

My answer started out a simple string comparison, but then realized the algorithm needs to be a little more complex to satisfy the requirement. I turned the strings into arrays, then created a function that used a nested for loop to compare the arrays. similar to the native String.indexOf() method, only customized for the requirement. Less

You can use a hash map to count the words in the two arrays. Words with count==1 are the answer Less

Technology Resource Group (CA)

How to remove a text box out of 5 boxes arranged in loop (Parent Box to Child box) with the help of Javascript?

1 Answers

with the help of addClass and removeClass function using (this)

Verdantis

how to make a bot for Candy crush

1 Answers

design an Algorithm using your common sense

Star2Star Communications

Describe your design process

1 Answers

Same thing happened to me - what company asks you to do a project - aka homework... stupid and a waste of time Less

Andersen

Why did you want to join the company?

1 Answers

Benefits and my skills matches with the position

Verdantis

Why should we choose you?

1 Answers

Because i'm more qualified for the job than most candidates waiting outside

Viewing 1 - 10 of 179 interview questions

See Interview Questions for Similar Jobs

senior web developeruser experience designerweb graphic designer.net developer

Glassdoor has 179 interview questions and reports from User experience developer interviews. Prepare for your interview. Get hired. Love your job.