Given a array (it has some zeros and non-zero numbers), sort it such that all zeros should go to the right side of the array and non-zeros numbers shouldn't change the order ex: 2, 0, 3, 1,0,4 ==> 2,3,1,4,0,0 Conditions: shouldn't use extra space (temp variables ok), should do in 0(n) time
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,786 software engineer interview questions shared by candidates
A C coding test without using any library functions to do some string manipulation.
Introduce me one project that you have done recently
Do you know Perl or have any experience with it?
Given a string of words and a maxWidth, write a method that inserts new lines where appropriate to perform a word-wrap. (Wrap on word boundaries, assume " " is fine). Now, how does your implementation handle string with multiple spaces between words ... Are those extra spaces lost or preserved?
They asked about my internships
Having two distinct very large ordered array of values, find the mean value of the two arrays.
they asked about sql and dbms
1. Some general questions like http verbs, b-tree definition, basics of stack, graphs etc. 2. Data structure questions like merge sorted array, trailing Sum etc. those were basically from geeksforgeeks.org
More qns about pointers! And assignments in if and while looks. if ( a = b) {} and while(a=b) {}
Viewing 3321 - 3330 interview questions