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

Associate Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 1 month
Topics: C++, Data Structures, OOPS, DBMS, Algorithms, Dynamic Programming, OS
Tip
Tip

Tip 1 : Hand-on practice of coding questions in interview
Tip 2 : Good knowledge on projects recommanded
Tip 3 : Keep revising important topics like, DBMS, OS, CN

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

Tip 1 : Mention Projects and relevant experience
Tip 2 : Internships

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date4 Jul 2022
Coding problem1

1. MCQ Questions

Quant, Verbal, Reasoning


Number Of MCQs - 40

02
Round
Medium
Face to Face
Duration60 minutes
Interview date8 Sep 2022
Coding problem2

1. Rotate Linked List

Moderate
25m average time
65% success
0/80
Asked in companies
Morgan StanleyGeeksforGeeksPharmEasy

You are given a linked list having ‘n’ nodes and an integer ‘k’.


You have to rotate the linked list to the right by ‘k’ positions .


Example :
Input: linked list = [1 2 3 4] , k = 2

Output: 3 4 1 2

Explanation:
We have to rotate the given linked list to the right 2 times. After rotating it to the right once it becomes 4->1->2->3. After rotating it to the right again, it becomes 3->4->1->2. 


Problem approach

Solved it with standard way of solving linked list problems

Try solving now

2. Balanced parentheses

Moderate
10m average time
90% success
0/80
Asked in companies
SalesforceAmazonMicrosoft

Given an integer ‘N’ representing the number of pairs of parentheses, Find all the possible combinations of balanced parentheses with the given number of pairs of parentheses.

Note :

Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.

2. Open brackets must be closed in the correct order.

For Example :

()()()() is a valid parentheses.
)()()( is not a valid parentheses.
Problem approach

Solved with stack data structure

Try solving now

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 Engineer
2 rounds | 3 problems
Interviewed by Nagarro Software
0 views
0 comments
0 upvotes
company logo
Associate Engineer
2 rounds | 2 problems
Interviewed by Nagarro Software
919 views
0 comments
0 upvotes
company logo
Associate Engineer
3 rounds | 8 problems
Interviewed by Nagarro Software
1045 views
0 comments
0 upvotes
company logo
Associate Engineer
3 rounds | 3 problems
Interviewed by Nagarro Software
899 views
0 comments
0 upvotes