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 and Answers

Updated 27 Nov 2024

19 Interview questions

An Associate Software Engineer was asked 6mo ago
Q. Which platform do you use for coding?
Ans. 

I primarily code on platforms like GitHub, Visual Studio Code, and online coding environments such as LeetCode and HackerRank.

  • GitHub: I use it for version control and collaboration on projects.

  • Visual Studio Code: My go-to IDE for writing and debugging code.

  • LeetCode: I practice algorithms and data structures to improve my problem-solving skills.

  • HackerRank: I participate in coding challenges and competitions to enha...

An Associate Software Engineer was asked 9mo ago
Q. Given an array of size n containing numbers from 1 to n with one number missing, find the missing number.
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

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
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
🔥 Asked by recruiter 2 times
An Associate Software Engineer was asked 9mo ago
Q. What are some real-life applications 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 be...

An Associate Software Engineer was asked
Q. How can you swap two numbers without using a 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.

What people are saying about Nagarro

View All
a senior engineer
2d
💼 OFFER RECEIVED – Sr. Test Engineer (Band U3) | Tech Mahindra | Noida 📎 Screenshot attached | CTC: ₹13.5 LPA
✅ Variable is paid monthly and fully (as confirmed by HR) ❓ Looking to know the MONTHLY IN-HAND SALARY after standard deductions & partial FBP usage Would appreciate any insights from current/ex-TechM folks! 🙏
FeedCard Image
Got a question about Nagarro?
Ask anonymously on communities.
🔥 Asked by recruiter 2 times
An Associate Software Engineer was asked
Q. Given the head of a singly linked list, reverse the list, and return the reversed 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

An Associate Software Engineer was asked
Q. Declare an array and print it in reverse order.
Ans. 

Learn how to declare an array of strings and print it in reverse order using a simple programming approach.

  • Declare an array of strings: `String[] fruits = {"Apple", "Banana", "Cherry"};`

  • Use a loop to iterate through the array in reverse: `for (int i = fruits.length - 1; i >= 0; i--)`.

  • Print each element: `System.out.println(fruits[i]);`.

  • Example output for the above array: `Cherry`, `Banana`, `Apple`.

An Associate Software Engineer was asked
Q. Describe the two-pointer algorithm.
Ans. 

The two-pointer algorithm is an efficient technique for solving problems involving arrays or linked lists by using two indices.

  • 1. The two-pointer technique involves using two indices to traverse the data structure, often from opposite ends.

  • 2. It is commonly used in problems like finding pairs that sum to a specific value, e.g., in a sorted array.

  • 3. Example: Given an array [1, 2, 3, 4, 5] and a target sum of 6, poi...

Are these interview questions helpful?
An Associate Software Engineer was asked
Q. Write a program using string array.
Ans. 

This program manipulates an array of strings, allowing various operations like sorting, searching, and modifying elements.

  • Initialization: Create an array of strings, e.g., String[] fruits = {'Apple', 'Banana', 'Cherry'};

  • Sorting: Use Arrays.sort(fruits) to sort the array alphabetically.

  • Searching: Use Arrays.binarySearch(fruits, 'Banana') to find the index of 'Banana'.

  • Modification: fruits[1] = 'Blueberry'; changes '...

An Associate Software Engineer was asked
Q. Write code to find the frequency of each character in a 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.

An Associate Software Engineer was asked
Q. How can abstraction be achieved?
Ans. 

Abstraction can be achieved by hiding unnecessary details and only exposing essential features.

  • Identify the essential features of the system

  • Hide unnecessary details by encapsulating them

  • Use interfaces to define essential features

  • Implement the interfaces to provide functionality

  • Example: A car's interface is the steering wheel, pedals, and dashboard. The engine and transmission are encapsulated.

  • Example: A software i...

Nagarro Associate Software Engineer Interview Experiences

24 interviews found

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

I applied via Campus Placement 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
  • Ans. 

    I primarily code on platforms like GitHub, Visual Studio Code, and online coding environments such as LeetCode and HackerRank.

    • GitHub: I use it for version control and collaboration on projects.

    • Visual Studio Code: My go-to IDE for writing and debugging code.

    • LeetCode: I practice algorithms and data structures to improve my problem-solving skills.

    • HackerRank: I participate in coding challenges and competitions to enhance m...

  • Answered by AI
  • 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
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 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
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
  • Ans. 

    Learn how to declare an array of strings and print it in reverse order using a simple programming approach.

    • Declare an array of strings: `String[] fruits = {"Apple", "Banana", "Cherry"};`

    • Use a loop to iterate through the array in reverse: `for (int i = fruits.length - 1; i >= 0; i--)`.

    • Print each element: `System.out.println(fruits[i]);`.

    • Example output for the above array: `Cherry`, `Banana`, `Apple`.

  • Answered by AI
  • 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

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:
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 - 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
  • Ans. 

    This program manipulates an array of strings, allowing various operations like sorting, searching, and modifying elements.

    • Initialization: Create an array of strings, e.g., String[] fruits = {'Apple', 'Banana', 'Cherry'};

    • Sorting: Use Arrays.sort(fruits) to sort the array alphabetically.

    • Searching: Use Arrays.binarySearch(fruits, 'Banana') to find the index of 'Banana'.

    • Modification: fruits[1] = 'Blueberry'; changes 'Banan...

  • Answered by AI
  • 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

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:
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 - 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:
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 - 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
What are the most common questions asked in Nagarro Associate Software Engineer HR round?

The most common HR questions asked in Nagarro Associate Software Engineer interview are -

  1. What are your strengths and weakness...read more
  2. Where do you see yourself in 5 yea...read more
  3. What is your family backgrou...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.

Overall Interview Experience Rating

4.1/5

based on 18 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 58%
2-4 weeks 33%
6-8 weeks 8%
View more
Nagarro Associate Software Engineer Salary
based on 737 salaries
₹2 L/yr - ₹7 L/yr
19% less than the average Associate Software Engineer Salary in India
View more details

Nagarro Associate Software Engineer Reviews and Ratings

based on 169 reviews

3.6/5

Rating in categories

3.6

Skill development

3.9

Work-life balance

3.5

Salary

3.1

Job security

4.0

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 169 Reviews and Ratings
Associate Staff Engineer
3.3k salaries
unlock blur

₹10.1 L/yr - ₹36 L/yr

Staff Engineer
3.2k salaries
unlock blur

₹11.8 L/yr - ₹45 L/yr

Senior Engineer
2.6k salaries
unlock blur

₹6.2 L/yr - ₹23.6 L/yr

Senior Software Engineer
1.2k salaries
unlock blur

₹6.8 L/yr - ₹31 L/yr

Software Engineer
1.1k salaries
unlock blur

₹3.3 L/yr - ₹13 L/yr

Explore more salaries
Compare Nagarro with

Deloitte

3.8
Compare

Cognizant

3.7
Compare

TCS

3.6
Compare

Accenture

3.8
Compare
write
Share an Interview