Tip 1: Practice aptitude well as it is the main and quite tricky round to be clear.
Tip 2: Be honest and focus on projects.
Tip 1: Highlight your projects.
Tip 2: Be honest in your resume; include only the skills and experiences you truly know and are confident about.t it.
It was an MCQ round which had questions about SQL, Pseudo Codes, Databases, Computer networks, etc. If the person successfully passes this MCQ round, then only he/she was able to make an attempt for the Aptitude round. The aptitude round contains questions in the form of flowcharts and boxes, which were used and filled by following specified instructions.
Check if the number is prime or not?
BEGIN
INTEGER n = 7
BOOLEAN isPrime = TRUE
INTEGER i
FOR i = 2 TO n - 1
IF n MOD i = 0 THEN
isPrime = FALSE
BREAK
END IF
END FOR
IF isPrime = TRUE THEN
PRINT "Prime Number"
ELSE
PRINT "Not a Prime Number"
END IF
END
Firstly, read the code and noted all the values assigned to the variables, then executed the code by doing dry run.
Find output of recursive function.
FUNCTION fact(N)
IF N = 0 THEN
RETURN 1
ELSE
RETURN N * fact(N - 1)
END IF
END FUNCTION
PRINT fact(4)
Learning the recursive function's logic and applying it with the code by doing dry run.
The interview was in the afternoon, which started with introduction and then, the interviewer asked mainly about the projects I have made, each detail of the projects and some questions on database. I answered questions with honesty and presence of mind which impressed the interviewer.
Write a code in java for compound interest. (Learn)
The approach was easy. I used the mathematical formula for finding compound interest.
What is Cache memory? (Learn)
He asked me If I am working in a team and a new person has joined our team who knows nothing about the project and we have a deadline to submit the project to the customer, how will I manage to finish the project before or on the deadline.
The interviewer started with my introduction, and asked some other questions. He verified the score of 10th, 12th and BTech as well.
Tip 1: Be honest
Tip 2: Be confident

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