Tip 1 : Prepare DSA well and I personally recommend Coding Ninjas and GeeksForGeeks for interview preparation.
Tip 2 : Be confident & relaxed during the interview.
Tip 3 : Do revise your projects i.e how it works and what are its functionalities.
Tip 1: Make your resume short and try to make it one page only and mention all the skills that you are confident in.
Tip 2: Do not put false things on your resume.
30 MCQs questions which were based on c++ oops, SQL based questions
What is deadlock?
In this round, There was Zoom Meeting for all shortlisted students. The camera was on in that Zoom meeting they asked to code on Online Ide and paste that code on Wordpad and share that code on Email ID.



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
By using Pointers to track elements position.



1. If ‘k’ is not present in 'arr', then print -1.
2. There are no duplicate elements present in 'arr'.
3. 'arr' can be rotated only in the right direction.
Input: 'arr' = [12, 15, 18, 2, 4] , 'k' = 2
Output: 3
Explanation:
If 'arr' = [12, 15, 18, 2, 4] and 'k' = 2, then the position at which 'k' is present in the array is 3 (0-indexed).
By using Binary Search. I was able to solve.
In Technical Interviewer asked Python, Project related Questions, JavaScript and DBMS Questions. I was not able to give an explanation well for advance Java Script questions Hoisting, High-order Functions. also asked for Asynchronous JavaScript. so that's the reason, I was rejected in the Interview round



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.
By using Stack Data Structure, I was able to solve.

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