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

Updated 27 Nov 2024

Top Nagarro Associate Software Engineer Interview Questions and Answers

  • Q1. N-th Term Of Geometric Progression Find the N-th term of a Geometric Progression (GP) series given the first term A , the common ratio R , and the term position N . Expl ...read more
  • Q2. Remove String from Linked List Problem You are provided with a singly linked list where each node contains a single character, along with a string 'STR'. Your task is to ...read more
  • Q3. Longest Increasing Subsequence Problem Statement Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is grea ...read more
View all 15 questions

Nagarro Associate Software Engineer Interview Experiences

24 interviews found

I applied via Referral and was interviewed before Feb 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

In that round there was some apti questions as well as some algo based mcq questions and their difficulty level was moderate.

Round 2 - Coding Test 

There was 3 coding Questions for 90 mins but now they are asking 5 questions for 120 mins and questions level was medium.

Round 3 - Technical 

(4 Questions)

  • Q1. Memory management and basic question
  • Q2. Explain one algo ,OOPS concept
  • Ans. 

    OOPS concept - Inheritance

    • Inheritance is a mechanism in OOPS where a new class is derived from an existing class

    • The new class inherits all the properties and behavior of the existing class

    • It allows code reusability and helps in creating a hierarchy of classes

    • Example: A class 'Car' can be inherited by a class 'SUV' which will have all the properties of 'Car' and additional properties specific to 'SUV'

    • Inheritance can be ...

  • Answered by AI
  • Q3. One code to solve find frequency of every character of string
  • Ans. 

    A code to find the frequency of every character in a string.

    • Create an empty dictionary to store the frequency of each character.

    • Iterate through the string and for each character, check if it is already in the dictionary.

    • If it is, increment its value by 1. If it is not, add it to the dictionary with a value of 1.

    • Return the dictionary with the frequency of each character.

  • Answered by AI
  • Q4. SQL Commands,difference between Delete and truncate.
  • Ans. 

    Delete and truncate are SQL commands used to remove data from a table, but they differ in their functionality.

    • DELETE command is used to remove specific rows from a table based on a condition

    • TRUNCATE command is used to remove all the rows from a table

    • DELETE command can be rolled back, while TRUNCATE command cannot be rolled back

    • DELETE command is slower than TRUNCATE command

    • DELETE command can be used with or without a WH...

  • Answered by AI
Round 4 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Ans. 

    My family background is diverse and multicultural, with members from different professions and backgrounds.

    • My father is a doctor and my mother is a teacher.

    • I have two siblings, one is an engineer and the other is a lawyer.

    • We have relatives living in different countries, including the USA, Canada, and India.

    • Our family values education and encourages continuous learning.

  • Answered by AI
  • Q2. Why should we hire you?
  • Ans. 

    I have a strong technical background and a passion for software development.

    • I have a Bachelor's degree in Computer Science and have completed several internships where I gained hands-on experience in software development.

    • I am proficient in multiple programming languages such as Java, C++, and Python.

    • I have a solid understanding of data structures and algorithms, which allows me to write efficient and optimized code.

    • I a...

  • Answered by AI
  • Q3. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team and working on complex projects.

    • Leading a team of software engineers

    • Working on complex projects

    • Continuously learning and improving my skills

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q4. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weaknesses include time management and public speaking.

    • Strengths: problem-solving - I enjoy analyzing complex problems and finding efficient solutions.

    • Strengths: adaptability - I am able to quickly adapt to new technologies and work environments.

    • Strengths: teamwork - I work well in a team, collaborating with others to achieve common goals.

    • Weaknesses: ...

  • Answered by AI
  • Q5. Tell me about yourself.
  • Ans. 

    I am a passionate software engineer with experience in developing and implementing software solutions.

    • Experienced in programming languages such as Java, C++, and Python

    • Proficient in software development methodologies and tools

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork abilities

    • Developed a web application using Java Spring framework for a client

    • Contributed to open-source projects on

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The hiring process was really good and be prepared before sitting in that exam.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It contain 40 question which is very easy

Round 2 - Coding Test 

It contain 3 coding question

Round 3 - One-on-one 

(5 Questions)

  • Q1. Introduction About Your Self and About Project
  • Q2. Two dsa question of leetcode
  • Q3. Basics Concept on dsa
  • Q4. From which platform you do coding
  • Q5. Simple Simple Question

Interview Preparation Tips

Topics to prepare for Nagarro Associate Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Very good company

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Coding Test 

Aptitude test along with CS fundamentals and Coding problems

Round 2 - One-on-one 

(2 Questions)

  • Q1. Real life application of data structures
  • Ans. 

    Data structures like arrays and linked lists are used in real life applications such as social media networks, databases, and GPS systems.

    • Social media networks use arrays to store user profiles and linked lists to manage friend connections.

    • Databases use data structures like B-trees and hash tables to efficiently store and retrieve data.

    • GPS systems use graphs to represent road networks and find the shortest path between

  • Answered by AI
  • Q2. Find missing number in array of n size where numbers are from 1 to n
  • Ans. 

    Use the formula for sum of first n natural numbers to find the missing number in the array.

    • Calculate the sum of first n natural numbers using the formula n*(n+1)/2

    • Calculate the sum of all numbers in the array

    • Subtract the sum of array from the sum of first n natural numbers to find the missing number

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have your fundamentals cleared. And have decent communication skills.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Technocrats Institute of Technology, Bhopal and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Normal Aptitude and reasoning questions

Round 2 - Coding Test 

Easy level of questions in Array and String

Round 3 - Technical 

(2 Questions)

  • Q1. Asked normal questions in java, own project, and dsa
  • Q2. Oops question 1 aptitude question 1 string question on easy level in leetcode
Round 4 - HR 

(2 Questions)

  • Q1. Basic HR question
  • Q2. 1. Intro 2. why do you want to join our company 3. Hobby 4. Challenges

Nagarro interview questions for designations

 Associate Software Developer

 (2)

 Software Engineer

 (29)

 Senior Software Engineer

 (30)

 Lead Software Engineer

 (1)

 Software Engineer Trainee

 (1)

 Software Engineer II

 (1)

 Principal Software Engineer

 (1)

 Associate Principal Engineer

 (12)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

They asked me a quiz

Round 3 - Technical 

(4 Questions)

  • Q1. Asking about linked list
  • Q2. Reverse The Linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start from the head of the linked list

    • Iterate through the list and change the direction of pointers to reverse the list

    • Update the head to point to the last node as the new head

  • Answered by AI
  • Q3. First they asked to declare an array then asked me to print it in the reverse order
  • Q4. Swap two no without third variable
  • Ans. 

    To swap two numbers without using a third variable, use arithmetic operations.

    • Use addition and subtraction to swap the numbers. For example, a=5, b=10. a=a+b, b=a-b, a=a-b will swap the values.

    • Another method is to use XOR operation. For example, a=5, b=10. a=a^b, b=a^b, a=a^b will swap the values.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. How you rate yourself, how you manage work overload

Skills evaluated in this interview

Get interview-ready with Top Nagarro Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Basic codes
of string anagram and arrays

Round 3 - Technical 

(5 Questions)

  • Q1. Oops, core java, DSA, real life example of DSA
  • Q2. Sql queries, joins
  • Q3. String array programm
  • Q4. Agile methodology vs scrum questions
  • Q5. Latest technologies right now
  • Ans. 

    Some of the latest technologies right now include artificial intelligence, machine learning, blockchain, Internet of Things (IoT), and 5G.

    • Artificial intelligence (AI) - used in various industries for automation and decision-making

    • Machine learning - subset of AI that enables systems to learn and improve from experience

    • Blockchain - decentralized and secure way of storing and sharing data

    • Internet of Things (IoT) - network...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go through the basics of programming lang, DSA till linked list, stack queue
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at Indian Institute of Technology (IIT), Roorkee

Round 1 - Group Discussion 

Friends be professional or personal

Round 2 - Aptitude Test 

Maths, Aptitude and Data Science

Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion on Machine Learning
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Aptitude test contains reasoning, quants and english easy to clear.

Round 3 - Coding Test 

Coding test contains 5 questions. 3 for developer and 2 more for commando developer with different salary.

Round 4 - Technical 

(2 Questions)

  • Q1. 15 minutes technical knowledge based interview which focuses on your resume's highlighted skills.
  • Q2. Dsa questions related to sorting and searching. Oops concepts. SQL questions.
Round 5 - HR 

(1 Question)

  • Q1. Question on your preferred technology like what do you know about this tech?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company as a fresher because you wouldn't get any projects and that would lead to waste your time. Project allocation is worst in this company.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. In this round, he was directly asked questions related to dsa without asking my introduction
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

There were total 5 coding que , 2 hard 3 medium

Round 2 - Technical 

(1 Question)

  • Q1. 1.Move all zeroes to the end ,2. Count frequency of characters in string
  • Ans. 

    The question involves two tasks: moving all zeroes to the end of an array and counting the frequency of characters in a string.

    • To move all zeroes to the end of an array, iterate through the array and keep track of the non-zero elements. Then, fill the remaining positions with zeroes.

    • To count the frequency of characters in a string, iterate through the string and use a dictionary or array to store the count of each char

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic introduction

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jan 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

There were 2 coding questions medium level

Round 3 - Technical 

(2 Questions)

  • Q1. It was a technical interview where the interview asked to introduce yourself and then asked a few technical concepts and 3 coding questions it was around 20 min round
  • Q2. Oops concepts DSA questions

Nagarro Interview FAQs

How many rounds are there in Nagarro Associate Software Engineer interview?
Nagarro interview process usually has 3-4 rounds. The most common rounds in the Nagarro interview process are Coding Test, Technical and Aptitude Test.
What are the top questions asked in Nagarro Associate Software Engineer interview?

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

  1. one code to solve find frequency of every character of str...read more
  2. Find missing number in array of n size where numbers are from 1 t...read more
  3. SQL Commands,difference between Delete and trunca...read more
How long is the Nagarro Associate Software Engineer interview process?

The duration of Nagarro Associate Software 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 Software Engineer Interview Process

based on 18 interviews

5 Interview rounds

  • Resume Shortlist Round
  • Coding Test Round
  • Technical Round
  • HR Round - 1
  • HR Round - 2
View more
Nagarro Associate Software Engineer Salary
based on 721 salaries
₹2 L/yr - ₹9 L/yr
20% less than the average Associate Software Engineer Salary in India
View more details

Nagarro Associate Software Engineer Reviews and Ratings

based on 164 reviews

3.6/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.5

Salary

3.1

Job security

4.0

Company culture

3.3

Promotions

3.4

Work satisfaction

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

₹10 L/yr - ₹35.2 L/yr

Staff Engineer
2.8k salaries
unlock blur

₹14.6 L/yr - ₹43.2 L/yr

Senior Engineer
2.4k salaries
unlock blur

₹5.9 L/yr - ₹25 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹5.9 L/yr - ₹28 L/yr

Engineer
900 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare Nagarro with

Deloitte

3.8
Compare

Cognizant

3.8
Compare

TCS

3.7
Compare

Accenture

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