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 Associate Engineer Interview Questions, Process, and Tips

Updated 10 Nov 2024

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 ...read more
  • Q2. 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 th ...read more
  • Q3. Convert First Letter to Upper Case Given a string STR , transform the first letter of each word in the string to uppercase. Example: Input: STR = "I am a student of the ...read more
View all 18 questions

Nagarro Associate Engineer Interview Experiences

30 interviews found

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
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were multiple aptitude questions including small coding questions.

Round 2 - Technical 

(1 Question)

  • Q1. Write a program for calculator
  • Ans. 

    A simple calculator program that can perform basic arithmetic operations

    • Create functions for addition, subtraction, multiplication, and division

    • Take user input for numbers and operation choice

    • Display the result of the operation

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why you want to work here.
  • Q3. What do you know about the company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall experience was excellent, no problem were faced during interviews.

Associate Engineer Interview Questions Asked at Other Companies

asked in Nagarro
Q1. Count Ways To Reach The N-th Stair Problem Statement You are give ... read more
asked in Nagarro
Q2. Trailing Zeros in Factorial Problem Find the number of trailing z ... read more
asked in Nagarro
Q3. Convert First Letter to Upper Case Given a string STR, transform ... read more
asked in Tata Steel
Q4. What are the test done during maintenance of a power transformer?
asked in Tata Steel
Q5. how to control the speed of an EOT crane without VFD?
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

I was interviewed 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

Nagarro interview questions for designations

 Associate

 (3)

 Associate Staff Engineer

 (40)

 Associate Software Engineer

 (24)

 Associate Principal Engineer

 (12)

 Associate Engineer Trainee

 (2)

 Associate DevOps Engineer

 (1)

 Senior Associate

 (5)

 Associate Trainee

 (2)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About Testing, SDLC, Types of testing

Get interview-ready with Top Nagarro Interview Questions

I applied via Campus Placement and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is Decorator, what is binary tree, what is difference between tree and binary tree , about hash map
  • Ans. 

    Decorator is a design pattern that allows behavior to be added to an individual object, either statically or dynamically.

    • Binary tree is a tree data structure in which each node has at most two children.

    • A tree is a data structure consisting of nodes connected by edges. A binary tree is a specific type of tree with at most two children per node.

    • A hash map is a data structure that maps keys to values for efficient lookup.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They mostly ask questions from your resume

Skills evaluated in this interview

I was interviewed before May 2021.

Round 1 - Coding Test 

Round duration - 90 minutes
Round difficulty - Medium

Round 2 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

  • Q1. 

    Convert First Letter to Upper Case

    Given a string STR, transform the first letter of each word in the string to uppercase.

    Example:

    Input:
    STR = "I am a student of the third year"
    Output:
    "I Am A Stu...
  • Ans. 

    The function takes a string as input and transforms the first letter of each word to uppercase.

    • Split the input string into individual words using spaces as delimiters.

    • For each word, convert the first letter to uppercase and concatenate the rest of the word.

    • Join the modified words back together with spaces to form the final transformed string.

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Lal Bahadur Shastri institute of management, Delhi. I applied for the job as Associate Engineer in GurgaonEligibility criteriaAbove 6.5 CGPANagarro interview preparation:Topics to prepare for the interview - DATA STRUCTURES, JAVA BASICS, OOP CONCEPTS, JAVASCRIPT AND ANGULAR BASICS.Time required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice more and more questions in your preferred programming language(atleast 2-3 a day)
Tip 2 : Be clear with data structures and its uses based on the given situations
Tip 3 : Java and OOP concepts should be very clear

Application resume tips for other job seekers

Tip 1 : Do not mention projects/technologies that you are unsure of
Tip 2 : For the projects that you wish to mention on the resume, make sure you know all the hows and whys about the technology and implementation of your project

Final outcome of the interviewSelected

I applied via Campus Placement and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. About oops concepts, about linked list, tree, arrays and graph. Asked about technical coding questions
  • Q2. Asked about basic programming and dynamic programming.
  • Q3. Answered

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare for basic oops concepts and their use in the programming language. Prepare some basic interview questions of data structures that definitely helps you to crack the interview of Nagarro.

I applied via Campus Placement and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Assignment 

There were 3 basic level coding questions on Arrays and String which can be easily done if you have some basic knowledge of DS

Round 2 - Technical 

(1 Question)

  • Q1. They asked questions from resume and 2 basic level coding questions.
Round 3 - HR 

(1 Question)

  • Q1. Some questions on why Nagarro? Location preferences and all these questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nagarro interview for freshers are not very tough.. you should know everything you have written in your resume. So wring only things you know. And stay calm and confident.

I was interviewed in Jul 2017.

Interview Questionnaire 

3 Questions

  • Q1. Basic Hybris Questions
  • Q2. Realtime Hybris related Questions
  • Q3. Simple HR Questions

Interview Preparation Tips

Round: Test
Experience: Simple IQ questions.
Tips: Do the questions which don't take time.
Duration: 30 minutes
Total Questions: 100

Round: Test
Experience: 4 questions were there with 20 test cases atleast 12 cases had to be passed.
Tips: Prepare sorting and searching It will help you there.
Duration: 1 hour
Total Questions: 4

Round: Technical Interview
Tips: Prepare interview questions available on internet.

Round: Technical Interview
Experience: A project lead took this on the next day.

Round: Techno Managerial
Experience: A project manager took this interview. He basically asked about what I have done in my previous projects and explained me how work is done there

Round: HR Interview
Experience: It was over a call and very basic.

Nagarro Interview FAQs

How many rounds are there in Nagarro Associate Engineer interview?
Nagarro interview process usually has 3-4 rounds. The most common rounds in the Nagarro interview process are Technical, HR and Coding Test.
How to prepare for Nagarro Associate Engineer interview?
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 SQL, Javascript, Java, C# and CSS.
What are the top questions asked in Nagarro Associate Engineer interview?

Some of the top questions asked at the Nagarro Associate Engineer interview -

  1. What is Decorator, what is binary tree, what is difference between tree and bin...read more
  2. Quick and merge time complexity and when worst case happens in quick s...read more
  3. Remove a linked list node without head or tail pointer gi...read more
How long is the Nagarro Associate Engineer interview process?

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

Tell us how to improve this page.

Nagarro Associate Engineer Interview Process

based on 23 interviews

5 Interview rounds

  • Aptitude Test Round
  • Coding Test Round
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
View more
Nagarro Associate Engineer Salary
based on 724 salaries
₹2.6 L/yr - ₹7 L/yr
14% less than the average Associate Engineer Salary in India
View more details

Nagarro Associate Engineer Reviews and Ratings

based on 192 reviews

3.5/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.2

Salary

3.1

Job security

3.8

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 192 Reviews and Ratings
Associate Staff Engineer
2.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Engineer
2.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
2.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
896 salaries
unlock blur

₹0 L/yr - ₹0 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