Nagarro Software interview experience Real time questions & tips from candidates to crack your interview

Software Engineer Trainee

Nagarro Software
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2.5 Months
Topics: Data Structures, Algorithms, OOPS, Operating System, Database Management System
Tip
Tip

Tip 1 : Make project on trending technologies
Tip 2 : Be well versed with the basics of coding

Application process
Where: Other
Eligibility: 7 Cgpa, No Backlog
Resume Tip
Resume tip

Tip 1 : Use simple template
Tip 2 : Bold the tech used in the projects

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 minutes
Interview date9 Jun 2022
Coding problem2

Aptitude + coding round

1. Reverse Linked List

Easy
15m average time
85% success
0/40
Asked in companies
Citi BankDelhiverySprinklr
Note :
You do not need to print anything, just return the head of the reversed linked list. 
Problem approach

-use a prev pointer
-iterate till the end and change the link of curr.next = prev
-and update prev to curr and curr to next

Try solving now

2. Middle Of Linked List

Easy
20m average time
80% success
0/40
Asked in companies
SamsungGoldman SachsOracle

Given a singly linked list of 'N' nodes. The objective is to determine the middle node of a singly linked list. However, if the list has an even number of nodes, we return the second middle node.

Note:
1. If the list is empty, the function immediately returns None because there is no middle node to find.
2. If the list has only one node, then the only node in the list is trivially the middle node, and the function returns that node.
Problem approach

use a slow pointer and a fast pointer
increment slow as slow.next and fast as fast.next.next
until fast.next != null or fast.next.next == null
return slow;

Try solving now
02
Round
Easy
Video Call
Duration25 minutes
Interview date13 Jun 2022
Coding problem1

I was asked OOPS, Data structures application in real life, Time complexity of sorting algorithms, Sql queries, a coding question.

1. Merge Two Sorted Arrays

Moderate
15m average time
85% success
0/80
Asked in companies
HSBCHikeAmazon

Ninja has been given two sorted integer arrays/lists ‘ARR1’ and ‘ARR2’ of size ‘M’ and ‘N’. Ninja has to merge these sorted arrays/lists into ‘ARR1’ as one sorted array. You may have to assume that ‘ARR1’ has a size equal to ‘M’ + ‘N’ such that ‘ARR1’ has enough space to add all the elements of ‘ARR2’ in ‘ARR1’.

For example:

‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’. 
‘ARR1’ = [3 4 6 9 10]
Problem approach

Use two pointers one from index = 0 in first array and other from index = 0 in second array, 
make an answer array of size length of first array + length of second array
now by comparing the values of arr1[idx1] and arr2[idx2] 
fill the answer array and return the ans array

Try solving now
03
Round
Easy
HR Round
Duration15 minutes
Interview date14 Jun 2022
Coding problem1

1. Basic HR Questions

What are your strength and weakness?

 Tell me about your family. Why Nagarro?

 Have you ever worked in a team? 

Do you hold any other offer from any company?

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
CSD
2 rounds | 3 problems
Interviewed by Nagarro Software
1380 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Nagarro Software
937 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 4 problems
Interviewed by Nagarro Software
1222 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 4 problems
Interviewed by Nagarro Software
759 views
0 comments
0 upvotes