Tip 1 : Prepare DSA very well
Tip 2 : Prepare system design
Tip 3 : Be confident in one language
Tip 1 : Only put what you know
Tip 2 : Keep it simple and one page
What is left join?
What are the different types of Joins in SQL?
Tip 1 : Prepare in geeks for geeks
Tip 2 : Solve SQL problems
Tip 3 : Also refer to hackerrank





‘RAILWAY_SYSTEM’() is a function that initializes your data structures.
‘CHECK_IN’( ‘PASS_ID’,’ STATION’, TIME) represents that passenger with passenger ID ‘PASS_ID’ checks in at the station named ‘STATION’ at time ‘TIME’.
A customer can only be checked into one place at a time.
‘CHECK_OUT’( ‘PASS_ID’,’ STATION’, TIME) represents that passenger with passenger ID ‘PASS_ID’ checks out at the station named ‘STATION’ at time ‘TIME’.
‘GET_AVERAGE_TIME(SOURCE, DEST) returns the average time it takes to travel from SOURCE to DEST.
The average time is computed from all the previous traveling times from SOURCE to DEST that happened directly, meaning a check-in at SOURCE followed by a check out from DEST.
If the functions calls are as follows:
CHECK_IN(1,‘Delhi’,10)
CHECK_OUT(1,‘Noida’,20)
GET_AVERAGE(‘Delhi’,’ Noida’)
CHECK_IN(5,‘Delhi’,12)
CHECK_OUT(5,‘Noida’,17)
GET_AVERAGE(‘Delhi’,’ Noida’)
So, the answers for the GET_AVERAGE calls will be 10 and 7.5 respectively.
For the first call, there is only one trip between Delhi and Noida, so the average is 10.
For the second call, there are two between these stations, so the average is (10+5)/2 = 7.5

Input: ‘N’ = 4, ‘NUMS’ = [2, 5, 3, 6]
Output: [5, 3, 2, 6]
Sorting the odd numbers of the array ‘NUMS’ in non-increasing order, the result is 5, 3
Then, Sorting the even numbers in non-decreasing order, the result is 2, 6.
Since the final array should contain the odd numbers in non-increasing order in the first half and even numbers in non-decreasing order in the other half.
So, the final array is [5, 3, 2, 6].



Given two strings A and B, find if A is a subsequence of B.
Complete the function isSubSequence() which takes A and B as input parameters and returns a boolean value denoting if A is a subsequence of B or not.
Some formal questions
Why should we hire you?
What are your strengths?
How can one overcome his weakness?
Tip 1 : Tell about your uniqueness about you
Tip 2 : Be frank
Tip 3 : Be confident talk confident
Get ad objects and create a domain platform get the all the install and uninstalls operations
Write SQL Query to get the details of the employees with the most number of absence?
How to increase SQL performance

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