Tip 1 : Learn Core Subjects it will help in all aspects.
Tip 2 : Go through Aptitude
Tip 3 : Have few good projects in your resume.
Tip 1 : keep it one page
Tip 2 : should mentions coding profile links



Infix notation is a method of writing mathematical expressions in which operators are placed between operands. For example, "a + b" represents the addition of a and b.
Prefix notation is a method of writing mathematical expressions in which operators are placed before the operands. For example, "+ a b" represents the addition of a and b.
Expression contains lowercase English letters, ‘+’, ‘-’, ‘*’, and ‘/’.
Input: /-ab+-cde
Output: ((a-b)/((c-d)+e))
Explanation:
In this test case, there are four operators ‘/’, ‘-’, ‘+’, ‘-’.
Prefix expression: /-ab+-cde.
The operator between ‘a’ and ‘b’ is ‘-’. Resulting expression: /(a-b)+-cde.
The operator between ‘c’ and ‘d’ is ‘-’. Resulting expression: /(a-b)+(c-d)e.
The operator between ‘c-d’ and ‘e’ is +. Resulting expression: /(a-b)((c-d)+e).
The operator between ‘a-b’ and ‘((c-d)+e)’ is ‘/’. Resulting expression: ((a-b)/((c-d)+e)).



If two or more such subarrays exist, return any subarray.
Step 1 : I sort the array
Step 2 : applied two pointer approach



If there are any duplicates in the given array we will count only one of them in the consecutive sequence.
For the given 'ARR' [9,5,4,9,10,10,6].
Output = 3
The longest consecutive sequence is [4,5,6].
Can you solve this in O(N) time and O(N) space complexity?
Step 1 : I first sort the array and count the consecutive sequence, but it failed it gets TLE.
Step 2 : I used set to solved this problem.
Any real life example of abstraction.
Virtual Function
Virtual Function VS Pure Virtual Functions
Time complexity of Binary Search in best case?



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.
Step 1 : I first sort the array.
Step 2 : I used priority queue.
Step 3 : I used two variables.
How do you achieve abstraction in C++.
Why did you choose C++?
Does we find number of nodes in Circular Linked List?
How do you add column in database?
Introduction (no project asking)
Why do you want to join Nagarro?
What do you know about Nagarro?
Will you join immediately?
Gurugram location is okay to work?
Describe yourself in 5 words?
Any questions to ask?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?