One of the video recording questions requires you to explain one of the coding problem you just solved.
Software Engineer Entry Level Interview Questions
3,538 software engineer entry level interview questions shared by candidates
What technologies did you teach to yourself?
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
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
one string question and one dyanamic programming question for online screening. Not hard. The phone interview didn't pass.
Count the number of letters and numbers that appear in a row and print out this information sequentially. For example: ABAACCDB would be 1A1B2A2C1D1B You were also required to be able to take 1A1B2A2C1D1B and turn it back into it's original form of ABAACCBD.
data structure and algorithm, leet code medium to a high level.
What POSIX, intra-process synchronization mechanisms do you know?
is 121 a prime number or not?
Viewing 621 - 630 interview questions