You are in charge of building a pipeline 200 miles from the ocean to a refinery and there is a mountain range in the way. What issues are involved in this project?
Engineering Intern Interview Questions
24,105 engineering intern interview questions shared by candidates
Connect Four is a game where two players take turns dropping their color discs into a vertically suspended grid. The game ends when a player adds a disc to the playing grid that connects four discs of their color. The connected discs can be in a horizontal, vertical or diagonal line. Write a function to be called after every turn that returns true if the game is over (and false otherwise).
How would you sort an array if you had infinite RAM? Infinite memory?
Given an input of a 3D matrix of ones and zeros, count the number of contiguous 1-filled regions (as separated by 0-filled regions), as well as the size of the largest one (I think; doesn't really change the problem much). I forget what these were called...
Starting from a top level directory how would you find files having same content ?
Explain tail recursion.
Give the sizeof of the following struct : struct{ char a,b; int c; }
how do you find out if there is a cycle in linked list.
design an algorithm to check if there are overlaps between a group of intervals
Write a function to return the longest common prefix between two strings.
Viewing 141 - 150 interview questions