//A program to find the sum of contiguous subarray within a one-dimensional array of numbers which has the largest sum. //{-2, 3, 3, -1, -2, 1, 5, -3} //{2, 3, 4, 1, 2, 1, 5, 3}
Engineer Software Interview Questions
512,656 engineer software interview questions shared by candidates
solve leetcode easy? solve leetcode hard?
Implement the battleship game
Given a linked list. Write a C program to reverse it.
find total # of numbers that satisfy x*(x+1) that fall within a and b (a, b, x all integers and a<=b)
Without using length and size function how could you get the 2nd last variable in an array of integers?
Basic Algo questions. 1 DP question and then design questions.
Find local maxima in an unsorted array with n time
void sort(String s){ } void sort(Integer I){ } void sort(Object o){ } calling : sort(null) which function will be called?
What does the following function do: unsigned int doit(int x) { unsigned int z = 0; while (x &= (x-1)) z++; return z; }
Viewing 2621 - 2630 interview questions