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.
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;
});
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 stil...
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
Why do you want to join this company? Tell m about your projects
Tip 1 : be honest
Tip 2 : just say what you feel
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.