I didn't do well on the second problem. The time limit is very strict.
Developer Interview Questions
269,153 developer interview questions shared by candidates
write a java program to find the GCD of 3nos.
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:
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
There is a list with words like: pin, pine, apple, pineapple. Go through the list and figure out which words are combinations of other words in the list, and which ones aren't
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?
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?
Given deck of cards + joker, what is the probability you see the joker before all four aces?
Write a code to divide two numbers without using the division and modulus operator
Viewing 861 - 870 interview questions