Tip 1 : Revise basic data structures
Tip 2 : Do revise SQL Queries , they will ask one or two SQL queries most probably
Tip 3 : You should be well versed with OOPS Concepts
Tip 4 : You should be able to explain the projects mentioned in your resume.
Tip 1 : Focus on web development projects as their work is mostly on web development
Tip 2 : Mention only those skills that you are fully confident about



Consider the array be 1,6,4,6,2,4,2
The integers 2, 4, 6 occur twice and only the integer 1 occurs once.



1. The pair should be from different indices.
2. If no such number is present in the ‘ARR’, then return -1.



It was a Just a Minute Round in which a picture was shown a random picture and I had to speak about that continuously for a minute
In the meeting room , two interviewers were there



Input: 'a' = [7, 12, 1, 20]
Output: NGE = [12, 20, 20, -1]
Explanation: For the given array,
- The next greater element for 7 is 12.
- The next greater element for 12 is 20.
- The next greater element for 1 is 20.
- There is no greater element for 20 on the right side. So we consider NGE as -1.
Brute force approach first explained and then optimized approach ,I solved it by thinking out loud
Interviewer was quite satisfied with the solution
SQL Query for Second Highest Salary in an Emloyee table
TYPES OF KEYS
The interviewer draw a employee table in which Employee id , name and salary were mentioned
I had to find the employee with second most highest salary
Tip 1 : Practice SQL queries specially like Largest,Second Largest and Third Largest ones
Tip 2 : Do read GROUP BY , WHERE ,ORDER by and in which cases they are used.
Normalization and All the normal forms
Tip 1 : Do learn all the normal forms (Normalization is very important topic )



Very basic and begineer friendly question
We have to apply a check if that number is prime or not

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