One of the video recording questions requires you to explain one of the coding problem you just solved.
Software Engineer Entry Level Interview Questions
1,908 software engineer entry level interview questions shared by candidates
What technologies did you teach to yourself?
Can't go into much detail about it, but there were several speaking questions that required a webcam in order for you to record your answer, as well as a few coding questions of varying lengths and time limits.
Fizzbuzz.
Build a Cart object using javascript with these three methods: chart.add('chair', 3); chart.add('chair'); //will add only 1 element chart.add('table', 2); chart.remove('table') // it will remove 1 element each time. chart.show(); // will show the elements and its quantity ordered by name // chair: 4, // table: 1
coding question: write a function that divide two integers without using the division operator to get the remainder and quotient
explain polymorphism and how to impliment it
data structure and algorithm, leet code medium to a high level.
What POSIX, intra-process synchronization mechanisms do you know?
Design and implement in C a system that could store records such that individual records could be added and removed with minimal overhead. The system also had to allow searching for a record with minimal overhead. The number of records was not large.
Viewing 321 - 330 interview questions