Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : Atleast 4 projects in Resume
Tip 1 : At least 4 projects on the resume
Tip 2 : Do not write false things. You always get caught. Be genuine.
This round was a mix of SQL and DSA questions.
Return data of students who scored more than the average marks
From the given table, return the total count of different severity of Covid among the three age groups, where age groups from the given data were supposed to be created by me using SQL functionalities.
From the given data of 3 tables location, companies, and employees, find out the location with most companies and return the name and company of employees who work in that location
A question where the top 3 records in each category were to be fetched with some other conditions applied (I used Window Functions here). This one had a trick to sorting where I used another Window function to extract an additional column to sort on to get the desired result.
Tip 1 : Practice previously asked questions.
Tip 2 : Speak your approach loud.



str = "ababc"
The longest palindromic substring of "ababc" is "aba", since "aba" is a palindrome and it is the longest substring of length 3 which is a palindrome.
There is another palindromic substring of length 3 is "bab". Since starting index of "aba" is less than "bab", so "aba" is the answer.
This round was about my projects and to test about my SQL knowledge.
A table of 4 columns contains duplicate rows. How to extract the duplicate rows?
Two tables A and B have one column “Id” (duplicates allowed), what would be the result of the inner join of these two?
.How to delete duplicates from a SQL table?
Given a table with StudentId, Marks, and SubjectName, find the details of a student with the subject in which they scored lowest each student?
Questions related to the project and basics of Python data structures and libraries like Pandas and NumPy.
COALESCE Function? Explanation and Use?
Tip 1 : Practice previously asked questions.
Tip 2 : Speak your approach loud.

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?