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

Associate Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 12 months
Topics: Arrays, String, Linked list, Tree, OOPs, DBMS, OS
Tip
Tip

Tip 1 : Practice DSA first, as it is the first round, and you have to clear it, So make it strong.
Tip 2 : Make atleast one good project in any technology.
Tip 3 : While solving questions in interview, do not mute yourself, speak what you are thinking.

Application process
Where: Campus
Eligibility: Above 6 CGPA
Resume Tip
Resume tip

Tip 1 : make it one page only
Tip 2 : atleast one good project

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date12 May 2022
Coding problem3

They provided the test link and a duration in which after that link will expire.

1. Prefix to Infix

Easy
10m average time
90% success
0/40
Asked in companies
HikeInfo Edge India (Naukri.com)Samsung

You are given a string denoting a valid Prefix expression containing ‘+’, ’-’, ’*’, ‘/’ and lowercase letters.


Convert the given Prefix expression into an Infix expression.


Note:
Infix notation is a method of writing mathematical expressions in which operators are placed between operands. For example, "a + b" represents the addition of a and b.

Prefix notation is a method of writing mathematical expressions in which operators are placed before the operands. For example, "+ a b" represents the addition of a and b.

Expression contains lowercase English letters, ‘+’, ‘-’, ‘*’, and  ‘/’. 


Example:
Input: /-ab+-cde

Output: ((a-b)/((c-d)+e))

Explanation:
In this test case, there are four operators ‘/’, ‘-’, ‘+’, ‘-’.
Prefix expression:  /-ab+-cde. 
The operator between  ‘a’ and ‘b’ is ‘-’. Resulting expression: /(a-b)+-cde.
The operator between  ‘c’ and ‘d’ is ‘-’. Resulting expression: /(a-b)+(c-d)e.
The operator between ‘c-d’ and ‘e’ is +. Resulting expression: /(a-b)((c-d)+e).
The operator between ‘a-b’ and ‘((c-d)+e)’ is ‘/’. Resulting expression: ((a-b)/((c-d)+e)).
Try solving now

2. Trapping Rain water

Moderate
15m average time
80% success
0/80
Asked in companies
HCL TechnologiesCiti BankAtlassian

You have been given a long type array/list 'arr’ of size 'n’.


It represents an elevation map wherein 'arr[i]’ denotes the elevation of the 'ith' bar.



Note :
The width of each bar is the same and is equal to 1.
Example:
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].

Output: 10

Explanation: Refer to the image for better comprehension:

Alt Text

Note :
You don't need to print anything. It has already been taken care of. Just implement the given function.
Try solving now

3. Maximum In Sliding Windows Of Size K

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

Given an array/list of integers of length ‘N’, there is a sliding window of size ‘K’ which moves from the beginning of the array, to the very end. You can only see the ‘K’ numbers in a particular window at a time. For each of the 'N'-'K'+1 different windows thus formed, you are supposed to return the maximum element in each of them, from the given array/list.

Try solving now
02
Round
Easy
Face to Face
Duration15 minutes
Interview date14 May 2022
Coding problem4

1. OOPs based Questions

What is abstraction?

What is Virtual function?

Exception Handling

2. Operating System based Questions

What is deadlock

3. Time Complexity based Questions

What is time complexity of quick sort, merge sort?

4. OS based Question

Multiprocessing vs multi tasking

03
Round
Easy
HR Round
Duration10 minutes
Interview date16 May 2022
Coding problem1

1. Basic HR Questions

Introduction

What do you know about company

Why do you want to join

Do you join immediately?

Given location is good for you?

Describe yourself in 5 words

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 | 3 problems
Interviewed by Nagarro Software
1512 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 | 3 problems
Interviewed by Nagarro Software
899 views
0 comments
0 upvotes