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 Engineer Interview Questions and Answers for Freshers

Updated 10 Nov 2024

Nagarro Associate Engineer Interview Experiences for Freshers

8 interviews found

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 

There will be quant logical reasoning grammmer communication questions

Round 3 - Coding Test 

In this round there wi be 3 coding ques to pass the test cases within 1 or 1.5 hrs of time

Round 4 - Technical 

(1 Question)

  • Q1. Then there will be any dsa ques Any of the theory like validtion verification models likes waterfall agule etc after that hr round
Round 5 - HR 

(1 Question)

  • Q1. In this round abiut our company Related questions your interests ehat you did on your last birthday nd ll

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep consistency and don't give up In your whole journey. Yes there will be many ups and downs some times you did well but not got selected and other experiences too.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding was moderate and the level was not too high but standard. Had required a good concept of DSA and hands on coding.

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions on DSA. Basic questions on OOPs. 2-3 basic coding concepts. Problem solving. Etc. One question was, from n1 to n2 consecutive natural numbers one number is missing. How to find the missing...
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions as usual.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't loose hope after rejection. You are far better than you think about yourself.
Just make bold and confident about your concepts and practice everyday.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

90 mints, reasoning , logical thinking, aptitude

Round 2 - Coding Test 

60mints c, c++, python, java

Round 3 - Technical 

(1 Question)

  • Q1. C programming basics
Round 4 - HR 

(1 Question)

  • Q1. About family, location

Associate Engineer Interview Questions & Answers

user image ginesh goyal

posted on 30 Oct 2023

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

I applied via Company Website and was interviewed before Oct 2022. There were 5 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 - Aptitude Test 

60 min in 50 questions

Round 3 - Coding Test 

90 mintues in 3 coding average level question

Round 4 - Technical 

(2 Questions)

  • Q1. As per profile which u selected or applied
  • Q2. Development and automation testing basics
Round 5 - HR 

(1 Question)

  • Q1. Normal HR questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2022. There were 5 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 - Aptitude Test 

Some apti + techical mcqs easily available on internet

Round 3 - Coding Test 

5 coding ques were there those who completed 3 fully correct were selected.

Round 4 - Technical 

(4 Questions)

  • Q1. Remove a linked list node without head or tail pointer given
  • Ans. 

    Removing a node from a linked list without head or tail pointer

    • Use the node to be removed's next node to copy its data and then delete the next node

    • Update the current node's next pointer to skip the next node

  • Answered by AI
  • Q2. Remove nth element from array
  • Ans. 

    Remove the nth element from an array of strings

    • Use the splice method to remove the element at the specified index

    • Remember that array indices start at 0

    • Example: array.splice(n, 1) will remove the element at index n

  • Answered by AI
  • Q3. 1 riddle I forgot
  • Q4. Quick and merge time complexity and when worst case happens in quick sort
  • Ans. 

    Quick sort has O(n log n) time complexity on average, O(n^2) worst case. Merge sort has O(n log n) time complexity always.

    • Quick sort has an average time complexity of O(n log n) due to its divide-and-conquer approach.

    • Worst case for quick sort occurs when the pivot element is either the smallest or largest element in the array, leading to O(n^2) time complexity.

    • Merge sort always has a time complexity of O(n log n) due t...

  • Answered by AI
Round 5 - HR 

(4 Questions)

  • Q1. Interview started with my introduction
  • Q2. Explain you previous experience
  • Q3. Do you have any existing offer and if yes then why this company
  • Q4. Your favorite programming language and why
  • Ans. 

    My favorite programming language is Python because of its simplicity, readability, and versatility.

    • Python is known for its clean and readable syntax, making it easy to learn and understand.

    • Python has a large standard library and many third-party libraries, allowing for rapid development of a wide range of applications.

    • Python is versatile and can be used for web development, data analysis, machine learning, automation, ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Online assessment was damn tough but do previously asked ques from OA as most of the time same question appears, Technical interview was suppeeeerr easy i cant even say medium.

Skills evaluated in this interview

I appeared for an interview in Jul 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

2 coding questions 
Afternoon test 
Proctored

  • Q1. 

    Trailing Zeros in Factorial Problem

    Find the number of trailing zeroes in the factorial of a given number N.

    Input:

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

    Count the number of trailing zeros in the factorial of a given number.

    • To find the number of trailing zeros in N!, count the number of factors of 5 in the prime factorization of N.

    • Each factor of 5 contributes to a trailing zero in the factorial.

    • For example, for N=10, there are 2 factors of 5 in the prime factorization (5 and 10), so there are 2 trailing zeros.

  • Answered by AI
  • Q2. 

    Count Ways To Reach The N-th Stair Problem Statement

    You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. ...

  • Ans. 

    The problem involves finding the number of distinct ways to climb to the Nth stair by taking one or two steps at a time.

    • Use dynamic programming to solve this problem efficiently.

    • The number of ways to reach the Nth stair is the sum of the number of ways to reach the (N-1)th stair and the (N-2)th stair.

    • Handle large inputs by taking modulo 10^9+7 to avoid overflow.

    • Example: For N=3, there are 3 ways to climb to the third s...

  • Answered by AI
Round 2 - Video Call 

Round duration - 30 mins
Round difficulty - Medium

Afternoon interview 
I was asked OOPS, OS, DBMS, DS and Algo questions. 
Questions around my project 
Questions around my internships

Round 3 - HR 

(1 Question)

Round duration - 15 mins
Round difficulty - Easy

Just after interview, HR asked general questions like whether I am a team player etc

  • Q1. Where do you see yourself in five years?

Interview Preparation Tips

Eligibility criteriaNo criteriaNagarro interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Algorithms, Networking, Operating SystemsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : revise interview questions for each topic 
Tip 2 : be prepared to be asked anything from your resume including projects 
Tip 3 : while practising coding, use notepad instead of IDEs

Application resume tips for other job seekers

Tip 1 : keep it to the point, 1 page resume is enough for a fresher 
Tip 2 : add important links like LinkedIn profile, leetcode profile

Final outcome of the interviewSelected

I applied via Campus Placement and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. About oops concepts, about linked list, tree, arrays and graph. Asked about technical coding questions
  • Q2. Asked about basic programming and dynamic programming.
  • Q3. Answered

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare for basic oops concepts and their use in the programming language. Prepare some basic interview questions of data structures that definitely helps you to crack the interview of Nagarro.

I applied via Campus Placement and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Assignment 

There were 3 basic level coding questions on Arrays and String which can be easily done if you have some basic knowledge of DS

Round 2 - Technical 

(1 Question)

  • Q1. They asked questions from resume and 2 basic level coding questions.
Round 3 - HR 

(1 Question)

  • Q1. Some questions on why Nagarro? Location preferences and all these questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nagarro interview for freshers are not very tough.. you should know everything you have written in your resume. So wring only things you know. And stay calm and confident.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude knowledge

Round 2 - Coding Test 

Strong in java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence and focus on your goal

Software Engineer Interview Questions & Answers

NTT Data user image NIDHI PRIYADARSHINI

posted on 9 Apr 2015

Interview Questionnaire 

6 Questions

  • Q1. Tell me about your project
  • Ans. 

    Developed a web-based project management tool for a startup

    • Used React for the frontend and Node.js for the backend

    • Implemented user authentication and authorization using JWT

    • Integrated with third-party APIs such as Trello and Slack

    • Implemented real-time updates using WebSockets

    • Deployed on AWS using EC2 and RDS

  • Answered by AI
  • Q2. Write the idea or algorithm for d program of fibonacci series
  • Q3. One question from your subject
  • Q4. Introduce yourself
  • Ans. 

    I am a software engineer with experience in developing web applications and mobile apps.

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Skilled in using frameworks like React, Angular, and Spring Boot

    • Experienced in working with databases such as MySQL and MongoDB

    • Familiar with Agile development methodologies and DevOps practices

  • Answered by AI
  • Q5. If I give you a box full of pencils..in how many ways can you use it
  • Q6. Do you have any question for me

Interview Preparation Tips

Round: Test
Experience: Time management is very important to clear the aptitude test. Besides this a lot of practice is also very important.  This round is the major filteration round. Though each round is a major filteration round cuz NTT DATA is not a bulk recruiter like cts, infy etc. Almost 2-3 thousand students were there for this round from 6 different colleges and only 100 of them were selected.
Tips: Its better to start with the preparation from before and do consider the previous year placement papers available at indiabix. You can practice more n more. Apart from this you can go through the r.s aggarwal aptitude book also.

Round: Group Discussion
Experience: There were many panels and each panel had 10-12 students. The H.r first decided some other topic but when he asked wether everybody is aware of the topic ..there were few who didn't know about it. .so he picked up another topic. Fortunately he asked me to start with the discussion.  Always try to be the one to break the ice.
Tips: The only key to crack this round is that yku should talk. You should definitely not confuse gd with debate. You should not argue or by any chance shouldn't sound arrogant.

Round: Technical Interview
Experience: They will definitely ask about your project so be thorough with that. Ntt data is a Japanese company . Though this is IT but it will ask  from the subject of your own choice from people those who have a non IT background. After you get shortlisted in d gd they will give you a form to fill. Do fill that form without fail. If it is blank then even if u go to the hr round he will reject you.
Tips: Just be confident and always smile. Be careful on what you write in your resume cuz they can ask about anything based on your resume.

Round: HR Interview
Experience: This round was a cake walk. Just be confident and updated about the company.  Do ask him a question if he asks you to do that.but make sure it shouldn't be vague or out of the picture.
Tips: Keep smiling and don't get nervous.  If they ask you about location preferences,  dun get firm at one place.try to be flexible.

General Tips: Donot loose hope at any cost. You never know when your moment is going to arrive. Do practice the aptitude as much as you can. Finally NTT DATA selected only 50 overall in wch 11 were from my college n i was lucky to be one of them. the offer letter was issued the same day and we were all venerated.  Its just a game of confidence. All the best
Skill Tips: Try to add some co curricular activities and justify your role.
Skills: communication, technical knowledge, management skills, leadership
College Name: SATHYABAMA UNIVERSITY
Motivation: You will find the it companies mostly head quartered in U.S but this company is in Japan. Plus you have better opportunity and growth compared to other companies cuz its not a bulk recruiter.

Skills evaluated in this interview

Nagarro Interview FAQs

How many rounds are there in Nagarro Associate Engineer interview for freshers?
Nagarro interview process for freshers usually has 4-5 rounds. The most common rounds in the Nagarro interview process for freshers are Technical, HR and Coding Test.
How to prepare for Nagarro Associate Engineer interview for freshers?
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 SQL, Javascript, Java, C# and CSS.
What are the top questions asked in Nagarro Associate Engineer interview for freshers?

Some of the top questions asked at the Nagarro Associate Engineer interview for freshers -

  1. Quick and merge time complexity and when worst case happens in quick s...read more
  2. Remove a linked list node without head or tail pointer gi...read more
  3. Your favorite programming language and ...read more
How long is the Nagarro Associate Engineer interview process?

The duration of Nagarro Associate 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

3.5/5

based on 4 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 75%
4-6 weeks 25%
View more
Nagarro Associate Engineer Salary
based on 770 salaries
₹3 L/yr - ₹8 L/yr
19% less than the average Associate Engineer Salary in India
View more details

Nagarro Associate Engineer Reviews and Ratings

based on 194 reviews

3.5/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.3

Salary

3.1

Job security

3.8

Company culture

3.1

Promotions

3.3

Work satisfaction

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

₹10.2 L/yr - ₹36 L/yr

Staff Engineer
3.3k salaries
unlock blur

₹11.8 L/yr - ₹45 L/yr

Senior Engineer
2.5k salaries
unlock blur

₹6.3 L/yr - ₹23.6 L/yr

Senior Software Engineer
1.2k salaries
unlock blur

₹7.1 L/yr - ₹31 L/yr

Software Engineer
1.1k salaries
unlock blur

₹4.9 L/yr - ₹12.3 L/yr

Explore more salaries
Compare Nagarro with

Deloitte

3.7
Compare

Cognizant

3.7
Compare

TCS

3.6
Compare

Accenture

3.8
Compare
write
Share an Interview