Tip 1 : Practice at least 20 - 30 questions from each topic.
Tip 2 : Do at least 2 projects
Tip 1 : Be specific in writing the things.
Tip 2 : Don't write unnecessary information in your resume.
There are 3 Questions in this round.
1 Find mega prime numbers
2 Find Minimum jumps to reach the destination
3 LPS (Longest Palindromic Substring)



1.’Left’ and ‘Right’ both are inclusive in the range ‘Left’ to ‘Right’.
‘Left’ = ‘23’ and ‘Right’ = ‘37’

All prime numbers from ‘23’ to ‘37’ are 23, 29, 31, 37
23 is ‘megaprime’ number because ‘2’ and ‘3’ both are prime
29 is not ‘megaprime’ number because ‘9’ is not a prime
31 is not a ‘megaprime’ number because ‘1’ is not a prime number
37 is ‘megaprime’ number because ‘3’ and ‘7’ both are prime numbers
Hence there are two ‘megaprime’ numbers 23, 37 out of 23, 29, 31, 37.
It's an online round.



It's an online round.



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.
It's an online round.
In this round the interviewer is much more interested in the basics things, like DBMS , OOPS and DS


Assume that the Indexing for the linked list starts from 0.
Input: ‘N’ = 5, 'LIST' = [1, 1, 2, 3, 4, -1], ‘VAL’ = 2, ‘POS’ = 1.
Output: 1 -> 2 -> 1 -> 2 -> 3 -> 4
Here in the given list we can see that the node having value 2 is inserted at position 1.
That was easy to add node.
In this round the interviewer is much more interested in the advanced topics of DBMS , OOPS and DS. He asked me DBMS queries and asked me to write code to print the pattern
1. Write SQL Query to find the employee with nth highest salary.
HR is interested in, the information related to me i.e about my Family , my behaviour and all this stuff.
1. Where do you see yourself after 5 years?
2. Your strengths and weaknesses

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL clause is used to specify the conditions in a query?