Tip 1: Focusing on basic-level aptitude and topics like strings and arrays for the technical test round is enough to get shortlisted for the Prime role.
Tip 2: Prepare your projects and work experience well, as they are very impactful during the interview.
Tip 3: Don’t mention technologies you’re not confident with in your resume.
Tip 1: You should have basic knowledge of all the technologies mentioned in your resume; otherwise, don’t include them.
Tip 2: The focus of the resume should be on your projects and work experience.
This round was divided into two parts.
The first was a 75-minute aptitude section that included numerical ability, verbal ability, and logical reasoning. The questions were of moderate difficulty and covered a wide range of aptitude topics.
After that, there was a 25-minute advanced quantitative and reasoning section. The questions in this part were a bit trickier and required quicker thinking — a level up from the previous aptitude section.
Finally, there was a 90-minute coding round where I had to solve two programming questions, both based on hashmaps.



A majority element is an element that occurs more than floor('N' / 2) times in the array.



Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams.
'triangle' and 'integral'
'listen' and 'silent'
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct.



nodes, where the nodes have integer values.
For the given binary tree:

The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].
The Preorder traversal will be [1, 3, 5, 2, 4, 7, 6].
The Postorder traversal will be [5, 2, 3, 7, 6, 4, 1].



String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
Step 1: Use a Stack to reverse the first half of the cleaned string.
Step 2: Then compare it with the second half.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: