Describe one of your greatest achievements
Engineer Intern Interview Questions
15,323 engineer intern interview questions shared by candidates
Find the k-lowest elements of an unsorted array.
1) Write a function to find the nth Fibonacci number. 2) Optimize your code so that the numbers don't have to be recalculated on consecutive function calls.
Very unexpected question: are you a US citizen?
1. Find the minimum number of train stations required given a list of departure and arrival times. 2. The online screens had a couple of SAT style questions and some debugging questions.
What is the most appropiate DS to implement a T9 dictionary
Implement a data structure like a stack but with a way to find a max at O(1) time.
Given a linked list, flip every pair of nodes, such that if given a-b-c-d-e, return b-a-d-c-e.
Given two different strings, find the common characters between the two. For example if string A is "hello" and string B is "elbow" the common characters would be ['e', 'l', 'o']. Give a method that returns unique or duplicate entries.
Implement a stack that supports push, pop and mode(the one from statistics) operation. Gave an O(log n ) push and pop and O(1) mode operation.Another good question was implement atoi function. I assumed it as base 10 but was asked to support from binary to any base numbers(even base 50).
Viewing 251 - 260 interview questions