Tip 1 : Have steadiness in competitive programming
Tip 2 : Make your basics very strong
Tip 3 : Do some projects
Tip 1 : Have a clear and developmental resume i.e mention your achievements year wise
Tip 2 : Try not to mention your primary educations details and achievements until they are something really extraordinary
Tip 3 : mention and elaborate your projects properly yet concisely.
It was first entrance round which was conducted in online mode. It had 2 coding question and 10 mcqs.it was around 90 min in total and took place in evening at around 5 pm.


In lexicographical order, cell (a, b) comes before cell (c, d), if either a < c or (a = c and b < d).
my solution was similar to this
var allSolutions = _.memoize(function(n) {
if (!n) return [];
if (n === 1) return [[[true]]];
var solutions = [];
for (var i = 0; i < n; i++) {
_.each(allSolutions(n-1), function(nMinusOneSolution){
solutions.push(generateSolution(nMinusOneSolution, i));
});
}
return solutions;
});
var generateSolution = function(nMinusOneSolution, i) {
var n = nMinusOneSolution.length + 1;
var newSet = [];
for (var j = 0; j < n-1; j++) {
var row = nMinusOneSolution[j];
newSet.push(row.slice(0).concat(false)); //append empty square to every row
}
newSet.splice(i,0, makeTrueEndingRow(n)); //insert new rook ending row
return newSet;
}
var makeTrueEndingRow = function(x) {
var row = _.times(x-1, function(y) { return false; });
row.push(true);
return row;
}
It was the first interview round conducted on skype. Each of the candidates were provided with the name of the interviewer and time slot in advance, and were expected to join to the link provided . The interviewer was really sincere and asked question straight to the point and asked me to write 2 3 codes for which he gave me questions and asked me to share my screen.
Alok has three daughters. His friend Shyam wants to know the ages of his daughters. Alok gives him first hint.
1) The product of their ages is 72.
Shyam says this is not enough information Alok gives him a second hint.
2) The sum of their ages is equal to my house number.
Shyam goes out and look at the house number and tells “I still do not have enough information to determine the ages”.
Alok admits that Shyam can not guess and gives him the third hint
3) The oldest of the girls likes strawberry ice-cream.
Shyam is able to guess after the third hint. Can you guess what are the ages of three daughters?
Tip 1 : Be calm think properly and answer
Tip 2 : Share your approaches continuously
Tip 3 : Even if you cannot get the final answer share your approach.
What is virtual class, abstract class and other concepts?
Tip 1 : Go through oops properly
Tip 2 : Concentrate on basics
it was a technical and hr round .he asked me about my projects ,discussed my resume and questioned my skills and projects . He asked me why I wanted to join this company. Here also we were told about the result of previous round, interviewer and time slot in advance.
Why do you want to join this company? Tell m about your projects
Tip 1 : be honest
Tip 2 : just say what you feel
He discussed my project and what all changes I would like to implement in near future and about resources and references We were given time slot and name of interviewer in advance.
Questions related to my project and what all fields I have interest in
How will I manage a team if needed?
Tip 1 : be calm smile be confident
Tip 2 : think of the interviewer as a person you can be honest with and maintain a positive environment if you feel nervous tell him/her that you are nervous they will definitely support you.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?