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

Clear (1)

Nagarro Software Developer Interview Questions, Process, and Tips

Updated 20 Jan 2025

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 ...read more
  • Q2. String Compression Problem Statement Ninja needs to perform basic string compression. For any character that repeats consecutively more than once, replace the repeated s ...read more
  • Q3. Ninja and the New Year Guests Problem Ninja has organized a new year party and wants to verify if the guests are programmers by challenging them with a coding task. As a ...read more
View all 105 questions

Nagarro Software Developer Interview Experiences

56 interviews found

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Closures, react lifecycles , redux data flow

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus is more on your understanding of basic concepts in any language.

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minute
Round difficulty - Hard

The test comprises of aptitude question in 1 half and aptitude question in 2 half then there is a coding round with 3 question and one was easy one was of medium and one was from hard, a deep understanding of question was a must

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and use a hashmap to store the difference between the target sum and each element.

    • Check if the current element's complement exists in the hashmap, if so, add the pair to the result list.

    • Sort the pairs based on the criteria mentioned in the question.

    • Return the list of pairs as the final output.

  • Answered by AI
  • Q2. 

    Rotational Equivalence of Strings Problem Statement

    Given two strings 'P' and 'Q' of equal length, determine if string 'P' can be transformed into string 'Q' by cyclically rotating it to the right any num...

  • Ans. 

    Check if one string can be transformed into another by cyclically rotating it to the right.

    • Iterate through all possible rotations of string P and check if any of them match string Q.

    • Use string concatenation and substring operations to simulate the rotation.

    • Optimize the solution to O(N) time complexity by checking if string Q is a substring of P concatenated with itself.

  • Answered by AI
  • Q3. 

    Height of Binary Tree

    You are provided with the Inorder and Level Order traversals of a Binary Tree composed of integers. Your goal is to determine the height of this Binary Tree without actually construc...

  • Ans. 

    Find the height of a Binary Tree given its Inorder and Level Order traversals without constructing it.

    • Use the properties of Inorder and Level Order traversals to determine the height of the Binary Tree.

    • The height of a Binary Tree is the number of edges on the longest path from the root to a leaf node.

    • Consider edge cases like a single node tree or empty tree while calculating the height.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 48 minutes
Round difficulty - Medium

This round was the most difficult round the interviewer was quite helpful and helped me throughout the interview

  • Q1. 

    Code Optimization Problem

    Ninja encountered an issue with a practice problem where certain test cases could not be passed due to high time complexity. You are provided with a snippet of pseudocode, and yo...

  • Ans. 

    Optimize pseudocode to compute XOR operations in a given range and return sum modulo 1000000007.

    • Use bitwise XOR properties to optimize the computation.

    • Avoid unnecessary nested loops by simplifying the logic.

    • Consider using modular arithmetic to handle large numbers efficiently.

  • Answered by AI
  • Q2. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in a given array.

    • Iterate through the array and keep track of the maximum sum subarray seen so far.

    • Use Kadane's algorithm to efficiently find the maximum subarray sum.

    • Handle cases where all elements in the array are negative.

    • Consider the sum of an empty subarray as 0.

  • Answered by AI
Round 3 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteriaAbove 6.5 gpaNagaaro interview preparation:Topics to prepare for the interview - C++, data structures and algorithms, database management system, sql, machine learning, operating systems, oopsTime required to prepare for the interview - 18 MonthsInterview preparation tips for other job seekers

Tip 1 : dont think you are from lower branch
Tip 2 : just strive hard and work hard
Tip 3 : practise whatever you are doing as much as you can

Application resume tips for other job seekers

Tip 1 : be short and precise
Tip 2 : dont write false information be thorough with whatever you have done in life

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

I applied via Campus Placement and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were asked on dynamic programming, projects, greedy algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with dynamic programming

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(3 Questions)

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.There was a 1 hour gap b/w the two tests.

  • Q1. 

    Count Derangements

    Determine the number of derangements possible for a set of 'N' elements. A derangement is a permutation where no element appears in its original position.

    Input:

    An integer 'T' repres...
  • Ans. 

    Count the number of derangements possible for a set of 'N' elements.

    • Derangement is a permutation where no element appears in its original position.

    • Use dynamic programming to calculate derangements efficiently.

    • Apply the formula: D(n) = (n-1) * (D(n-1) + D(n-2)), with base cases D(1) = 0 and D(2) = 1.

  • Answered by AI
  • Q2. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q3. 

    Common Elements Problem Statement

    Identify and output the common strings present in both given arrays of lowercase alphabets for each test case.

    Input:

    The first line contains an integer 'T' representin...
  • Ans. 

    The problem requires identifying and outputting common strings present in two arrays of lowercase alphabets for each test case.

    • Iterate through the elements of the second array and check if they are present in the first array.

    • Use a hash set or map to efficiently check for common elements.

    • Return the common strings in the order they appear in the second array.

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 question from DSA particulary Trees and after that some questions from OOPS were asked.

  • Q1. 

    Spiral Order Traversal of a Binary Tree

    Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

    Input:

    The input consists of a single line containing elem...
  • Ans. 

    Implement a function to return the spiral order traversal of a binary tree.

    • Traverse the binary tree level by level, alternating the direction of traversal.

    • Use a queue to keep track of nodes at each level.

    • Append nodes to the result list based on the traversal direction.

    • Handle null nodes appropriately to maintain the spiral order.

    • Example: Input: 1 2 3 -1 -1 4 5, Output: 1 3 2 4 5

  • Answered by AI
  • Q2. What is the difference between an Abstract Class and an Interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface can only have constants and abstract methods.

    • A class can extend only one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to provide a common base for subclasses, while interfaces are used to define a contr...

  • Answered by AI
  • Q3. What is the static keyword in Java?
  • Ans. 

    The static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an object of the class.

    • Static blocks are used to initialize static variables.

    • Example: public static int count = 0;

  • Answered by AI
  • Q4. What is the difference between a constructor and a method in Object-Oriented Programming?
  • Ans. 

    Constructor is a special method used to initialize objects, while a method is a regular function that performs a specific task.

    • Constructors are called automatically when an object is created, while methods need to be called explicitly.

    • Constructors have the same name as the class, while methods have unique names.

    • Constructors do not have a return type, while methods have a return type.

    • Example: Constructor - public ClassN...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had 2 questions from DSA and after that some basic HR questions were asked.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 1D array to store the number of ways to make change for each value from 0 to the target value.

    • Iterate through the denominations and update the array based on the current denomination.

    • The final answer will be the value at the target index of the ar

  • Answered by AI
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

    • Remove special characters and spaces from the input string

    • Convert the string to lowercase

    • Check if the modified string is a palindrome by comparing characters from start and end

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Nagarro interview questions for designations

 Software Developer Intern

 (6)

 Senior Software Developer

 (3)

 Associate Software Developer

 (2)

 Junior Software Developer

 (1)

 Lead Software Developer

 (1)

 Developer

 (1)

 Software Engineer

 (29)

 Senior Software Developer 2

 (1)

Interview Questionnaire 

1 Question

  • Q1. Full stack questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and ensure that you know you project well

Get interview-ready with Top Nagarro Interview Questions

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

The round was conducted at 12 in the college campus. It was a pen and paper based coding round and had 2 coding questions for which we had to write the best approach.

  • Q1. 

    Equilibrium Index Problem Statement

    Given an array Arr consisting of N integers, your task is to find the equilibrium index of the array.

    An index is considered as an equilibrium index if the sum of elem...

  • Ans. 

    Find the equilibrium index of an array where sum of elements on left equals sum on right.

    • Iterate through the array and calculate the total sum of all elements.

    • Then iterate again and keep track of the left sum and right sum, checking for equilibrium.

    • Return the index when left sum equals right sum, or -1 if no equilibrium index found.

  • Answered by AI
  • Q2. 

    Merge Sort Linked List Problem Statement

    You are given a singly linked list of integers. Your task is to sort the linked list using the merge sort algorithm.

    Explanation:

    Merge Sort is a divide and conq...

  • Ans. 

    Implement merge sort algorithm to sort a singly linked list of integers.

    • Divide the linked list into two halves using slow and fast pointers.

    • Recursively sort the two halves.

    • Merge the sorted halves using a merge function.

    • Handle base cases like empty list or single node list.

    • Ensure the termination of the linked list with -1 at the end.

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

There were 2 coding questions and we had to write the best approach for the questions.

  • Q1. 

    Convert Sentence Problem Statement

    Convert a given string 'S' into its equivalent representation based on a mobile numeric keypad sequence. Using the keypad layout shown in the reference, output the seque...

  • Ans. 

    Convert a given string into its equivalent representation based on a mobile numeric keypad sequence.

    • Create a mapping of characters to their corresponding numeric keypad sequences.

    • Iterate through the input string and append the numeric sequence for each character to the output.

    • Handle lowercase characters only, ignore special characters, capital letters, and spaces in the input string.

  • Answered by AI
  • Q2. 

    Subsequences of String Problem Statement

    You are provided with a string 'STR' that consists of lowercase English letters ranging from 'a' to 'z'. Your task is to determine all non-empty possible subsequen...

  • Ans. 

    Generate all possible subsequences of a given string.

    • Use recursion to generate all possible subsequences by including or excluding each character in the string.

    • Maintain a current index to keep track of the characters being considered.

    • Append the current character to each subsequence generated so far.

    • Recursively call the function with the next index to include the next character in subsequences.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

The interviewer asked me questions from arrays, strings and linked list.

  • Q1. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. 

    Find the length of the longest strictly increasing subsequence in an array of integers.

    • Use dynamic programming to keep track of the longest increasing subsequence ending at each element.

    • Initialize an array to store the lengths of the longest increasing subsequences.

    • Iterate through the array and update the lengths based on the previous elements.

    • Return the maximum length found in the array.

  • Answered by AI
  • Q2. 

    Binary Palindrome Check

    Given an integer N, determine whether its binary representation is a palindrome.

    Input:

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

    Check if the binary representation of a given integer is a palindrome.

    • Convert the integer to binary representation.

    • Check if the binary representation is a palindrome by comparing it with its reverse.

    • Return true if it is a palindrome, false otherwise.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 7 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Dynamic Programming, Game theory, System Design, Puzzles, AptitudeTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Do at-least 200+ dsa problems from various topics.
Tip 2 : Make 2-3 projects and be well versed with their functionality.
Tip 3 : Practice aptitude questions and time yourself while doing the questions.

Application resume tips for other job seekers

Tip 1 : Keep your resume short, try to make it one pager only.
Tip 2 : Mention only position specific projects, and if you have got a good academic score mention it on top.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Aws vpc gateway questions, devops drawback
  • Q2. Interfaces in oops
  • Ans. 

    Interfaces define a contract for classes to implement certain methods and properties.

    • Interfaces allow for polymorphism and loose coupling.

    • Classes can implement multiple interfaces.

    • Interfaces cannot be instantiated on their own.

    • Interfaces can have default method implementations.

    • Interfaces can be used to enforce design patterns like the adapter pattern.

  • Answered by AI
  • Q3. Meta programing

Interview Preparation Tips

Interview preparation tips for other job seekers - Not at all good experience. Looks like the structure is baffled now after pandemic hit. First of all HR people, they have so much attitude that you can't even ask them any query regarding your JD or project. Secondly there are many rounds but it all depends upon the interviewer mood only and only. Because you are not hired for a direct project, so if the interviewer is egoistic and high attitude, then it's difficult to get positive feedback even if round well all well. Disappointing experience. Suggestion would be to put right people for talent selection. If people are kept in similar way, every new candidate might have negative experience.

Interview Questionnaire 

1 Question

  • Q1. Logical Programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your self for MCQ and technical programs

I applied via Naukri.com and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Related to JavaScript and angukar

Interview Preparation Tips

Interview preparation tips for other job seekers - As a UI developer JavaScript is a must thing.

Interview Questionnaire 

1 Question

  • Q1. How and when API controller class instance generated in c#
  • Ans. 

    API controller class instance is generated when a request is made to the API endpoint.

    • API controller class is responsible for handling incoming requests and returning responses.

    • Instance of API controller class is generated by the ASP.NET Core framework when a request is made to the API endpoint.

    • API controller class instance is disposed of after the request has been processed.

    • API controller class can be customized and c

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Nagarro Interview FAQs

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

Some of the top questions asked at the Nagarro Software Developer interview -

  1. Difference between High severity and low severity with example, what is importa...read more
  2. Make a 3*3 cube where you need to fill the numbers using 1-9, rows, columns and...read more
  3. An array contain 6 different numbers, only 1 number is repeated for 5 times. So...read more
How long is the Nagarro Software Developer interview process?

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

Recently Viewed

SALARIES

TSMC

45 salaries

SALARIES

Mahindra & Mahindra

LIST OF COMPANIES

Discover companies

Find best workplace

INTERVIEWS

Skillz

No Interviews

INTERVIEWS

Nagarro

No Interviews

INTERVIEWS

Mittal Brothers

No Interviews

INTERVIEWS

Skillz

No Interviews

INTERVIEWS

TSMC

No Interviews

INTERVIEWS

Xavier Institute of Management

No Interviews

Tell us how to improve this page.

Nagarro Software Developer Interview Process

based on 40 interviews

5 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round - 1
  • HR Round - 2
  • Personal Interview1 Round
View more
Nagarro Software Developer Salary
based on 326 salaries
₹3 L/yr - ₹20.3 L/yr
19% more than the average Software Developer Salary in India
View more details

Nagarro Software Developer Reviews and Ratings

based on 70 reviews

4.0/5

Rating in categories

3.9

Skill development

4.2

Work-life balance

3.7

Salary

3.5

Job security

4.0

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 70 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
901 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