Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Nagarro Team. If you also belong to the team, you can get access from here

Nagarro Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Nagarro Senior Staff Engineer Interview Questions and Answers for Experienced

Updated 4 Oct 2024

Nagarro Senior Staff Engineer Interview Experiences for Experienced

5 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

General and Technical

Round 2 - Technical 

(1 Question)

  • Q1. .Net Full Stack
Round 3 - Technical 

(1 Question)

  • Q1. Architecture Design
Round 4 - HR 

(1 Question)

  • Q1. Gerneral Discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. The solid principle in C#?
  • Ans. 

    The SOLID principles in C# are a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects ...

  • Answered by AI
  • Q2. Design Pattern in C#?
  • Ans. 

    Design patterns are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable code.

    • Some common design patterns in C# include Singleton, Factory, Observer, and Strategy.

    • Each design pattern has a specific purpose and can be applied to different scenarios in software development.

  • Answered by AI

Skills evaluated in this interview

Senior Staff Engineer Interview Questions Asked at Other Companies for Experienced

asked in Altimetrik
Q1. What are the fundamental concepts of Object-Oriented Programming ... read more
asked in Synopsys
Q2. Design a key-value store.
Q3. Coding Challenge in php
asked in Nagarro
Q4. Design Pattern in C#?
asked in Nagarro
Q5. The solid principle in C#?

I applied via Recruitment Consulltant and was interviewed in Nov 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic questions on permutations, combination, missing numbers, compare strings.

Round 2 - Coding Test 

Array, strings, dynamic programming

Round 3 - Technical 

(2 Questions)

  • Q1. Question on design pattern, solid principal, .net core, Angular and they ask me to write SQL query and a small program in .net core
  • Q2. Design pattern used? Observor pattern? Publish subscriber pattern Scenario based question on cor pattern Question on diff between abstract and factory pattern. Liskov principle Dependency injection Types o...
Round 4 - Technical 

(1 Question)

  • Q1. Questions on .net core Angular, c#, html, css, javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - Aptitude and coding test is quite hard to crack otherwise if you have exp more than 10+ then also prepare for design pattern.

I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

General ability and logical reasoning

Round 3 - Coding Test 

Multiple choice Java interview questions

Round 4 - Technical 

(1 Question)

  • Q1. Core Java interview questions
Round 5 - Technical 

(1 Question)

  • Q1. Advance Java and system design

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up core Java skills and spring boot/ hibernate framework.
System design and DSA

Nagarro interview questions for designations

 Staff Engineer

 (57)

 Senior Staff Software Engineer

 (1)

 Staff Consultant

 (11)

 Staff

 (1)

 Senior Staff Consultant

 (2)

 Associate Staff Engineer

 (41)

 Quality Assurance Engineer Staff

 (1)

 Staff Nurse

 (1)

I applied via Recruitment Consulltant and was interviewed in Nov 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on .net core Angular, c#, html, css, javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - Aptitude and coding test is quite hard to crack otherwise if you have exp more than 10+ then also prepare for design pattern.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Domain related stuffs.
  • Q2. Framework related questions commonly on the configuration part

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, share your knowledge . If you don't know the exact answers try to answer some relative things if you know.

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Angular user defined logics and its reflection in browser, javascript consoles . Basics of java platforms jvm, java collections, SQL keys, joins, logics of data structures.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very interacting and challenging interview for me as I tried many hopes to get a job during this adverse pandemic. It really boosted my self-confidence in reaching a job by myself.Still miles to go for reaching my success rim.

I applied via Naukri.com and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All related windows admin

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be calm and answer if you know.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 110 minutes
Round difficulty - Medium

It was an mcq and coding round
It contained four sections:
1. Aptitude 
2. Reasoning
3. English
4. Coding (It contains 2 questions, one is medium and other is little hard)

  • Q1. 

    Concatenate the Largest Digit Problem

    You are given three non-zero numbers 'A', 'B', and 'C'. Your task is to determine the number created by concatenating the largest digit found in each number, in the s...

  • Ans. 

    Concatenate the largest digit from three numbers to form a new number.

    • Find the largest digit in each number 'A', 'B', and 'C'.

    • Concatenate the largest digits in the order 'A', 'B', and 'C' to form the new number.

    • Return the final concatenated number as the output.

  • Answered by AI
  • Q2. 

    Remove Vowels from a String

    Given a string STR of length N, your task is to remove all the vowels from that string and return the modified string.

    Input:

    The first line of input contains an integer 'T' ...
  • Ans. 

    Remove all vowels from a given string and return the modified string.

    • Iterate through each character in the string and check if it is a vowel (a, e, i, o, u or A, E, I, O, U).

    • If the character is not a vowel, add it to a new string.

    • Return the new string with all vowels removed.

  • Answered by AI
Round 2 - Group Discussion 

Round duration - 10 minutes
Round difficulty - Medium

Round 3 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was around 11:30 PM i feel very tensed after entering into room the interviewer asked me to take a seat and asked self introduction and then he asked can we start technical round ?The questions are below.
What was your specific role and responsibilities on the most recent project you worked on?
 

  • Q1. How can you retrieve the second highest salary from a database table?
  • Ans. 

    Retrieve the second highest salary from a database table

    • Use a SQL query with ORDER BY and LIMIT to retrieve the second highest salary

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1, 1

  • Answered by AI
Round 4 - HR 

Round duration - 5-10 months
Round difficulty - Easy

It was around 11:50 i think 
The environment is too cool and i am too sleepy 
The interview was happened in friendly manner

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Tirumala Engineering College. Eligibility criteriaNo baclogs,60%throughtout your educationCGI Inc. interview preparation:Topics to prepare for the interview - OOPS CONCEPTS,TKINTER MODULE in python,data Structures,sorting algorithms,dynamic programming basics,SQL statements like DML,DCL,DQL,DDL, Procedures and functions in PLSQLTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Practice one coding problem daily
Tip 2 : Do one project on each technology,
Tip 3 : Please communicate in English with others ,English plays a prominent role in interviews

Application resume tips for other job seekers

Tip 1 : one major project and mini project in resume
Tip 2 : Use a professional email address.
Tip 3 : Set your font size to 10-12 points.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself?
  • Q2. What was your jee rank?
  • Q3. Why did you choose the collage in which you are studying?
  • Q4. Tell some new technology which is coming?
  • Ans. 

    5G technology is coming which will revolutionize the way we communicate and connect with the world.

    • 5G technology will provide faster internet speeds and lower latency.

    • It will enable the development of new technologies such as self-driving cars and smart cities.

    • 5G networks will be able to support a larger number of devices connected simultaneously.

    • Major telecommunication companies such as Verizon and AT&T are already ro...

  • Answered by AI
  • Q5. Some basics question related to data structures like what is stack que etc?
  • Q6. In coming five years where do you see yourself?
  • Q7. Some basic questions related to your stream like what is a transistor etc?

Interview Preparation Tips

Interview preparation tips for other job seekers - HR behaviour was friendly and most of the time he will help you if you got stuck in question all the very best for your interview

Nagarro Interview FAQs

How many rounds are there in Nagarro Senior Staff Engineer interview for experienced candidates?
Nagarro interview process for experienced candidates usually has 3 rounds. The most common rounds in the Nagarro interview process for experienced candidates are Technical, Aptitude Test and Coding Test.
How to prepare for Nagarro Senior Staff Engineer interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Nagarro. The most common topics and skills that interviewers at Nagarro expect are Information Technology, Python, Javascript, SQL and Troubleshooting.
What are the top questions asked in Nagarro Senior Staff Engineer interview for experienced candidates?

Some of the top questions asked at the Nagarro Senior Staff Engineer interview for experienced candidates -

  1. The solid principle in ...read more
  2. Design Pattern in ...read more
  3. Design pattern used? Observor pattern? Publish subscriber pattern Scenario base...read more

Tell us how to improve this page.

Nagarro Senior Staff Engineer Interview Process for Experienced

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Genpact Interview Questions
3.8
 • 3.2k Interviews
DXC Technology Interview Questions
3.7
 • 804 Interviews
NTT Data Interview Questions
3.8
 • 629 Interviews
Publicis Sapient Interview Questions
3.5
 • 623 Interviews
GlobalLogic Interview Questions
3.6
 • 594 Interviews
UST Interview Questions
3.8
 • 520 Interviews
CGI Group Interview Questions
4.0
 • 495 Interviews
View all
Nagarro Senior Staff Engineer Salary
based on 815 salaries
₹13.5 L/yr - ₹45 L/yr
20% less than the average Senior Staff Engineer Salary in India
View more details

Nagarro Senior Staff Engineer Reviews and Ratings

based on 110 reviews

3.9/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.9

Salary

3.8

Job security

4.0

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 110 Reviews and Ratings
Associate Staff Engineer
3.4k salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Staff Engineer
2.9k salaries
unlock blur

₹15 L/yr - ₹43.2 L/yr

Senior Engineer
2.4k salaries
unlock blur

₹6.2 L/yr - ₹23.8 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹5.4 L/yr - ₹28 L/yr

Engineer
925 salaries
unlock blur

₹3.5 L/yr - ₹11.4 L/yr

Explore more salaries
Compare Nagarro with

Deloitte

3.8
Compare

Cognizant

3.7
Compare

TCS

3.7
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview