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 Associate Software Engineer Interview Questions and Answers for Experienced

Updated 20 Feb 2024

5 interviews found

Sort by: Popular

Associate Software Engineer Interview Questions

user image Shubham Singh

posted on 20 Feb 2024

Interview experience
4
 Good
Difficulty level
 Easy
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.

4 Interview Rounds

1

Aptitude Test Round

Normal Aptitude and reasoning questions

2

Coding Test Round

Easy level of questions in Array and String

3

Technical Round (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
4

HR Round (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
 Moderate
Duration
 Less than 2 weeks
Result
Selected  Selected

I applied via Referral and was interviewed in Aug 2023.

3 Interview Rounds

1

Resume Shortlist Round

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
2

Coding Test Round

Basic codes
of string anagram and arrays

3

Technical Round (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

Interview Preparation Tips

Interview preparation tips for other job seekers - go through the basics of programming lang, DSA till linked list, stack queue

I applied via Campus Placement and was interviewed before Oct 2021.

4 Interview Rounds

1

Resume Shortlist Round

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
2

Coding Test Round

There was some aptitude questions and 3 coding questions. For the selection atleast 1.5 coding questions should be correct.

3

Technical Round (2 Questions)

  • Q1. Basic oops concepts like inheritance, encapsulation, polymorphism etc.
  • Q2. Basic Data Structures like Difference between jvm and jre. Difference between binary tree and binary search tree. Find missing number between 1 to 100.
4

HR Round (1 Question)

  • Q1. Describe yourself. Describe about your projects.

Interview Preparation Tips

Topics to prepare for Nagarro Associate Software Engineer interview:
  • Opps
  • Data Structures
  • SQL
Interview preparation tips for other job seekers - In my view nagarro is best for working environment.
Interview experience
4
 Good
Difficulty level
 Moderate
Duration
 2-4 weeks
Result
Selected  Selected

I applied via campus placement at Directorate of Distance Education, I.K Gujral Punjab Technical University, Jalandhar and was interviewed before Sep 2022.

5 Interview Rounds

1

Resume Shortlist Round

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
2

Aptitude Test Round

Easy to medium level aptitude and quantitative

3

Coding Test Round

3 questions was there,From easy to hard
You have to solve atleast 2

4

Technical Round (1 Question)

  • Q1. Technical questions from oops,DSA , algorithm etc
5

HR Round (1 Question)

  • Q1. What is your strength and weakness?

Interview Preparation Tips

Topics to prepare for Nagarro Associate Software Engineer interview:
  • Oops,DSA,algorithm etc
Interview preparation tips for other job seekers - Prepare the oops,DSA concepts very well.Easy to medium level of leetcode coding is sufficient to qualify.

Nagarro interview questions for designations

 Associate Software Developer

 (3)

 Software Engineer

 (33)

 Associate Principal Engineer

 (11)

 Senior Software Engineer

 (27)

 Lead Software Engineer

 (1)

 Principal Software Engineer

 (1)

 Software Engineer Developer

 (1)

 Software Engineer II

 (1)

I applied via Approached by company and was interviewed in Aug 2021.

3 Interview Rounds

1

Aptitude Test Round

Aptitude test was easy I would say. You need to refrain from opening another tab or application other than test window. The test will be monitored via video

2

Coding Test Round

This was online test, easy one

3

Technical Round (1 Question)

  • Q1. Interviewer was a knowledgeable person, good and quality questions and was aware about my resume!

Interview Preparation Tips

Interview preparation tips for other job seekers - Tip to clear aptitude test:
1. Complete test as soon as possible, because the time is really less for all questions. Do not spend more than 1.5 minites for a question
2. Shouldn't open any other applications via online tests as they will monitor the test

Interview questions from similar companies

Interview experience
5
 Excellent
Difficulty level
 -
Duration
 -
Result
 -

1 Interview Round

1

Technical Round (5 Questions)

  • Q1. String is immutable. Array and arraylist differences
  • Q2. Deadlock scenario in thread
  • Q3. Struts architecture
  • Q4. Array sort program
  • Q5. Sql basics questions

Skills evaluated in this interview

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

I applied via campus placement at Dehradun Institute of Technology, Dehradun and was interviewed before Apr 2023.

4 Interview Rounds

1

Aptitude Test Round

Mcqs related to oops, dbms, OS and aptitude plus one coding question of easy level

2

Technical Round (1 Question)

  • Q1. Technical and behavioural questions and general discussions
3

Behavioral Round (1 Question)

  • Q1. Projects and behavioural questions
4

HR Round (1 Question)

  • Q1. Situational and HR discussions

1 Interview Round

1

Technical Round (1 Question)

  • Q1. What is object oriented programming language in java

Interview Preparation Tips

Interview preparation tips for other job seekers - Dividing programs into class or objects is called oops .
Oops are classified into following types they are:
1)class:
Class is template from which objects are created. Collection of objects is called object.It is logical Entity
2. Object :
It is an instance of class. It has some states and behaviour. It is both physical and logical Entity .
3. Abstraction:
Hiding the implementation part and showing the functionality is called Abstraction.
Ex:sending SMS where we type text but don't the internal working.
Abstraction can be achieved by
Abstract classes and interfaces
4.Encapuslation:
Binding up of code and data or Variables and methods together is called Encapsulation
Ex: capsule different medicines are binded in it
We can achieve it by getter and setter methods
5) polymorphism:
Performing the same task in different ways is called polymorphism
It can be achieved by method over loading complie time polymorphism and run time polymorphism method overriding.
a) method overloading:
Same method name but different parameters is known as method overloading
b) method overriding:
Same method name & same parameters in sub class and super class is called method overriding.
6.Inheritance:
Acquiring properties from one class to another class is called inheritance
1) single inheritance :
Single child class inherits characteristics of single parent class
Multilevel inheritance
2) for example, a Child inherits behavior from his father, and the father has inherited characteristics from his father.
3) hierarchical inheritance:
One class is inherited by multiple subclasses
4) multiple inheritance:
One class inherits features of more than one base class and is not supported in Java, but the class can implement more than one interface.
5)Hybrid Inheritance: This is a combination of single and multiple inheritances.

7)

Skills evaluated in this interview

Interview experience
4
 Good
Difficulty level
 Hard
Duration
 2-4 weeks
Result
Selected  Selected

I applied via Approached by Company and was interviewed before Apr 2023.

2 Interview Rounds

1

One-on-one Round (1 Question)

  • Q1. React custom hooks, react memo, use callback
2

Coding Test Round

Creating a card component using react and rendering a list of people using that card

I applied via Naukri.com and was interviewed in Sep 2021.

2 Interview Rounds

1

Technical Round (2 Questions)

  • Q1. All the concepts of Java
  • Q2. All tha concepts of Angular.
2

Technical Round (2 Questions)

  • Q1. They test your experience in the technologies from the first round.
  • Q2. They have covered all the technologies from front end to back end.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go prepared and no need to be nervous.
If you know your stuff you will get the job.
Concentrate on how to express the knowledge and experience you process.
Research on the packages you want to ask.
Last time I checked they are similar to the Deloitte's packages.
Good luck.

Nagarro Interview FAQs

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

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

  1. Latest technologies right ...read more
  2. Basic Data Structures like Difference between jvm and jre. Difference between ...read more
  3. one code to solve find frequency of every character of str...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.

People are getting interviews through

based on 5 Nagarro interviews
Campus Placement
Referral
60%
20%
20% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Nagarro Associate Software Engineer Salary
based on 698 salaries
₹2 L/yr - ₹8 L/yr
21% 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 & Benefits

3.1

Job Security

4.0

Company culture

3.3

Promotions/Appraisal

3.4

Work Satisfaction

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

₹10 L/yr - ₹35 L/yr

Staff Engineer
2.7k salaries
unlock blur

₹14.7 L/yr - ₹41 L/yr

Senior Engineer
2.1k salaries
unlock blur

₹6.8 L/yr - ₹25 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹6.8 L/yr - ₹27.5 L/yr

Engineer
853 salaries
unlock blur

₹3 L/yr - ₹11.4 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