Upload Button Icon Add office photos

Filter interviews by

Excel Software Solutions Associate Software Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It contain 40 question which is very easy

Round 2 - Coding Test 

It contain 3 coding question

Round 3 - One-on-one 

(5 Questions)

  • Q1. Introduction About Your Self and About Project
  • Q2. Two dsa question of leetcode
  • Q3. Basics Concept on dsa
  • Q4. From which platform you do coding
  • Q5. Simple Simple Question

Interview Preparation Tips

Topics to prepare for Nagarro Associate Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Very good company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

The basics questions are there regarding basic concepts of computer engineering

Round 2 - Technical 

(1 Question)

  • Q1. What is the sdlc ?
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.

    • SDLC is a structured process that consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the successful completion of the software project.

    • Examples of SDLC mode...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Data regarding questions
Round 4 - HR 

(1 Question)

  • Q1. Tell me about your project

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Linux and vmware
Round 2 - Technical 

(1 Question)

  • Q1. Linux and VMware
Round 3 - HR 

(1 Question)

  • Q1. Background details
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find the largest no. in arrary
  • Ans. 

    Find the largest number in an array of strings.

    • Convert each string in the array to a number using parseInt()

    • Use Math.max() to find the largest number in the array

  • Answered by AI
  • Q2. Two sum problem directly from leet code

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Medium level difficulty we can clear if we are strong in logical and aptitude

Round 2 - Group Discussion 

The topic is which is important soft skills are technical skills

Round 3 - Coding Test 

1 programming question and few logical questions were asked

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at MH Saboo Siddik College of Engineering, Mumbai and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Java , collection , spring boot
  • Q2. What is internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To retrieve a value, the key is hashed again to fi...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Spring security, oops , hibernate

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well what you mentioned on resume

Skills evaluated in this interview

I applied via LinkedIn

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 - Technical 

(3 Questions)

  • Q1. Coding questions related to DSA
  • Q2. Middle of the Linked list
  • Ans. 

    Finding the middle node of a linked list.

    • Traverse the linked list with two pointers, one moving twice as fast as the other.

    • When the fast pointer reaches the end, the slow pointer will be at the middle node.

    • If the linked list has even number of nodes, there will be two middle nodes.

    • In that case, choose either of the middle nodes as the result.

  • Answered by AI
  • Q3. Reverse words in a sentence
  • Ans. 

    Reverse words in a sentence

    • Split the sentence into words

    • Reverse the order of the words

    • Join the words back into a sentence

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to start a career at this company.No cons.work culture is great.very supportive staff

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Group Discussion 

Corona Pandemic, digitalization

Round 3 - Aptitude Test 

Qualitative and quantitative questions + gmat

Round 4 - Technical 

(1 Question)

  • Q1. Dbms, os, programming

I applied via Campus Placement and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude, technical MCQs and c/c++ questions of medium type

Round 2 - Technical 

(1 Question)

  • Q1. 1. Given offset, find the indices of multi dimensional array 2. Bitwise operations coding 3. Structure padding 4. Code memory storage
  • Ans. 

    Technical questions related to programming concepts and memory management.

    • To find indices of a multi-dimensional array using offset, divide the offset by the size of each element and use the quotient as the index for the first dimension. Repeat this process for each dimension.

    • Bitwise operations are used to manipulate individual bits in a binary number. Examples include AND, OR, XOR, and bit shifting.

    • Structure padding i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of c, os, data structures and knowledge of how memory works

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Coding Test 

Aptitude test along with CS fundamentals and Coding problems

Round 2 - One-on-one 

(2 Questions)

  • Q1. Real life application of data structures
  • Ans. 

    Data structures like arrays and linked lists are used in real life applications such as social media networks, databases, and GPS systems.

    • Social media networks use arrays to store user profiles and linked lists to manage friend connections.

    • Databases use data structures like B-trees and hash tables to efficiently store and retrieve data.

    • GPS systems use graphs to represent road networks and find the shortest path between

  • Answered by AI
  • Q2. Find missing number in array of n size where numbers are from 1 to n
  • Ans. 

    Use the formula for sum of first n natural numbers to find the missing number in the array.

    • Calculate the sum of first n natural numbers using the formula n*(n+1)/2

    • Calculate the sum of all numbers in the array

    • Subtract the sum of array from the sum of first n natural numbers to find the missing number

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have your fundamentals cleared. And have decent communication skills.

Skills evaluated in this interview

Tell us how to improve this page.

Compare Excel Software Solutions with

Teleperformance

3.9
Compare

FIS

3.9
Compare

Nagarro

4.0
Compare

Optum

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview