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

Filter interviews by

Nagarro Interview Questions, Process, and Tips for Freshers

Updated 3 Apr 2025

Top Nagarro Interview Questions and Answers for Freshers

View all 89 questions

Nagarro Interview Experiences for Freshers

Popular Designations

89 interviews found

I appeared for an interview in Sep 2021.

Round 1 - Coding Test 

(5 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

  • Q1. 

    Maximum Meetings Problem Statement

    Given the schedule of N meetings with their start time Start[i] and end time End[i], you need to determine which meetings can be organized in a single meeting room such ...

  • Ans. 

    Given N meetings with start and end times, find the maximum number of meetings that can be organized in a single room without overlap.

    • Sort the meetings based on their end times.

    • Iterate through the sorted meetings and select the next meeting that does not overlap with the current meeting.

    • Keep track of the selected meetings and return their indices in the order they are organized.

  • Answered by AI
  • Q2. 

    K Subsets with Equal Sum Problem Statement

    Determine whether it is possible to partition an array ARR into K subsets, each having an equal sum.

    Example:

    Input:
    ARR = [3, 5, 2, 4, 4], K = 2
    Output:
    tr...
  • Ans. 

    Yes, it is possible to partition an array into K subsets with equal sum.

    • Check if the total sum of the array is divisible by K.

    • Use backtracking to try all possible combinations of subsets.

    • Keep track of visited elements to avoid repetition.

    • Example: ARR = [3, 5, 2, 4, 4], K = 2. Possible subsets: [4, 5] and [2, 3, 4].

  • Answered by AI
  • Q3. 

    Merge k Sorted Linked Lists

    You are provided with 'K' sorted linked lists, each sorted in increasing order. Your task is to merge all these lists into one single sorted linked list and return the head of ...

  • Ans. 

    Merge k sorted linked lists into one single sorted linked list.

    • Create a min-heap to store the heads of all k linked lists.

    • Pop the smallest element from the heap and add it to the result list.

    • If the popped element has a next element, push it back to the heap.

    • Repeat until the heap is empty and return the merged sorted list.

  • Answered by AI
  • Q4. 

    Sort a "K" Sorted Doubly Linked List Problem Statement

    You are given a doubly linked list with 'N' nodes, where each node can deviate at most 'K' positions from its actual position in the sorted list. You...

  • Ans. 

    Sort a doubly linked list with nodes that can deviate at most K positions from their actual position in the sorted list.

    • Iterate through the doubly linked list and maintain a window of size K+1 to sort the elements within the window.

    • Use insertion sort within the window to sort the elements efficiently.

    • Repeat the process until the entire list is sorted.

    • Time complexity can be optimized to O(N*log(K)) using a priority queu

  • Answered by AI
  • Q5. 

    Duplicate Subtrees Problem Statement

    Given a binary tree, return the root values of all duplicate subtrees. Two subtrees are considered duplicate if they have the same structure with identical node values...

  • Ans. 

    Find root values of duplicate subtrees in a binary tree.

    • Traverse the tree in a bottom-up manner to identify duplicate subtrees.

    • Use a hashmap to store the subtree structure and count occurrences.

    • Return the root values of duplicate subtrees found.

    • Handle null nodes by using -1 in the input sequence.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 25 Minutes
Round difficulty - Medium

  • Q1. Can you explain the concept of keys in database management systems?
  • Ans. 

    Keys in database management systems are unique identifiers for rows in a table.

    • Keys are used to uniquely identify each record in a table.

    • Primary key is a unique identifier for a record in a table.

    • Foreign key is a field in one table that refers to the primary key in another table.

    • Composite key is a combination of multiple columns that uniquely identify a record.

    • Unique key ensures that all values in a column are unique.

  • Answered by AI
Round 3 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in GurgaonEligibility criteriaNo BacklogNagarro interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice data structures vigorously
Tip 2 : Do at least 3 projects
Tip 3 : Practice Atleast 250 Questions

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Nagarro Software Developer Interview Questions and Answers

Q1. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in a sequence. He plans to arrange them in 'N' rows such that: The first row contains 1 number. The second row contains 2 numbers. The third row contains 3 numbers, and so on. ... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

SDE Interview Questions & Answers

user image Anonymous

posted on 17 May 2022

I appeared for an interview in Aug 2021.

Round 1 - Coding Test 

(5 Questions)

Round duration - 180 minutes
Round difficulty - Medium

It was a long round of around 3 hours divided into 2 parts 
1. Aptitude(MCQ)
2. Coding(Subjective)

  • Q1. 

    Maximum Meetings Selection

    You are tasked with scheduling meetings in a single meeting room. Given N meetings, each with a start time Start[i] and end time End[i], determine the maximum number of meetings...

  • Ans. 

    Given start and end times of meetings, find the maximum number of meetings that can be scheduled in a single room.

    • Sort the meetings based on their end times in ascending order.

    • Iterate through the sorted meetings and select the ones that do not overlap with the previously selected meetings.

    • Keep track of the selected meetings and return their indices.

  • Answered by AI
  • Q2. 

    Partition to K Equal Sum Subsets Problem

    Given an array of integers and a positive integer 'K', determine if it is possible to divide the array into 'K' non-empty subsets such that the sum of elements in ...

  • Ans. 

    The problem involves dividing an array into K subsets with equal sum.

    • Use backtracking to try all possible combinations of subsets.

    • Keep track of the sum of elements in each subset and check if they are equal to the target sum.

    • Optimize by sorting the array in descending order and assigning elements to subsets greedily.

    • Handle edge cases like when the sum of elements is not divisible by K.

  • Answered by AI
  • Q3. 

    Merge k Sorted Linked Lists

    You are provided with 'K' sorted linked lists, each sorted in increasing order. Your task is to merge all these lists into one single sorted linked list and return the head of ...

  • Ans. 

    Merge k sorted linked lists into one single sorted linked list.

    • Create a min-heap to store the heads of all linked lists.

    • Pop the smallest element from the heap and add it to the result list.

    • If the popped element has a next element, push it back to the heap.

    • Repeat until all elements are merged into a single sorted list.

  • Answered by AI
  • Q4. 

    Sort a "K" Sorted Doubly Linked List

    Given a doubly-linked list with N nodes, where each node’s position deviates at most K positions from its position in the sorted list, your task is to sort this given ...

  • Ans. 

    Sort a doubly linked list where each node's position deviates at most K positions from its position in the sorted list.

    • Iterate through the doubly linked list and maintain a min-heap of size K+1 to keep track of the next smallest element.

    • Remove the smallest element from the heap and add it to the sorted list. Update the heap with the next element from the removed node's next position.

    • Continue this process until all node

  • Answered by AI
  • Q5. 

    Duplicate Subtrees Problem Statement

    Given a binary tree, return the root values of all duplicate subtrees. Two subtrees are considered duplicate if they have the same structure with identical node values...

  • Ans. 

    Find root values of duplicate subtrees in a binary tree.

    • Traverse the tree in a bottom-up manner to identify duplicate subtrees.

    • Use a hashmap to store the subtree structures and their frequencies.

    • Return the root values of duplicate subtrees based on hashmap entries.

  • Answered by AI
Round 2 - Telephonic Call 

(1 Question)

Round duration - 25 minutes
Round difficulty - Medium

The technical Interview round was not at all difficult. The main focus of the interviewer was my projects and development fields.
He also asked some DS/Algo questions that were at a medium level, and some easy questions for database management.

  • Q1. Can you explain the concept of keys in database management systems?
  • Ans. 

    Keys in database management systems are unique identifiers for rows in a table.

    • Keys ensure data integrity by enforcing uniqueness and relationships between tables.

    • Primary key uniquely identifies each record in a table (e.g. employee ID).

    • Foreign key establishes a link between two tables by referencing the primary key of another table.

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 15 minutes
Round difficulty - Easy

It took place on the same day as the technical round. It was quite the easiest round of all. The interviewer just asked me to introduce myself, projects I have worked on, my Internships experience, and were they internships paid.

  • Q1. Can you tell me about yourself?
  • Q2. Can you tell me about the different projects that you have worked on?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE in GurgaonEligibility criteria7.5 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, Dynamic Programming, Database Management, Operating System, Aptitude.Time required to prepare for the interview - 3.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least 2-3 Development Projects as it creates a great impression. 
Tip 2 : Do it simply don't include complex terms to explain anything/concept. 
Tip 3 : Practice as many questions as you can.

Application resume tips for other job seekers

Tip 1 : Resume should be one page only as being a fresher impact a lot.
Tip 2 : Resumes should contain all the links for projects and certificates as it impresses the interviewer.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Nagarro SDE Interview Questions and Answers

Q1. Partition to K Equal Sum Subsets Problem Given an array of integers and a positive integer 'K', determine if it is possible to divide the array into 'K' non-empty subsets such that the sum of elements in each subset is equal. Input: Number ... read more
View answer (1)

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

90 mints, reasoning , logical thinking, aptitude

Round 2 - Coding Test 

60mints c, c++, python, java

Round 3 - Technical 

(1 Question)

  • Q1. C programming basics
Round 4 - HR 

(1 Question)

  • Q1. About family, location

Top Nagarro Associate Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

Associate Engineer Interview Questions & Answers

user image ginesh goyal

posted on 30 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

60 min in 50 questions

Round 3 - Coding Test 

90 mintues in 3 coding average level question

Round 4 - Technical 

(2 Questions)

  • Q1. As per profile which u selected or applied
  • Q2. Development and automation testing basics
Round 5 - HR 

(1 Question)

  • Q1. Normal HR questions

Top Nagarro Associate Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

Nagarro interview questions for popular designations

 Senior Engineer

 (59)

 Staff Engineer

 (57)

 Software Developer

 (57)

 Associate Staff Engineer

 (41)

 Senior Software Engineer

 (30)

 Associate Engineer

 (30)

 Software Engineer

 (29)

 Associate Software Engineer

 (24)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basics of logical reasoning, maths and english

Round 2 - Case Study 

2 case studies based on rfp and written deliverable

Round 3 - Technical 

(1 Question)

  • Q1. How to prioritize stories if stakeholders say all are equally important
  • Ans. 

    Prioritize based on impact, urgency, and dependencies

    • Assess impact of each story on overall project goals

    • Consider urgency and deadlines associated with each story

    • Evaluate dependencies between stories and prioritize those that unlock others

    • Collaborate with stakeholders to understand their reasoning and negotiate priorities

    • Use techniques like MoSCoW method or Value vs Effort matrix to prioritize effectively

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - random selection on your luck and the interviewer's mood and feedback

Skills evaluated in this interview

Principal Consultant Interview Questions asked at other Companies

Q1. Have you worked on Business Rules and functions of Business Rules?
View answer (1)

Get interview-ready with Top Nagarro Interview Questions

I applied via Recruitment Consulltant and was interviewed in Nov 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Normal aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. Technical discussion on big data and some programing problem
Round 3 - Technical 

(1 Question)

  • Q1. 2nd technical discussion based on project, big data and python
Round 4 - HR 

(1 Question)

  • Q1. Normal HR discussion and salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your core skill and basic programming knowledge

Senior Data Engineer Interview Questions asked at other Companies

Q1. Write a query to get the customer with the highest total order value for each year, month. [Note: Order table is different and Customer table is different. Order_ID and Customer_ID are the PK of the table with Oid from Customer table being ... read more
View answer (2)

Jobs at Nagarro

View all
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Normal MCQ style questions involving basic concepts

Round 3 - Coding Test 

2 coding questions: 1st one average, 2nd one slightly better than average.

Round 4 - Technical 

(1 Question)

  • Q1. Conceptual questions involving linked list, sorting, and various other general topics.
Round 5 - HR 

(2 Questions)

  • Q1. Your introduction
  • Q2. Normal conversation about various random topics (HR was trying to check my communication ability)

Top Nagarro Software Developer Intern Interview Questions and Answers

Q1. Check If Binary Representation of a Number is Palindrome Given an integer N, determine if its binary representation is a palindrome. Input: The first line contains a single integer ‘T’ representing the number of test cases. The first and on... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Some apti + techical mcqs easily available on internet

Round 3 - Coding Test 

5 coding ques were there those who completed 3 fully correct were selected.

Round 4 - Technical 

(4 Questions)

  • Q1. Remove a linked list node without head or tail pointer given
  • Ans. 

    Removing a node from a linked list without head or tail pointer

    • Use the node to be removed's next node to copy its data and then delete the next node

    • Update the current node's next pointer to skip the next node

  • Answered by AI
  • Q2. Remove nth element from array
  • Ans. 

    Remove the nth element from an array of strings

    • Use the splice method to remove the element at the specified index

    • Remember that array indices start at 0

    • Example: array.splice(n, 1) will remove the element at index n

  • Answered by AI
  • Q3. 1 riddle I forgot
  • Q4. Quick and merge time complexity and when worst case happens in quick sort
  • Ans. 

    Quick sort has O(n log n) time complexity on average, O(n^2) worst case. Merge sort has O(n log n) time complexity always.

    • Quick sort has an average time complexity of O(n log n) due to its divide-and-conquer approach.

    • Worst case for quick sort occurs when the pivot element is either the smallest or largest element in the array, leading to O(n^2) time complexity.

    • Merge sort always has a time complexity of O(n log n) due t...

  • Answered by AI
Round 5 - HR 

(4 Questions)

  • Q1. Interview started with my introduction
  • Q2. Explain you previous experience
  • Q3. Do you have any existing offer and if yes then why this company
  • Q4. Your favorite programming language and why
  • Ans. 

    My favorite programming language is Python because of its simplicity, readability, and versatility.

    • Python is known for its clean and readable syntax, making it easy to learn and understand.

    • Python has a large standard library and many third-party libraries, allowing for rapid development of a wide range of applications.

    • Python is versatile and can be used for web development, data analysis, machine learning, automation,

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Online assessment was damn tough but do previously asked ques from OA as most of the time same question appears, Technical interview was suppeeeerr easy i cant even say medium.

Skills evaluated in this interview

Top Nagarro Associate Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

I appeared for an interview in Jul 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

2 coding questions 
Afternoon test 
Proctored

  • Q1. 

    Trailing Zeros in Factorial Problem

    Find the number of trailing zeroes in the factorial of a given number N.

    Input:

    The first line contains an integer T representing the number of test cases.
    Each of the...
  • Ans. 

    Count the number of trailing zeros in the factorial of a given number.

    • To find the number of trailing zeros in N!, count the number of factors of 5 in the prime factorization of N.

    • Each factor of 5 contributes to a trailing zero in the factorial.

    • For example, for N=10, there are 2 factors of 5 in the prime factorization (5 and 10), so there are 2 trailing zeros.

  • Answered by AI
  • Q2. 

    Count Ways To Reach The N-th Stair Problem Statement

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

  • Ans. 

    The problem involves finding the number of distinct ways to climb to the Nth stair by taking one or two steps at a time.

    • Use dynamic programming to solve this problem efficiently.

    • The number of ways to reach the Nth stair is the sum of the number of ways to reach the (N-1)th stair and the (N-2)th stair.

    • Handle large inputs by taking modulo 10^9+7 to avoid overflow.

    • Example: For N=3, there are 3 ways to climb to the third s

  • Answered by AI
Round 2 - Video Call 

Round duration - 30 mins
Round difficulty - Medium

Afternoon interview 
I was asked OOPS, OS, DBMS, DS and Algo questions. 
Questions around my project 
Questions around my internships

Round 3 - HR 

(1 Question)

Round duration - 15 mins
Round difficulty - Easy

Just after interview, HR asked general questions like whether I am a team player etc

  • Q1. Where do you see yourself in five years?

Interview Preparation Tips

Eligibility criteriaNo criteriaNagarro interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Algorithms, Networking, Operating SystemsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : revise interview questions for each topic 
Tip 2 : be prepared to be asked anything from your resume including projects 
Tip 3 : while practising coding, use notepad instead of IDEs

Application resume tips for other job seekers

Tip 1 : keep it to the point, 1 page resume is enough for a fresher 
Tip 2 : add important links like LinkedIn profile, leetcode profile

Final outcome of the interviewSelected

Top Nagarro Associate Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2023.

Round 1 - Coding Test 

2 Coding Test on DSA

Round 2 - Aptitude Test 

3 Hours aptitude test

Round 3 - One-on-one 

(1 Question)

  • Q1. 2 Rounds of Interview

Top Nagarro Senior Engineer Interview Questions and Answers

Q1. Write a program: two input, one is N(any integer, lets say 3), second input will be array of integers(duplicate/multiple occurrences of same integer, lets say [2,3,2,4,2] ). You have to return the number whose occurrence is greater than N/2... read more
View answer (3)

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (62)

Nagarro Interview FAQs

How many rounds are there in Nagarro interview for freshers?
Nagarro interview process for freshers usually has 3-4 rounds. The most common rounds in the Nagarro interview process for freshers are Technical, Aptitude Test and Coding Test.
How to prepare for Nagarro interview for freshers?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Nagarro. The most common topics and skills that interviewers at Nagarro expect are Troubleshooting, Debugging, SDLC, Software Development and Adobe.
What are the top questions asked in Nagarro interview for freshers?

Some of the top questions asked at the Nagarro interview for freshers -

  1. 1.what is stack? 2.undo-redo 3.backward and forward in the browser 4.polymorphi...read more
  2. Can Two Primary keys can be made possible in Sql Tabl...read more
  3. 1. Responsibility of Business analyst, product owner 2. Difference between Read...read more
How long is the Nagarro interview process?

The duration of Nagarro interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Nagarro Interview Process for Freshers

based on 43 interviews

Interview experience

4.1
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Nagarro

Interview Questions from Similar Companies

Genpact Interview Questions
3.8
 • 3.2k Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
NTT Data Interview Questions
3.8
 • 627 Interviews
Publicis Sapient Interview Questions
3.5
 • 621 Interviews
GlobalLogic Interview Questions
3.6
 • 593 Interviews
UST Interview Questions
3.8
 • 518 Interviews
CGI Group Interview Questions
4.0
 • 493 Interviews
View all

Nagarro Reviews and Ratings

based on 4.2k reviews

4.0/5

Rating in categories

3.8

Skill development

4.1

Work-life balance

3.8

Salary

3.7

Job security

4.0

Company culture

3.5

Promotions

3.7

Work satisfaction

Explore 4.2k Reviews and Ratings
Senior Staff Engineer - Java Fullstack

Gurgaon / Gurugram

10-13 Yrs

₹ 20-38.68216 LPA

Associate Staff Engineer, Java Fullstack

Gurgaon / Gurugram

5-7 Yrs

₹ 12.5-28 LPA

Staff Engineer, Java Fullstack

Gurgaon / Gurugram

7-10 Yrs

₹ 13.25-37.78132 LPA

Explore more jobs
Associate Staff Engineer
3.3k salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Staff Engineer
3.1k salaries
unlock blur

₹14.9 L/yr - ₹43.2 L/yr

Senior Engineer
2.4k salaries
unlock blur

₹6.2 L/yr - ₹23.8 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹5.1 L/yr - ₹27.8 L/yr

Engineer
972 salaries
unlock blur

₹3 L/yr - ₹11.3 L/yr

Explore more salaries
Compare Nagarro with

Deloitte

3.8
Compare

Cognizant

3.7
Compare

TCS

3.7
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview