I didn't do well on the second problem. The time limit is very strict.
Developer Interview Questions
269,256 developer interview questions shared by candidates
The first question was JavaScript scoping: var x = 9; var module = { x: 81, getX: function() { this.x = 10 return this.x; } }; module.getX(); // nr 1 -> 10 var retrieveX = module.getX; retrieveX(); // nr 2 -> 9 var boundGetX = retrieveX.bind(module); boundGetX(); // nr 3 -> 81 The second question was FizzBuzz again:
write a java program to find the GCD of 3nos.
question like string palindrome,no is multiple of 5 or 7,* pattern program, two rectangle collide with each other or not,prime no, program on static keyword,inheritance,constructor
Write a code to divide two numbers without using the division and modulus operator
Familiar questions on spring mvc,spring aop,restful API,collections,run time polymorphism,design patterns. HR interview questions: What is difference between Agile and waterfull that you have observed? Major drawback of agile? how is your normal day? what is your future aspiration?
What is CAL ( ebay tool ), and usage?
As technical as you can explain what you currently do.
Given an array of 1..n numbers with 2 numbers missing in it find the missing ones.
what is the best way to find the duplicates within two intersecting linked list?
Viewing 861 - 870 interview questions