How would you implement a game that you throw five dices and the values are in an array and return true if the array has 4 consecutive number
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,484 software engineer interview questions shared by candidates
Given a list of denominations (e.g., [ 1, 2, 5 ] means you have coins worth $1, $2, and $5) and a number k, find all possible combinations, if any, of coins in the given denominations that add up to k, including repeats.
Simple OOPs question, a BFS problem, elementary number theory problem
Convert a tree to a doubly linked list.
Given a string A and B return true if A occurs as an anagram in B
1. merge two sorted arrays together 2. given a m * n grids, and one is allowed to move up or right, find the number of paths between two grids.
if(..) { printf("Hello"); } else {printf("world") } fill in the if condition to get the result "helllo world"
You are given a bunch of dominoes. Write a function that determines if any two of those dominoes add up to [6, 6] (e.g. [1,4] + [5, 2]).
Given an array of integers, find the maximum number that can be reached by summing the best possible consecutive subsequence of the array.
2D matrix BFS. Can't believe the interviewer does not know how to use queue to do BFS.
Viewing 1681 - 1690 interview questions