Tip 1 : Have knowledge of an one Object oriented programming language in-depth
Tip 2 : Have a strong grip on DSA and Algorithms
Tip 3 : Do at least one project individually end-to-end and have complete clarity of tech/concepts implemented in it
Tip 1 : One-page resume is preferred as it will give a clarity on the candidate at a single glance
Tip 2 : Always rate your skills, like: Java : 4/5, React : 2/5, Machine Learning : 2.5/5, so that the interviewer know the skills you command and the interview may proceed in an orderly manner
It consisted of 4 sections:
1) Aptitude
2) Computer Related Subjects(DBMS, OS, CN etc.)
3) Questions related to programming language
4) Coding 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.
Using a hashmap, and stopping if element already exists in the map
Basic Tech+HR questions
Tip 1 : Be confident, Don't hesitate
Tip 2 : Be honest
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?