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

Associate Software Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 3
Topics: Data Structures & Algorithms, Operating System, Object-Oriented Programming System, DBMS, CN
Tip
Tip

Tip 1 : Prepare DSA well and I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation. 
Tip 2 : Be confident & relaxed during the interview. 
Tip 3 : Do revise your projects i.e how it works and what are its functionalities.

Application process
Where: Campus
Eligibility: Above 60%
Resume Tip
Resume tip

Tip 1: Make your resume short and try to make it one page only and mention all your skills that you are confident in.
Tip 2: Do not put false things on your resume.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date10 Oct 2021
Coding problem1

1. Sort An Array of 0s, 1s and 2s

Easy
10m average time
90% success
0/40
Asked in companies
IBMSamsungDirecti

You have been given an array/list 'arr' consisting of 'n' elements.


Each element in the array is either 0, 1 or 2.


Sort this array/list in increasing order.


Do not make a new array/list. Make changes in the given array/list.


Example :
Input: 'arr' = [2, 2, 2, 2, 0, 0, 1, 0]

Output: Final 'arr' = [0, 0, 0, 1, 2, 2, 2, 2]

Explanation: The array is sorted in increasing order.
Try solving now
02
Round
Medium
Online Coding Test
Duration155 minutes
Interview date3 Nov 2021
Coding problem1

The test was divided into 2 sections (SD profile and CSD profile). For the SD profile, there were 3 DSA questions with medium difficulty, and for the CSD profile, there were 2 DSA questions with hard difficulty (Graphs + DP).

1. Maximum Subarray Sum

Moderate
25m average time
75% success
0/80
Asked in companies
CultfitPayPalWalmart

Given an array of numbers, find the maximum sum of any contiguous subarray of the array.


For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and 86.


Given the array [-5, -1, -8, -9], the maximum sum would be -1.


Follow up: Do this in O(N) time.

Problem approach

The simple idea of Kadane’s algorithm is to look for all positive contiguous segments of the array. By using Kadane's Algo Solved this problem.

Try solving now
03
Round
Medium
Face to Face
Duration35 minutes
Interview date22 Nov 2021
Coding problem2

The interviewer asked me two coding questions in this round.

1. Anagram Pairs

Moderate
30m average time
60% success
0/80
Asked in companies
AdobeThought WorksHSBC

You are given two strings 'str1' and 'str1'.


You have to tell whether these strings form an anagram pair or not.


The strings form an anagram pair if the letters of one string can be rearranged to form another string.

Pre-requisites:

Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams. 

Other examples include:

'triangle' and 'integral'
'listen' and 'silent'
Note:
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct. 
Problem approach

I first applied Count Characters 
then solved using Hashmap.

Try solving now

2. Count Triplets

Easy
15m average time
85% success
0/40
Asked in companies
AmazonPayPalDunzo

You have been given an integer ‘X’ and a non-decreasing sorted doubly linked list with distinct nodes.

Your task is to return the number of triplets in the list that sum up to the value ‘X’.

Problem approach

Sorting and Two pointers.

Try solving now
04
Round
Easy
HR Round
Duration10 minutes
Interview date25 Nov 2021
Coding problem1

1. Basic HR questions

Tell me about yourself 

Project discussion 

Why should we hire you

Problem approach

Tip 1: Be confident during the interview. 
Tip 2: Please ask questions at the end of session

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
Associate Software Engineer
3 rounds | 3 problems
Interviewed by Nagarro Software
1695 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 4 problems
Interviewed by Nagarro Software
937 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 4 problems
Interviewed by Nagarro Software
839 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 9 problems
Interviewed by Nagarro Software
33 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Associate Software Engineer
3 rounds | 10 problems
Interviewed by Amdocs
2410 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Ernst & Young (EY)
2776 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 15 problems
Interviewed by Ernst & Young (EY)
2405 views
0 comments
0 upvotes