How would you call fire brigade if your office catches fire? Consider you dont have internet, telephone, or any means of communication.
Development Engineer Interview Questions
37,130 development engineer interview questions shared by candidates
- Given an array of integers (of any value, from MIN_INT to MAX_INT), how would you find the consecutive integers with the largest sum, and return their sum?
given value is 9876. print nine thousand eight hunder seventy six
Count no. of words in a string
Reverse all the characters in a string before you encounter an 'x'. abcdxdd - > dcbaxdd
Reverse the string
int Solve(string str); Given the signature above, implement the simplest method that returns the results of the following arguments: 1. “3+5” (8) 2. “10+2-8” (4) 3. “5+10*3” (35) 4. “3+5--6" (14)
Group of people, you can call Know(i,j) to ask if ith person knows jth, the return value is true (i knows j) or false (i does not know j). Find the person that everybody else knows him but he knows nobody.
Given length of 3 sides as input, tell whether they form a valid triangle or not. Write all possible test cases to check your algo..
Delete n-th element from linked list. Note, you don't have a pointer to the Head of the list.
Viewing 921 - 930 interview questions