Tip 1 : Be confident
Tip 2 : Practice more than 200 DSA question
Tip 3 : Do at least one project
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.
This round is all about mcq and coding questions



a) Duplicate elements may be present.
b) If no such element is present return -1.
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.
Output: 6
Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.
Write the code to find the second maximum in an array.
Write a SQL query to find all the users with the same email id.
Tip 1 : Write a SQL query to find all the users with the same email id.
This round is technical interview round and they ask good level of questions



If the input string is "abbc", then all the possible palindromic substrings would be: ["a", "b", "b", c", "bb"] and hence, the output will be 5 since we have 5 substrings in total which form a palindrome.
A string is said to be a 'Palindrome' if it is read the same forwards and backwards.
For example, “abba” is a palindrome, but “abbc” is not.
A 'Substring' is a contiguous sequence of characters within a string.
For example, "a", "b", "c", "ab", "bc", "abc" are substrings of "abc".



Input: ‘n’ = 7
Output: 2
Explanation:
The square root of the number 7 lies between 2 and 3, so the floor value is 2.
Given a positive number n and precision p, find the square root of number upto p decimal places using binary search.
Be calm and answer don’t panic, the interviewer will be very cooperative.
Any internships or certifications you have done.
Why do you want to join the unthinkable?
Tip 1:be confident
Tip 2:be calm

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?