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

Associate Software Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 5 months
Topics: Arrays, Strings, Recursion, Backtracking and DP
Tip
Tip

Tip 1 : Be conceptually clear with recursion and backtracking
Tip 2 : Apply DP wherever possible
Tip 3 : Solve variety of problems in arrays and strings.

Application process
Where: Other
Eligibility: 6 CGPA
Resume Tip
Resume tip

Tip 1 : Keep it short and crisp
Tip 2 : Mention technologies used in projects.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date17 Jul 2021
Coding problem2

3 coding questions
2 medium 1 hard
1 dp questions and 2 from arrays and strings.

1. Longest Increasing Subsequence

Moderate
30m average time
65% success
0/80
Asked in companies
IBMVisaOYO

For a given array with N elements, you need to find the length of the longest subsequence from the array such that all the elements of the subsequence are sorted in strictly increasing order.

Strictly Increasing Sequence is when each term in the sequence is larger than the preceding term.

For example:
[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
Problem approach

Dp approach

Try solving now

2. Move Zeroes To End

Moderate
30m average time
70% success
0/80
Asked in companies
Thought WorksSAP LabsMicrosoft

Given an unsorted array of integers, you have to move the array elements in a way such that all the zeroes are transferred to the end, and all the non-zero elements are moved to the front. The non-zero elements must be ordered in their order of appearance.

For example, if the input array is: [0, 1, -2, 3, 4, 0, 5, -27, 9, 0], then the output array must be:

[1, -2, 3, 4, 5, -27, 9, 0, 0, 0].

Expected Complexity: Try doing it in O(n) time complexity and O(1) space complexity. Here, ‘n’ is the size of the array.

Problem approach

Two pointer approach

Try solving now
02
Round
Medium
Video Call
Duration30 minutes
Interview date24 Jul 2021
Coding problem1

Interviewer was friendly and patient.
Asked basic questions from binary search sorting techniques and OOPS concepts.

1. Unique Binary Search Trees

Moderate
20m average time
80% success
0/80
Asked in companies
eBayShareChatMorgan Stanley

Implement binary search and tell time complexity

Problem approach

Tip 1 : Be calm
Tip 2 : Ask for hints

Try solving now
03
Round
Easy
HR Round
Duration20 minutes
Interview date19 Jul 2021
Coding problem1

Nothing too much jusk asked basic intro and background.

1. Basic HR Questions

  • Tell me about yourself
  • What are your future goals?
  • Are you planning for higher studies?
Problem approach

Tip 1 : Be honest
Tip 2 : Be confident

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
1694 views
0 comments
0 upvotes
company logo
Associate Software Engineer
4 rounds | 5 problems
Interviewed by Nagarro Software
941 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 4 problems
Interviewed by Nagarro Software
838 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 9 problems
Interviewed by Nagarro Software
32 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)
2775 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