Tip 1 : Focus on Mental ability question, puzzle & logical reasoning. Practice alteast 250 questions.
Tip 2 : Practice competitive programming questions.
Tip 3 : Be confident in interview and you should be aware of the topics thoroughly mentioned in your resume.
Tip 1 : Only mention those projects on which you have worked.
Tip 2 : Try to include mega technologies such as Hadoop, Cloud computing etc.
There were 5 rounds in total.
1.Cognitive Ability Games
2.English Language Test
3.Learning Agility Assessment
4.Coding Test
You need to be very attentive and focused during all the rounds. Be careful, if you break the rules,the invigilator can drop you off from the process. The process went till 8-9pm. The interview held next day.



153 = 1^3 + 5^3 + 3^3.
Therefore 153 is an Armstrong number.
I approched this problem in C language. The idea is to first count number digits (or find order). Let the number of digits be n. For every digit r in input number x, compute rn. If sum of all such values is equal to n, then return true, else false.
You can code the same in any language.
This was an interview round where basically questions were asked from the resume i.e. from your projects. They usually check whether you are able to apply new technologies in current problem. Having a good knowledge of new tech will give you add on marks.
Basically they asked how would I count number of sparrows in my district?
Tip 1 : My approach was related to technologies. I tried to form my answer based on hadoop or data analytics.
Tip 2 : Be confident while giving answers
Tip 3 : Prepare your basics.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?