string to int and add them
Engineer Senior Interview Questions
114,087 engineer senior interview questions shared by candidates
Please read about us
How will you prevent the code in finally block from executing? The question isn't a very fair one as a good programmer would not write the code in finally block that he/she doesn't want to execute
Without using length and size function how could you get the 2nd last variable in an array of integers?
void sort(String s){ } void sort(Integer I){ } void sort(Object o){ } calling : sort(null) which function will be called?
Given an integer array containing positive and negative numbers, how do you get the maximum sum of its sub-arrays? Continuous numbers form a sub-array of an array. For example, if the input array is {1, -2, 3, 10, -4, 7, 2, -5}, the sub-array with the maximum sum is {3, 10, -4, 7, 2} whose sum 18.
The interview questions were based on various topics ( all that I had on my resume), however on each of the question, the main focus was on problem handling, reaction and solution (even though you are not able to hit the right solution, please speak up with your ideas. In my case, I did and the interviewers did help me move forward). The interviewers were cordial and made sure I was comfortable and could think in a calm manner. The emphasis was more on problem solving and thinking in the right direction ( rather than language or specifics of a code). For example - 1) Design a web based application ( emphasis was on load balancing, failures etc). 2) Construct your own linked list
What is your highest educations
There will be lot of things which i cant explain.
int func() { static int i = 4; i++; return i; } int main() { int i = 0; for (i = 0; i< 4; i++) { printf("%d\n", func()); } }
Viewing 271 - 280 interview questions