Tip 1 : be confident and true about what you know
Tip 2 : most of the questions will be from Database and SQL so be sure to prepare that
Tip 3 : have clear communication and work with min 2 academic projects to state that you have hands on exposure
Tip 1 : have good projects
Tip 2 : list the skills only if youre confident enough with if not be honest to the interviewer
Coding 2 questions and aptitude, verbal, reasoning for about 20 questions on each topic



In cases where the dividend is not perfectly divisible by the divisor, you are required to return the integer value of the quotient which is closer to zero.
For example - If the answer is '8.34', we return the integer part, i.e., '8'. Also, If the answer is '-2.67', we return the integer part, i.e., '-2'.
Assume we're dealing with a system that can only store integers in the 32-bit signed integer range: [2^31, 2^31-1]. If the quotient is higher than 2^31 - 1, return 2^31 - 1; if it is less than -2^31, return -2^31.
If the answer is ‘9.333’, then return ‘9’, or if the answer is ‘-8.123’, then return ‘-8’.
Interviewer asked about how will you implement ERP in a super market
Tip 1 : ERP can be used to manage inventory effectively
Tip 2 : ERP can be used to bill and track accounts
Tip 3 : ERP can be used to monitor sales data, and analytics, and it can be also used to maintain employee data ,manage supplier data, and stock repenlishment
Basic interview questions to test communication and personalities,
Why should we hire you?
Who is your role model?
Tip 1 : be strong at communication
Tip 2 : be sure on how you project your personality to the interviewer

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