Tip 1 : Try to understand the patterns in coding problems
Tip 2 : Focus on quality questions and revision
Tip 3 : Solve problems topic wise and focus on easy to medium problems
Tip 1 : Dont lie in your resume
Tip 2 : Do mention atleast 3 projects
10 ques based on CS fundamentals
10 ques based on aptitude
Number Of MCQs - 20


1. Sort the boxType array based on numberof units per box
2. Run a while loop and keep storing the boxes until you have space indicated by trucksize variable.
3. In each loop keep adding profit and decreasing the trucsize.
4. Return the profit.



getSize: Returns an integer. Gets the current size of the stack
isEmpty: Returns a boolean. Gets whether the stack is empty
push: Returns nothing. Accepts an integer. Puts that integer at the top of the stack
pop: Returns nothing. Removes the top element of the stack. It does nothing if the stack is empty.
getTop: Returns an integer. Gets the top element of the stack. Returns -1 if the stack is empty
1. Declared a stack class with an array and top variable as member function.
2. Implemented the push( ) and pop( ) functions
How does mutex and semaphore differ ?
Explain Normal forms. What are its needs?
Where do you see yourself in 5 years?
Why Indiamart?
What are the co curricular activities you have interests in?

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