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,836 software engineer interview questions shared by candidates
A C coding test without using any library functions to do some string manipulation.
Can we use the final keyword with the constructor?
Differences between Perl and Python
Logical questions on programs
C programming questions typically asked in interviews.
More qns about pointers! And assignments in if and while looks. if ( a = b) {} and while(a=b) {}
Swap two integers without using additional variable.
1. Write a code for bubble sort. 2. What are the osi layers and explain them. 3. What are pointers. 4. A puzzle : We have two pits with capacities of 5 and 4. How will you measure 2 litres of water with these pots.
Write a code that gets a sentence and print the sentence in reverse. e.g. "My name is John" -> "John is name My"
Viewing 3391 - 3400 interview questions