What was your hardest project?
Internship Engineer Interview Questions
24,415 internship engineer interview questions shared by candidates
What's the difference between a thread and a process?
How would you classify photos whether they represents "X" or "O".
Giving a string with words separated by spaces. Count the word with odd number of characters. e.g. "I am a student" return 3 (I, a, student).
For a given number, write an algorithm that can find its square root.
There was a simple programming task I solved at the whiteboard and he asked if I knew how to do it in a better time complexity. Maximum contiguous subarray
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.)
How you can Object Oriented Programming in real life?
Viewing 1501 - 1510 interview questions