Interview process was good. There were 4 rounds. first was technical MCQ. second third and 4rth were coding/technical interview rounds. The interviewers were supportive throughout the process. I was selected but the company got acquired, and the parent company declined the offer.
Interview questions [1]
Question 1
1) Rotten Orange problem.
2) Rat in a maze problem.
I applied through university. The process took 2 days. I interviewed at Zillious
Interview
Campus placement
Two rounds in the college followed by other rounds at their office.
1st round was technical aptitude and aptitude - work time, C output, Os,
followed by 2nd round written coding
Interview questions [1]
Question 1
Trapping Rain Water
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
Examples:
Input: arr[] = {2, 0, 2}
Output: 2
Structure is like below
| |
|_|
We can trap 2 units of water in the middle gap.
Input: arr[] = {3, 0, 0, 2, 0, 4}
Output: 10
Structure is like below
|
| |
| | |
|__|_|
We can trap "3*2 units" of water between 3 an 2,
"1 unit" on top of bar 2 and "3 units" between 2
and 4. See below diagram also.
Input: arr[] = [0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1]
Output: 6
|
| || |
_|_||_||||||
Trap "1 unit" between first 1 and 2, "4 units" between
first 2 and 3 and "1 unit" between second last 1 and last 2
I applied through university. The process took 1 day. I interviewed at Zillious (New Delhi) in Nov 2013
Interview
I applied through Campus.
There were 3 rounds :
1) Written : SQL, N/W, Basic programming question.
2) Round 2 : Basic DS and puzzle.
3) Round 3 : Trees and recursion, Serialization.
Just be confident while answering any question.
Interview questions [1]
Question 1
Basic Linked List and Array questions and Scooter with 3 tyres puzzle.
Inorder traversal of Binary tree without recursion, Print all valid combinations of parenthesis.