All questions are already on glass door. Just make a list of all the questions and answer them.
Software Engineer Interviews
Software Engineer Interview Questions
Software engineers write programs to design and develop computer software. Interviews are highly technical, so come ready to work through coding problems and math brainteasers. The specific questions you are asked will depend on what type of programming position you are looking for. Try researching a specific software discipline such as web development, application development, or system development.
Top Software Engineer Interview Questions & How to Answer
Question #1: How would you describe your programming task process?
Question #2: Which programming languages do you know and prefer?
Question 3: What is an example of a successful project that you completed?
419,267 software engineer interview questions shared by candidates
Given an array of integers, write a function that will produce a random permutation of the input array.
Given a large document and a short pattern consisting of a few words (eg. W1 W2 W3), find the shortest string that has all the words in any order (for eg. W2 foo bar dog W1 cat W3 -- is a valid pattern)
Given a single-line text string and a maximum width value, write the function 'string justify(string text, int maxWidth)' that formats the input text using full-justification, i.e., extra spaces on each line are equally distributed between the words; the first word on each line is flushed left and the last word on each line is flushed right.
Find indices start and end for a particular value in a sorted integer array with duplicates
What are the steps to connect to a database?
How to find 2 missing numbers in N numbers, which consists of numbers 1 - N without duplicate?
What's your opinion of a well-designed product and why?
Imagine you have only two eggs and a 100 story building in front of you. Describe an algorithm (or technique) to minimize the number of throws (or tries) to determine where the egg will start to break when thrown off the building. If the egg breaks when thrown from that floor, it will always break from that floor or higher (i.e. all eggs have the same results per floor; they break or they don't).
Using some functions they gave me which operate with cells in spreadsheets, I had to compute sum of an array. Later I had to implement by myself those functions: the trickiest thing was to implement the part when some cell is a sum of two other cells and some of those two cells is a some of some other cells and so on ...
Viewing 1371 - 1380 interview questions