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

Updated 27 Feb 2025

Top Nagarro 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
    asked in Software Developer interview
  • Q2. 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] ...read more
    asked in Senior Engineer interview
  • Q3. Digits Decoding Problem Statement A few days back, Ninja encountered a string containing characters from ‘A’ to ‘Z’ which indicated a secret message. For security purpos ...read more
    asked in Senior Software Engineer interview
View all 471 questions

Nagarro Interview Experiences

Popular Designations

759 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding and Aptitude inline test

Round 2 - Technical 

(3 Questions)

  • Q1. Microservices design pattern
  • Ans. 

    Microservices design pattern focuses on breaking down applications into smaller, independent services.

    • Microservices architecture involves breaking down a large application into smaller, independent services that communicate with each other through APIs.

    • Each microservice is responsible for a specific function or feature of the application.

    • Microservices allow for greater flexibility, scalability, and resilience in softwa...

  • Answered by AI
  • Q2. Spring boot related questions
  • Q3. AWS cloud related questions

Skills evaluated in this interview

Top Nagarro Staff Engineer Interview Questions and Answers

Q1. How to write HTML code considering web accessibility for disabled person
View answer (1)

Staff Engineer Interview Questions asked at other Companies

Q1. Swap Adjacent Bit Pairs Problem Statement Given an integer N, your task is to compute the number that results from swapping each even position bit of N's binary representation with its adjacent odd bit to the right. Consider the least signi... read more
Add answer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dronacharya College of Engineering, Gurgaon and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Three coding question

Round 2 - Aptitude Test 

Two technical questions based on strings and linked lists.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic data structure and algorithms, along with communication skills.

Top Nagarro Software Engineer Interview Questions and Answers

Q1. Write rest API in Flask. Indexing in SQL Exception handling in flask
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Core java, Springboot

Round 2 - Technical 

(2 Questions)

  • Q1. Java, Springboot, SQL
  • Q2. Java, Spring , SQL
Round 3 - Technical 

(2 Questions)

  • Q1. Java Springboot
  • Q2. Hibernate, SQL queries

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 (2)

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (54)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude questions and 50 technical questions

Round 2 - One-on-one 

(10 Questions)

  • Q1. Tell me about your self
  • Q2. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.

    • Automation framework provides structure and guidelines for creating automated tests

    • It helps in organizing test scripts, data, and results

    • Frameworks can be data-driven, keyword-driven, or hybrid

    • Examples of automation frameworks include Selenium WebDriver, TestNG, and Robot Framework

  • Answered by AI
  • Q3. Java code for sorting without using built in function
  • Ans. 

    Sorting array of strings in Java without using built-in functions

    • Create a custom sorting algorithm like bubble sort, selection sort, or insertion sort

    • Compare each pair of strings and swap them if necessary to sort in ascending order

    • Repeat the process until the array is fully sorted

  • Answered by AI
  • Q4. Explain testng annotations and how will we use annotation in our framework
  • Ans. 

    TestNG annotations are used to control the flow of test methods and provide additional information about the test methods.

    • TestNG annotations are used to mark methods as test methods, setup methods, teardown methods, etc.

    • Annotations like @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite are commonly used in TestNG framework.

    • Annotations help in organizing and prioritizing test metho...

  • Answered by AI
  • Q5. What is testng listener
  • Ans. 

    TestNG listener is an interface that allows users to customize the test execution process.

    • TestNG listeners can be used to perform actions before or after a test method is run.

    • Listeners can be used to generate logs, take screenshots, or perform other custom actions during test execution.

    • Examples of TestNG listeners include ITestListener, ISuiteListener, and IInvokedMethodListener.

  • Answered by AI
  • Q6. What is overriding and where it is used in automation framework
  • Ans. 

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • It is used in automation frameworks to customize or extend the functionality of existing methods or classes

    • In automation testing, overriding...

  • Answered by AI
  • Q7. Explain bdd hooks and tags
  • Ans. 

    BDD hooks and tags are used in Behavior-Driven Development to set up preconditions and execute actions before or after scenarios, and to categorize and filter scenarios.

    • BDD hooks are used to set up preconditions and execute actions before or after scenarios

    • Tags are used to categorize and filter scenarios based on certain criteria

    • Hooks can be used to perform setup and teardown actions, such as initializing test data or ...

  • Answered by AI
  • Q8. Explain bdd background keyword
  • Ans. 

    BDD background keyword is used to define common preconditions for all scenarios in a feature file.

    • Used at the beginning of a feature file to define common preconditions

    • Helps in setting up the initial state for all scenarios in the feature file

    • Reduces duplication of steps in scenarios by defining them once in the background

  • Answered by AI
  • Q9. Explain ci/cd pipeline using jenkins
  • Ans. 

    CI/CD pipeline using Jenkins automates the process of integrating code changes and deploying them to production.

    • Jenkins is a popular automation server used for CI/CD

    • CI/CD stands for Continuous Integration/Continuous Deployment

    • In a CI/CD pipeline, code changes are automatically built, tested, and deployed

    • Jenkins pipelines can be defined using a Jenkinsfile which specifies the stages and steps of the pipeline

    • Example: Che...

  • Answered by AI
  • Q10. Explain rest assured and write a code for post and verify the response
  • Ans. 

    Rest Assured is a Java library for testing RESTful APIs. It simplifies API testing by providing a fluent interface to make HTTP requests and validate responses.

    • Rest Assured is commonly used in API automation testing to validate the functionality of RESTful APIs.

    • It allows testers to easily make HTTP requests, set headers, parameters, and body, and validate the response.

    • Here is an example code snippet for posting data an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all concepts in framwork

Skills evaluated in this interview

Top Nagarro Senior Test Engineer Interview Questions and Answers

Q1. Explain testng annotations and how will we use annotation in our framework
View answer (1)

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)

Nagarro interview questions for popular designations

 Senior Engineer

 (59)

 Software Developer

 (56)

 Staff Engineer

 (56)

 Associate Staff Engineer

 (40)

 Associate Engineer

 (30)

 Senior Software Engineer

 (30)

 Software Engineer

 (29)

 Associate Software Engineer

 (24)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Reverse array and string
  • Q2. OOPS related questions asked

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Top Nagarro Associate Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (5)

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (5)

Get interview-ready with Top Nagarro Interview Questions

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Apptitude + java (20+40) Technical had all the framework related having ORM and Webservices questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. About yourself and Project
  • Q2. Microservices traffic handing

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well

Principal Software Engineer Interview Questions asked at other Companies

Q1. Codng question:For the given stream of integers, calculate the avg,print top 10 elements and bottom 10 elements. It was not clearly mentioned on the problem. After poking more on the problem only provided the details.
View answer (1)

Jobs at Nagarro

View all
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

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. Explanation: The general form of a GP series is A, A * R, A * R^2, A * R^3, ..... read more
Add answer

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)

Staff Engineer Interview Questions & Answers

user image Vivek Singh

posted on 9 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MCQ related to Quantitative Analysis

Round 2 - Coding Test 

MCQ related to Android

Round 3 - Coding Test 

Medium level DSA. 3 Questions in 1 hr

Round 4 - Technical 

(1 Question)

  • Q1. MVVM, Architecture, Coroutine
Round 5 - HR 

(1 Question)

  • Q1. Salary Negotiation

Top Nagarro Staff Engineer Interview Questions and Answers

Q1. How to write HTML code considering web accessibility for disabled person
View answer (1)

Staff Engineer Interview Questions asked at other Companies

Q1. Swap Adjacent Bit PairsYou are given an integer 'N'. Your task is to find the number formed after swapping each even bit of 'N' in its binary representation with its adjacent bit on the right, assuming that the least significant bit is an o... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Some basic aptitutude and logical questions, online. Sample questions are there on youtube.

Round 2 - Technical 

(2 Questions)

  • Q1. Create a cobol prgram to print Fibonacci series in cobol
  • Ans. 

    A COBOL program to print Fibonacci series using recursion.

    • Use recursive function to calculate Fibonacci numbers

    • Initialize variables for storing previous two Fibonacci numbers

    • Print the Fibonacci series as it is calculated

  • Answered by AI
  • Q2. Some theortical questions around CICS, MAPS and MAP fields
Round 3 - HR 

(1 Question)

  • Q1. Experience in mainframe modernization
  • Ans. 

    I have experience in modernizing mainframe systems by migrating to cloud-based solutions and implementing modern technologies.

    • Led a team in migrating legacy mainframe applications to cloud platforms such as AWS or Azure

    • Implemented modernization strategies such as refactoring code, containerization, and microservices architecture

    • Utilized tools like Docker, Kubernetes, and Jenkins to streamline the modernization process

  • Answered by AI

Skills evaluated in this interview

Top Nagarro Staff Engineer Interview Questions and Answers

Q1. How to write HTML code considering web accessibility for disabled person
View answer (1)

Staff Engineer Interview Questions asked at other Companies

Q1. Swap Adjacent Bit Pairs Problem Statement Given an integer N, your task is to compute the number that results from swapping each even position bit of N's binary representation with its adjacent odd bit to the right. Consider the least signi... read more
Add answer

Senior Developer Interview Questions & Answers

user image Aswathi R Nair

posted on 21 Aug 2024

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

I applied via Company Website and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy exam sample available on youtube

Round 2 - Technical 

(2 Questions)

  • Q1. What are step functions.
  • Ans. 

    Step functions are a type of serverless function that allow you to create workflows by chaining multiple functions together.

    • Step functions are used to coordinate multiple AWS services into serverless workflows.

    • They allow you to define a series of steps in a workflow, with each step being a separate function.

    • You can use step functions to handle complex business logic, long-running processes, and error handling.

    • Step func...

  • Answered by AI
  • Q2. How to scale lambdas
  • Ans. 

    Scaling lambdas involves optimizing memory usage, increasing concurrency, and managing dependencies.

    • Optimize memory usage by reducing unnecessary variables and objects

    • Increase concurrency by using asynchronous programming and parallel processing

    • Manage dependencies by breaking down functions into smaller, more modular components

    • Consider using AWS Lambda Provisioned Concurrency for consistent performance

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. How did you handled a difficult collegelue
  • Ans. 

    I addressed the issue directly and professionally, seeking to understand their perspective and find common ground.

    • Approached the colleague privately to discuss the issue

    • Listened actively to their concerns and perspective

    • Sought to find common ground and reach a resolution

    • Maintained professionalism and respect throughout the conversation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Managerial round. Behavioral and cloud technology scenario based questions. Interviewer very friendly and open

Skills evaluated in this interview

Senior Developer Interview Questions asked at other Companies

Q1. What is your current CTC and what is your expected CTC?
View answer (1)

Nagarro Interview FAQs

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

Some of the top questions asked at the Nagarro interview -

  1. Write a program: two input, one is N(any integer, lets say 3), second input wil...read more
  2. This is for Mainframe Dev. ...read more
  3. 1. How to make object thread-safe? 2. Create an Immutable class. 3. Which Garba...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

based on 589 interviews

Interview experience

4
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Nagarro

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
View all

Nagarro Reviews and Ratings

based on 4.1k reviews

4.0/5

Rating in categories

3.8

Skill development

4.1

Work-life balance

3.8

Salary

3.8

Job security

4.0

Company culture

3.5

Promotions

3.7

Work satisfaction

Explore 4.1k Reviews and Ratings
Staff Engineer, CRM Salesforce (Lightning)

Noida,

Hyderabad / Secunderabad

7-10 Yrs

₹ 13.25-37.78132 LPA

Associate Staff Engineer, CRM Salesforce (Lightning)

Noida,

Hyderabad / Secunderabad

+1

5-7 Yrs

₹ 10.5-30 LPA

Explore more jobs
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