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
4.0

based on 4k Reviews

Filter interviews by

Nagarro Lead Software Developer Interview Questions and Answers

Updated 19 Aug 2021

Nagarro Lead Software Developer Interview Experiences

1 interview found

Interview Questionnaire 

1 Question

  • Q1. 5 rounds of interviews, 1 quick aptitude test, 1 coding test with 3 mid level programming questions, 1 technical test based on java ,spring,cloud followed by 2 rounds of technical interviews.

Interview questions from similar companies

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

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Fundamentals of Data Structures and Algorithms, including SQL.

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of DSA and Algo and sql
  • Q2. Basics
Round 3 - Technical 

(2 Questions)

  • Q1. Details on previus project
  • Q2. B
Round 4 - HR 

(1 Question)

  • Q1. Basics of DSA and algo ..sql
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Complete oops concepts with examples?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include encapsulation, inheritance, and polymorphism.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Inheritance allows classes to inherit at...

  • Answered by AI
  • Q2. Virtual function and virtual Destructor?
  • Q3. Multithreading with example?
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for improved performance and responsiveness.

    • Multithreading allows multiple tasks to be executed simultaneously on a single CPU core.

    • Each thread has its own program counter, stack, and set of registers.

    • Example: A web browser using multithreading to load a webpage while simultaneously downloading images in the background.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Oops, concepts with examples?
  • Q2. Matrix rotate by 180 degrees?
  • Ans. 

    Rotate a 2D matrix by 180 degrees in place without using extra space.

    • Iterate through the matrix and swap elements symmetrically across the center row.

    • Use two pointers, one starting from the first row and the other from the last row, to swap elements.

    • Repeat the swapping process for each row until the entire matrix is rotated.

    • Example: Input matrix = [[1,2,3],[4,5,6],[7,8,9]], Output matrix = [[9,8,7],[6,5,4],[3,2,1]]

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was an aptitute round and 2 coding questions was there

Round 2 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. We had discussion on projects than mentioned in my resume
  • Q3. Then he moved to DSA question in which he told to how you will insert node in doubly linked list ,I answered all correctly he appreciated me also but after 5 min one person came and told you can go . I was...

Interview Preparation Tips

Interview preparation tips for other job seekers - try to give interview as early as possible prepare basic dsa and projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic C# coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions related to Angular
  • Q2. Question related to ASP.NET CORE
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency Injection?
  • Ans. 

    Dependency Injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. How to handle exception in java
  • Ans. 

    In Java, exceptions can be handled using try-catch blocks to catch and handle specific exceptions.

    • Use try-catch blocks to catch exceptions and handle them gracefully

    • Use multiple catch blocks to handle different types of exceptions

    • Use finally block to execute code regardless of whether an exception is thrown or not

    • Throw custom exceptions using throw keyword

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. In Java8, different between flatmap and map
  • Ans. 

    map transforms each element in a stream, while flatMap transforms each element into multiple elements

    • map applies a function to each element in a stream and returns a new stream of the results

    • flatMap applies a function that returns a stream for each element in the original stream, then flattens the streams into a single stream

    • Example: map - stream.map(x -> x * x), flatMap - stream.flatMap(str -> Arrays.stream(str.split(

  • Answered by AI
  • Q2. How to handle the ConcureentModificationException
  • Ans. 

    ConcurrentModificationException occurs when a collection is modified while iterating over it.

    • Use Iterator to iterate over the collection instead of foreach loop.

    • If modification is necessary, use Iterator's remove() method instead of collection's remove() method.

    • Consider using synchronized collections or ConcurrentHashMap to avoid ConcurrentModificationException.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Simple task to fetch cart and display items in the cart
  • Ans. 

    Fetch cart items and display them

    • Create a function to fetch cart items from database

    • Display the items in the cart on the user interface

    • Handle empty cart scenarios

    • Consider pagination for large number of items

  • Answered by AI
  • Q2. React hooks, life cycle methods, error boundaries, hoc
Round 2 - Technical 

(1 Question)

  • Q1. Simple task to fetch characters and their movies
  • Ans. 

    Fetch characters and their movies

    • Use API like IMDb or The Movie Database to fetch movie data

    • Parse the data to extract characters and their associated movies

    • Store the characters and movies in an array of strings

  • Answered by AI
Round 3 - Cultural 

(1 Question)

  • Q1. Culture based questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Java programs related to strings
  • Q2. Collections question in java

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice well on java programs
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I was interviewed in Jun 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. All the questions were from SQL server.
  • Q2. How to get 3rd highest salary ?
  • Ans. 

    To get the 3rd highest salary, you can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query to select distinct salaries in descending order.

    • Use the 'LIMIT' keyword to limit the results to 3.

    • Use the 'OFFSET' keyword to skip the first 2 highest salaries.

    • Example: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

  • Answered by AI
  • Q3. Inner join result of 2 table. Table one [1,1,1,1] table two [1,1,1,1,1,1]
  • Ans. 

    The inner join of two tables with duplicate values results in a combined set of common values.

    • Inner join combines rows from both tables where the key columns match

    • In this case, the result would be [1,1,1,1,1,1] as all values are common in both tables

  • Answered by AI
  • Q4. SSIS Package creation.
  • Q5. Latest project explanation
  • Ans. 

    Developed a web application for tracking and managing project tasks

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database management

    • Incorporated authentication and authorization features for user security

  • Answered by AI
Round 2 - One-on-one 

(6 Questions)

  • Q1. What is difference between SQL and NoSQL
  • Ans. 

    SQL is a relational database management system, while NoSQL is a non-relational database management system.

    • SQL databases are table-based, NoSQL databases are document, key-value, graph, or wide-column stores

    • SQL databases use structured query language for defining and manipulating data, NoSQL databases use different query languages

    • SQL databases are vertically scalable, NoSQL databases are horizontally scalable

    • SQL databa...

  • Answered by AI
  • Q2. Why is NoSQL better then SQL
  • Ans. 

    NoSQL is better for handling unstructured data, providing scalability and flexibility.

    • NoSQL databases are better suited for handling unstructured data like social media posts, user-generated content, and IoT data.

    • NoSQL databases provide better scalability as they can easily distribute data across multiple servers, allowing for horizontal scaling.

    • NoSQL databases offer more flexibility in terms of data model, allowing fo...

  • Answered by AI
  • Q3. Explain the data pipeline you have worked on.
  • Ans. 

    Designed and implemented a real-time data pipeline for processing and analyzing user behavior data.

    • Used Apache Kafka for real-time data streaming

    • Utilized Apache Spark for data processing and analysis

    • Implemented data transformations and aggregations using Scala

    • Stored processed data in a data warehouse like Amazon Redshift

    • Built monitoring and alerting systems to ensure data pipeline reliability

  • Answered by AI
  • Q4. Managing team
  • Q5. What will you do if you have conflict with your manager.
  • Ans. 

    I would address the conflict directly and professionally, seeking to understand the root cause and find a mutually beneficial solution.

    • Schedule a private meeting with the manager to discuss the conflict

    • Listen actively to the manager's perspective and express your own calmly

    • Seek to find common ground and propose potential solutions

    • If necessary, involve HR or a mediator to help resolve the conflict

  • Answered by AI
  • Q6. What do you love to do when you are free
  • Ans. 

    I love to spend my free time hiking, reading, and trying out new recipes in the kitchen.

    • Hiking in the mountains or local trails

    • Reading fiction and non-fiction books

    • Experimenting with new recipes and cooking techniques

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare best for SQL related questions.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 801 Interviews
View all
Associate Staff Engineer
2.8k salaries
unlock blur

₹10 L/yr - ₹35.2 L/yr

Staff Engineer
2.8k salaries
unlock blur

₹14.5 L/yr - ₹43.2 L/yr

Senior Engineer
2.3k salaries
unlock blur

₹6.5 L/yr - ₹25 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹7.5 L/yr - ₹31 L/yr

Software Engineer
933 salaries
unlock blur

₹3 L/yr - ₹12.2 L/yr

Explore more salaries
Compare Nagarro with

Deloitte

3.8
Compare

Cognizant

3.8
Compare

TCS

3.7
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview