Logic questions/debugging in the first section. A work simulation in the 2nd part with a coding challenge.
Software Development Engineer Interview Questions
32,823 software development engineer interview questions shared by candidates
Tell me about a time when you disagreed with the work direction you were given, and how you resolved it.
(onsite questions) Tell me about the code you wrote? Walk me through how it works. Is there anyway you think you can optimize it?
Medium- easy level coding question. Technical Testing/automation experience related questions
Write a method to reverse the order of words in a string. e.g.: "This is a string" -> "string a is This"
Normal coding pattern question with few validation
Given a bunch of N random points in space, how would you draw a line such that N/2 of them were to the left of the line and N/2 to the right of it. Complexity
Given an array of character you must delete all the characters that got repeated 3 or more times consecutively and add " " in the end of the array for every deleted character Example "aaabbbcddddd"->"c "11 spaces "xxaaavbbbc" ->"xxvc " "xavvvarrrt"->"xaat " The problem must be solved in: O(1) memory O(n) time And you can't overwrite a cell in the array more than once
Ask C keywords, like versatile, static...
Coding round : If A,B,C are 3 non-zero digits(1-9), find all combinations of A,B,C such that AB * AB = CAB.
Viewing 401 - 410 interview questions