Tip 1 : Prepare Aptitude Thoroughly, expect one question from each topic.
Tip 2 : Clear all your programming concepts in the very programming language you choose.
Tip 3 : Get each and every insights about your project as they will definitely as questions on them.
Tip 4 : Have some knowledge on data bases.
Tip 1 : Have some Projects on resume.
Tip 2 : Keep things as simple as possible ,do not glorify yourself
We had a window to choose between 24 hrs. So I chose 10pm-4am time period,as the environment is very calm and soothing,and over that no one to disturb you.
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.
Step 1 : First I decided how the solution could be according to users input.
Step 2 : Then the next part was to search for the prime time and valid times which can be occurring in the clock for the given range of constraints
Step 3 : then simply use the loop to print valid times or 0
The timing was good,
The environment was bit tensed from my side.
The interviewer was very friendly
Write a query to find the elements using the dates_of_delivery.
What is relational Database.
Difference between SQL and NoSQL
Tip 1 : Get Some deep insights into data base
Tip 2 : Basic queries is must
Tip 3 : Be confident
Timing was around 1pm
No significant Activity.
Tip 1 : Tell optimistic answers so that they are impressed.
Tip 2 : Make you you know the history, work culture and CEO of whichever company you are going for the interview.
Tip 3 : My approach was very normal & I gave answers to the point.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which operator is used for exponentiation in Python?