1 question was asked in technical interview which was a simple question that could be solved using divide and conquer approach.
Engineer Internship Interview Questions
24,163 engineer internship interview questions shared by candidates
what kind of project did u do, and how did you tackle difficulties during the process?
Have you ever had a conflict in the workplace? If so, how did you solve for it?
Find N digits that give the greatest product, N was decided by the interviewer.
1) Implement an iterator for a binary tree 2) Given 2 strings s1 and s2, return True if s2 is a substring of s1. Follow up: Return True if any combination of s2 is a substring of s1
Given a list of commands, in the format [function name, ENTER/EXIT, time event occurs]) return a list of the duration that each function occurred for along with the name of that function. Note: (duration is inclusive of the start and end time) Example of input: F1 ENTER 110 F2 ENTER 120 F3 ENTER 130 F3 EXIT 140 F3 ENTER 150 F3 EXIT 160 F2 EXIT 170 F1 EXIT 180 Level 2/Bonus: if you've already entered a function and you are given a command to enter a new one, it's now a sub-process of the one already started. Return the duration of each function without the time spent in sub functions) (e.g. in the above example, F2 is a subprocess of F1, F3 is a subprocess of F2 and so on)
The coding question was to create a function that took in a string and you were supposed to write a compression algorithm by listing which characters were repeating.
What was a technical project you worked on? How would you break it down to a person with no technical background? (Use a whiteboard.)
What is your favorite Microsoft product?
Why did you choose this particular IMU on your robotics project? Why didn't you use something capable of X?
Viewing 1501 - 1510 interview questions