Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Nagarro Team. If you also belong to the team, you can get access from here

Nagarro Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 4k Reviews

Filter interviews by

Nagarro Technical Trainee Interview Questions, Process, and Tips for Freshers

Updated 16 Sep 2021

Top Nagarro Technical Trainee Interview Questions and Answers for Freshers

  • Q1. Find Nth Prime You are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural n ...read more
  • Q2. Count derangements A Derangement is a permutation of ‘N’ elements, such that no element appears in its original position. For example, an instance of derangement of {0, ...read more
  • Q3. Detect and Remove Loop Given a singly linked list, you have to detect the loop and remove the loop from the linked list, if present. You have to make changes in the given ...read more
View all 18 questions

Nagarro Technical Trainee Interview Experiences for Freshers

5 interviews found

Technical Trainee Interview Questions & Answers

user image CodingNinjas

posted on 15 Sep 2021

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 150 minutes
Round difficulty - Medium

It was an Aptitude test and Technical objective test of 60 minutes followed by a Coding test of 90 minutes. The round started at 2:00 PM. Candidates who cleared this round were shortlisted for the next round.

  • Q1. Maximum Sum path of a binary tree.

    You are given a binary tree having 'N' nodes. Each node of the tree has an integer value. Your task is to find the maximum possible sum of a simple path between a...

  • Ans. Recursive Solution

    First of all, we need to observe that for any simple path in a Binary tree, there is one and only one node at the maximum height. So, the idea is to fix each node as the highest node in a path and then find the maximum sum path having the current node as the highest node. The final answer will be the maximum value among all the path sum values for each node. To find the maximum sum path for a particul...

  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This was the technical interview round it started at 12:00 pm, here we were asked to explain the codes we wrote in the coding test and after that, we were given a coding problem for which we needed to write a pseudocode solution and explain it to the interviewer. The interviewer was quite polite and understanding even if we got stuck while writing the code he didn't rush the interview. Candidates who cleared this round were shortlisted for the HR round.

  • Q1. Properties of MST in a Undirected Graph

    G = (V,E) is an undirected simple graph in which each edge has a distinct weight, and e is a particular edge of G. Which of the following statements about the minimu...

Round 3 - HR 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

This round started at 4:00 pm, it was also conducted on Microsoft Teams. In this round, we were asked the basic HR questions.
Basically, the interviewer just wanted to test our confidence and communication skills.

  • Q1. Jumping Game

    You are given ‘n’ carrots numbered from 1 to ‘n’. There are k rabbits. Rabbits can jump to carrots only with the multiples of Aj(Aj,2Aj,3Aj…) for all rabbits from 1 to k.

    Whenever Rabbit rea...

  • Ans. 

    Tip 1: Your answer should be professional
    Tip 2 : Mention all your good points in the answer
     

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Manipur. I applied for the job as Trainee Technology in GurgaonEligibility criteriaAbove 6 CGPANagarro interview preparation:Topics to prepare for the interview - Aptitude, Data Structures, Algorithm, OOPS, CodingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 100 aptitude questions a week 
Tip 2 : Practice coding questions on coding platforms like coding ninjas codestudio, Geeksforgeeks, HackerEarth, etc.
Tip 3 : Prepare for the interview questions

Application resume tips for other job seekers

Tip 1 : The format of your resume should look professional
Tip 2 : Only put those skills in your resume on which you are confident
Tip 3 : Do mention all the projects or internships you have done
Tip 4: Do not put false things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Technical Trainee Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

I was interviewed in Jan 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This round consists of technical interview.
The interviewer ask questions related to the 3 coding problems given in previous round i.e.de-bug the code and explain the time and space complexity.
In last they give one problem of nearest square integer and want the optimized solution only.
The students selected in this round are shortlisted for next round.

  • Q1. Find The Closest Perfect Square

    You are given a positive integer ‘N’. You are required to print the perfect square number closest to the ‘N’ and the number of steps required to reach that number.

    For Exam...
  • Ans. Naive Approach

    We will move in both directions, positive and negative, of ‘N’, and check if we get any perfect square.

    Algorithm:

    1. Initiate a variable i = 0 .
    2. Iterate from
      1. Start a loop and keep adding and subtracting ‘i’ in ‘N’ and check for a perfect square.
      2. To check for a perfect square, you can use a for loop starting from (say) ‘j’ = 1 and less than that number (X) and check if( j * j == X). if equal, return true and brea...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Trainee Technology in GurgaonEligibility criteriaAbove 6 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures,Algorithms,OOPS,DBMS,Aptitude,SQLTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude questions according to previous year asked questions.
Tip 2 : Practice 5-10 new DSA problem per day.
Tip 3 : Practice 1-2 hard level DSA problem per day.
Tip 4 : For DBMS,OOPS and SQL give 1 week for each.

Application resume tips for other job seekers

Tip 1 : Make 1-2 project according to your skills section.
Tip 2 : Write only those skills in which you are confident of.
Tip 3 : Always update your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Technical Trainee Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Timing: Morning (10 AM)
Environment: Online (Proctored)
Coding Round (3 Questions)

  • Q1. Find Nth Prime

    You are given a number 'N'. Your task is to find Nth prime number.

    A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers hav...

  • Ans. 

    Step 1  I opted for the Sieve of Eratosthenes approach.
    Step 2  Store all prime numbers in a vector and return (n-1)th for Nth Prime Number.

  • Answered by CodingNinjas
  • Q2. Check whether second string can be formed from characters of first string

    You are given two strings STR1 and STR2. You need to check whether STR2 can be formed from the characters of STR1. Both the string...

  • Ans. 

    Step 1  The idea was to count frequencies of string 1 and deduct from frequencies of string 2 simultaneously.
    Step 2  If frequency at any stage becomes negative, false should be returned.

  • Answered by CodingNinjas
  • Q3.  Count derangements

    A Derangement is a permutation of ‘N’ elements, such that no element appears in its original position. For example, an instance of derangement of {0, 1, 2, 3} is {2, 3, 1, 0}, because ...

  • Ans. 

    Step 1  I followed the recursive approach initially, even though it passed all the cases.
    Step 2  I still had time so changed it to DP, which reduced my time.

  • Answered by CodingNinjas
Round 2 - Video Call 

(3 Questions)

Round duration - 40 minutes
Round difficulty - Medium

Timing: 10:00 AM
Environment: Online (Webcam + Mic on)
The interviewer was friendly and to the point.

  • Q1. Detect and Remove Loop

    Given a singly linked list, you have to detect the loop and remove the loop from the linked list, if present. You have to make changes in the given linked list itself and return the ...

  • Ans. 

    Step 1: I went for the Hashing technique, which was more of a brute force approach.
    Step 2: So, I went for a more optimized approach of Floyd’s Cycle-Finding Algorithm, which is 0(n) in Time and 0(1) in space. The interviewer was satisfied.

  • Answered by CodingNinjas
  • Q2. Spiral Order Traversal of a Binary Tree

    You have been given a binary tree of 'N' nodes. Print the Spiral Order traversal of this binary tree.

    For example
    For the given binary tree [1, 2, 3, -1, -...
  • Ans. Level Order Traversal

    We can use level order traversal (recursive) to explore all levels of the tree. Also, at each level nodes should be printed in alternating order. 

     

    For example - The first level of the tree should be printed in left to the right manner, the Second level of the tree should be printed in right to the left manner, Third again in left to right order and so on

     

    So, we will use a Direction v...

  • Answered by CodingNinjas
  • Q3. Trapping Rainwater

    You have been given a long type array/list 'ARR' of size 'N'. It represents an elevation map wherein 'ARR[i]' denotes the elevation of the 'ith' bar. Prin...

  • Ans. 

    Step 1  I preferred initially to traverse each array element and find the highest bars.
    Step 2  To improve on the previous solution, instead of array traversal, I pre-computed the heights of the highest bars on left and right.

  • Answered by CodingNinjas
Round 3 - HR 

(3 Questions)

Round duration - 20 minutes
Round difficulty - Easy

Timing (In Evening)
Environment (Same as Technical Interview)

  • Q1. What are your Strengths and Weakness?
  • Ans. 

    Tip 1: Be confident
    Tip 2: Look at them with a straight back
    Tip 3: Be honest and highlight your strengths.

  • Answered by CodingNinjas
  • Q2. Where do you see yourself in 5 years?
  • Ans. 

    Tip 1 : Don't say things like the CEO of the company or where you're sitting.
    Tip 2 : Try to read different answers and be confident.

  • Answered by CodingNinjas
  • Q3. Questions about the company.
  • Ans. 

    Tip 1 : Before any interview have knowledge of what the company does.
    Tip 2 : How it has performed over the years, what are its focus in business?

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as Trainee Technology in GurgaonEligibility criteriaAbove 60% in B.Tech, B.Tech in CSE/ECE/ITNagarro interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Operating Systems, DBMS, Computer NetworkTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : For DS and Algo, keep practicing every day on Leetcode, HackerEarth, and make a habit of participating in contests.
Tip 2 : Projects are vital in interviews, have at least 3 projects on Resume, in the field/profile which you're applying for.
Tip 3 : Give Mock Interviews.

Application resume tips for other job seekers

Tip 1 : Resume should be short and keep it under 1 page.
Tip 2 : Include skills that you're 100% confident in.
Tip 3 : Highlight your internships and projects section appropriately

Final outcome of the interviewSelected

Skills evaluated in this interview

Technical Trainee Interview Questions & Answers

user image CodingNinjas

posted on 14 Sep 2021

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing Morning 
Environment Online
3 Coding Questions were asked

  • Q1. Count Ways To Reach The N-th Stairs

    You have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. Y...

  • Ans. Brute Force

    One basic approach is to explore all possible steps which can be climbed with either taking one step or two steps. So at every step, we have two options to climb the stairs either we can climb with one step, or we can climb with two steps. So the number of ways  can be recursively defined as :

    countDistinctWayToClimbStair ( currStep, N ) = countDistinctWayToClimbStair ( currStep+1, N ) + countDistinctWay...
  • Answered by CodingNinjas
  • Q2. Find Nth Prime

    You are given a number 'N'. Your task is to find Nth prime number.

    A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers hav...

  • Ans. Brute Force

    Consider a function FINDPRIME that takes number N as input parameter and do:

    1. Initialize NUM to 1 and COUNT to 0.
    2. Iterate for COUNT, while COUNT<=N:
      1. Increment NUM by 1
      2. Iterate for each 2<= i <= NUM and check:
        1. If NUM % i == 0, break the loop.
      3. Check if i == NUM, it is a prime number. Do:
        1. Increment COUNT by 1.
    3. Print NUM.
    Space Complexity: O(1)Explanation:

    O(1),

     

    The space complexity of the approach is O(1) b...

  • Answered by CodingNinjas
  • Q3. Compress the String

    Ninja has been given a program to do basic string compression. For a character that is consecutively repeated more than once, he needs to replace the consecutive duplicate occurrences w...

  • Ans. Greedy Approach

    Here, we can simply traverse the string and run two loops where the outer loop will hold the unique characters and the inner loop will count the consecutive repetitions of that character. Once, we encounter a new character, our inner loop breaks and now our outer loop will start again from the new character. In this process, while getting the repetitions of each character, we can append the character and...

  • Answered by CodingNinjas
Round 2 - Video Call 

(3 Questions)

Round duration - 40 minutes
Round difficulty - Medium

Timing Morning
Environment Online
Interviewer was very supportive during the Interview

  • Q1. Two Sum

    You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.

    Note:

    We cannot use th...
  • Ans. Hashing Solution
    • We can store the frequency of every element in the array in a hashmap.
    • We will loop over every index i, and check the frequency of (Target - ARR[i]) is the hashmap:
      • If (Target - ARR[i]) is equal to ARR[i], we will check if frequency of ARR[i] . If it is greater than 1 then we will decrease the frequency of ARR[i] by 2 and add a pair (ARR[i] , ARR[i]) to our answer.
      • Else, if the frequency of ARR[i] and Targ...
  • Answered by CodingNinjas
  • Q2. Trapping Rain Water

    You have been given a long type array/list 'ARR' of size 'N'. It represents an elevation map wherein 'ARR[i]' denotes the elevation of the 'ith' bar. Pri...

  • Ans. Brute Force Approach

    The idea here is to travel over every elevation on the map and calculate the units of water the elevation can store.

     

    Here is the algorithm :

     

    1. Iterate over every elevation or element and find the maximum elevation on to the left and right of it. Say, the maximum elevation on to the left of the current elevation or element that we are looking at is ‘maxLeftHeight’ and the maximum elevation on...
  • Answered by CodingNinjas
  • Q3. Spiral Order Traversal of a Binary Tree

    You have been given a binary tree of 'N' nodes. Print the Spiral Order traversal of this binary tree.

    For example
    For the given binary tree [1, 2, 3, -1, -...
  • Ans. Level Order Traversal

    We can use level order traversal (recursive) to explore all levels of the tree. Also, at each level nodes should be printed in alternating order. 

     

    For example - The first level of the tree should be printed in left to the right manner, the Second level of the tree should be printed in right to the left manner, Third again in left to right order and so on

     

    So, we will use a Direction v...

  • Answered by CodingNinjas
Round 3 - HR 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

Timing Morning
Environment Online
Interviewer was friendly

  • Q1. Basic HR Questions

    Introduce Yourself

    Strengths and Weakness

    Brief discussion about Internship

  • Ans. 

    Tip 1 : You should be confident during your introduction as it gives your first impression to the interviewer.

    Tip 2 : You should be honest.

    Tip 3 : Don't Hesitate.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Trainee Technology in GurgaonEligibility criteriaAbove 60% in B.tech (CSE/IT/ECE)Nagarro interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, Dynamic Programming, Trees ,Graphs ,DBMS and Computer NetworksTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Keep Practicing Ds and Algorithm questions on regular basis.
Tip 2 : Make resume short, simple and to the point.
Tip 3 : Be regular on coding platforms and participate in coding contest.
Tip 4 : Revise Theoretical topics such as computer networks, operating systems etc.

Application resume tips for other job seekers

Tip 1 : Add skills and technologies you are confident with.
Tip 2 : Make resume simple and precise
Tip 3 : Go through the projects you have mentioned in the resume.
Tip 4 : Go through the resume before the interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

Nagarro interview questions for designations

 Engineer Trainee

 (1)

 Associate Engineer Trainee

 (2)

 Trainee

 (14)

 Graduate Engineer Trainee (Get)

 (3)

 Technology Trainee

 (4)

 ASE Trainee

 (4)

 Associate Trainee

 (1)

 Project Trainee

 (1)

Technical Trainee Interview Questions & Answers

user image CodingNinjas

posted on 15 Sep 2021

I was interviewed in Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Easy

It was an online coding round consisting of 3 questions conducted on Mettl platform. It started at 10:00 am and the test duration was of 90 mins. The questions were pretty easy of topics like arrays and strings.

  • Q1. Find Nth Prime

    You are given a number 'N'. Your task is to find Nth prime number.

    A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers hav...

  • Ans. 

    The logic is simple.

    Step1 : First, you take input from the user asking the value of n.

    Step2 : Then you run a loop finding all the prime numbers.

    Step3 :  Whenever a prime number is found, the count is increased and if the count is equal to the input of user (i.e., if the prime number found is the nth prime number), then print it.

  • Answered by CodingNinjas
  • Q2. Count Palindrome Words in A String

    You are given a string S of words. Your task is to find the number of palindrome words in the given string S. A word is called palindrome, if it reads the same backwards ...

  • Ans. 

    1. We will take each word after a space “ “ in a sentence and pass it to a function.

    2.The function transforms the characters of words in lowercase.

    3. Now start traversing from the first character of the word and compare word[0] with word[length-1], word[1] with word[length-2] and so on.

    4. If any mismatch occurs break loop else return true.

     

  • Answered by CodingNinjas
  • Q3. Distribute N candies among K people

    Sanyam has ‘N’ candies, he wants to distribute that into ‘K’ of his friends. He made his ‘K’ friends stand in line, in increasing order of his likeness. Not being so sma...

  • Ans. 

    I had done this question before.

  • Answered by CodingNinjas
Round 2 - Face to Face 

(2 Questions)

Round duration - 20-30 minutes
Round difficulty - Easy

Interview was scheduled for 11:00 am and took around 20 mins. It was conducted on MS teams. The interviewer was polite and frank.
After the introduction he asked me some questions related to OOPS such as:
1. What are the principles of OOPS
2. What do you mean by polymorphism?
3. What is function overloading?
4. What are abstract classes and interface.

Then he gave me one coding question to solve. He told me to write the code on notepad and share screen.
question asked: Reverse the stack using recursion.

I was not able to solve this problem hence he gave me another question:
question: Reverse the linkedlist without using any extra space.

  • Q1. Reverse Stack Using Recursion

    Reverse a given stack of integers using recursion.

    Note:

    You are not allowed to use any extra space other than the internal stack space used due to recursion.
    You are not a...
  • Ans. 

    I was not able to solve this question

  • Answered by CodingNinjas
  • Q2. Reverse Linked List
    Input Format :
    The first line of input contains a single integ...
  • Ans. 

    Step1 : I tried to solve this problem by making a new linkedlist.

    Step2 : Then I tried using stack.

    Step3 : Interview told me to optimize the approach without using any extra space.

    Step4 : I could not think of optimized solution

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaBtech- CSE, IT and ECE and MCA. 60% in the current degree with one pending backlogNagarro interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, DBMS, Operating SystemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Leave the subject but never leave the topic
Tip 2 : Have good hold on DSA
Tip 3 : Always go through the interview experiences of the company and common interview questions

Application resume tips for other job seekers

Tip 1 : Never add false things on your resume
Tip 2 : Add atleast 2 projects

Final outcome of the interviewRejected

Skills evaluated in this interview

Get interview-ready with Top Nagarro Interview Questions

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Oct 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your internship, projects. Also, Interviewer asked basic technical questions related to programming, SQL, Python.

Interview Preparation Tips

Interview preparation tips for other job seekers - The best advice would be to stay confident with whatever you're speaking. Stay true to your resume and experiences. Brush up the important topics from whichever domain you're coming from and revise the basics of programming, OOPs, DS(basic).
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at B M S College of Engineering, Bangalore and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was basic aptitude quants and also verbal

Round 2 - Coding Test 

They asked me basic questions such as print the prime and fibannoci

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about the best day in your life
  • Ans. 

    The best day of my life was when I graduated from college and landed my dream job.

    • Graduating from college after years of hard work

    • Receiving a job offer for my dream job

    • Celebrating with family and friends

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a recent high school graduate with a passion for learning and a strong work ethic.

    • Recent high school graduate

    • Passionate about learning

    • Strong work ethic

  • Answered by AI
  • Q2. What are your skills?
  • Ans. 

    I have strong communication skills, problem-solving abilities, and a willingness to learn.

    • Strong communication skills - able to effectively convey information and ideas

    • Problem-solving abilities - can analyze situations and come up with solutions

    • Willingness to learn - eager to acquire new knowledge and skills

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is oops,simple sql query
  • Ans. 

    OOPs stands for Object-Oriented Programming. A simple SQL query is a basic query used to retrieve data from a database.

    • OOPs refers to a programming paradigm based on the concept of objects

    • SQL is a language used to interact with databases

    • A simple SQL query can be a SELECT statement to retrieve data from a table

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why you want to join this company
  • Q2. What is your expected ctc
  • Ans. 

    My expected CTC is negotiable based on the company's offer and benefits package.

    • I am open to discussing salary based on the responsibilities and opportunities provided by the role.

    • I am looking for a competitive salary that reflects my skills and experience in the industry.

    • I am also interested in benefits such as health insurance, retirement plans, and professional development opportunities.

    • I am flexible and willing to ...

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
DXC Technology Interview Questions
3.7
 • 794 Interviews
View all
Nagarro Technical Trainee Salary
based on 4 salaries
₹3 L/yr - ₹5.5 L/yr
30% more than the average Technical Trainee Salary in India
View more details

Nagarro Technical Trainee Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-Life balance

4.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Associate Staff Engineer
2.8k salaries
unlock blur

₹10 L/yr - ₹35.2 L/yr

Staff Engineer
2.8k salaries
unlock blur

₹14.5 L/yr - ₹43.2 L/yr

Senior Engineer
2.3k salaries
unlock blur

₹6.5 L/yr - ₹25 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹7.5 L/yr - ₹30.9 L/yr

Software Engineer
933 salaries
unlock blur

₹3 L/yr - ₹12.2 L/yr

Explore more salaries
Compare Nagarro with

Deloitte

3.8
Compare

Cognizant

3.8
Compare

TCS

3.7
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview