Tip 1 : Prepare data structures and algorithms thoroughly and practice at-least 2 to 3 questions daily for 4-5 months consistently.
Tip 2 : Have few good projects in your resume and also prepare your core subjects like Operating System, DBMS.
Tip 3 : You should know each and every word of your Resume.(Go through your resume before siting for interview).
Tip 4 : Prepare yourself for the question "Tell me about yourself" (Know yourself before any interview)
Tip 5 : Have confidence in yourself
Tip 1 : You should be able to defend whatever you have put on your resume so don't mention anything false.
Tip 2 : Follow chronological resume format
Tip 3 : Make your resume good and add only those things in your resume in which you are confident enough to answer any question
Tip 4 : Description of your project should be short and sweet.
The test was proctored, our webcam was on but not the mic. Also we were not allowed to switch tabs.The questions are basically from arrays, Mathematical , Dynamic Programming



Given array/list can contain duplicate elements.
(arr[i],arr[j]) and (arr[j],arr[i]) are considered same.



1. Day starts with hour 1 and ends with hour ‘DAY_HOURS’.
2. Each hour of the prime group should be in a different part of the day.
3. If there is no prime group then return zero.
4. ‘DAY_HOURS’ should be divisible by ‘PARTS’, meaning that the number of hours per part (DAY_HOURS/PARTS) should be a natural number.
Let ‘DAY_HOURS’ = 20 and ‘PARTS’ = 2
Hence the view of our day would be in the following format:
1 2 3 4 5 6 7 8 9 10 - Part 1
11 12 13 14 15 16 17 18 19 20 - Part 2
1-11 Not a prime group because 1 is not prime.
2-12 Not a prime group because 12 is not prime.
3-13 Because both 3 and 13 are prime, it is an equivalent prime group.
4-14 Not a prime group because 4 and 14 are not prime.
5-15 Not a prime group because 15 is not prime.
6-16 Not a prime group, because 6 and 16 are not prime.
7-17 Because both 7 and 17 are prime, it is an equivalent prime group.
8-18 Not a prime group, because 8 and 18 are, is not prime.
9-19 Not a prime group because 9 is not prime.
10-20 Not a prime group because both 10 and 20 are not prime.
Hence there are 2 equivalent prime groups in the above format which are 3-13 and 7-17.

This way of technical interview round.
What is Process and process scheduling?
What is deadlock?
What are necessary conditions for deadlock?
What is the difference between physical address and logical address?
What is copy constructor?
What are access specifier in OOPS?
What is default access specifier of class?
What is the difference between class and structure?
What is garbage collection?



The interviewer was very friendly.He basically ask me some behavioral questions
What makes you angry?
Are you open to take risks? or Do you like experimenting?
Tip 1 : Be confident
Tip 2 : Don't lie in front of HR

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