Phone interview question: What happens when the "new" operator in C++ fails?
Software Development Engineer Interview Questions
33,172 software development engineer interview questions shared by candidates
Consider n people with random birthdays. How large does n need to be before there is at least a 50% chance that two people have the same birthday?
Very basic questions on data structures and algorithms.
Design and implement a "inner join" function using 2 sorted lists/arrays. Make it run in O(n) time.
1: Quite simple question, calendar related calculation. 2: Something close to binary search, find the missing number from consecutive integers. e.g., 0, 1, 2, 4, 5, should return 3. A little tricky for boundary conditions. Another simple question but cannot remember. 3: Double linked list insert and delete, with some special conditions. Simple. Another OOD question. 4: Something like leetcode jump game. But the jump length depends on the last jump made. For example, in step N, the man jumped M, the next step he can jump M-1, M or M+1.
How to get 4L from 2 containers of size 3L and 5L
The interviewer confused me like hell when describing the question. Every node of the tree has a pointer to its left most child. each node has a pointer to its next sibling. Its a BST. Find the smallest value in the tree.
How would you test an elevator?
Implement a Find-Replace function given a string of text, search string, and replace string. Also a seemingly simple question became very difficult and complex when looked at through the eyes of a tester. A question involved writting a function to classify a triangle given its side lengths.
Given an integer as input, return how many 1's are in the binary representation of that integer.
Viewing 641 - 650 interview questions