A few days after applying online I was emailed to do a phone interview.
Interview questions [1]
Question 1
Asked to write a method were it's passed an array of numbers and a single number. I needed to return true if there was two numbers in the array that if added totaled the single number. I was then asked to rewrite it to make it run faster.
It was the phone interview round. Be a prepared about basic data structures. Do not try and prepare many questions but do basic coding right. They want to see whether you can write code in a real situations, so practising questiosn from Codin Interviews & other books wont help much. Talk as much as possbile, detailing what you are trying to achive through your code
Interview questions [1]
Question 1
Quite easy question i suppose- Emulate inorder BST tree traversal without using recursion.