Premium Employer

i

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

Hexaware Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Hexaware Technologies Associate Software Engineer Interview Questions, Process, and Tips

Updated 5 Mar 2025

Top Hexaware Technologies Associate Software Engineer Interview Questions and Answers

  • Q1. Intersection of Two Arrays II Given two integer arrays ARR1 and ARR2 of size N and M respectively, find the intersection of these arrays. An intersection refers to eleme ...read more
  • Q2. What basic questions do you think will help determine if I fit into your company culture?
  • Q3. You have to design a software solution that automatically informs truck owners about their servicing dates to ensure they don't miss it due to their busy schedules.
View all 19 questions

Hexaware Technologies Associate Software Engineer Interview Experiences

20 interviews found

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

I applied via LinkedIn and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions in all concepts

Round 2 - Technical 

(1 Question)

  • Q1. Tehnical questions from graduation

Interview Preparation Tips

Topics to prepare for Hexaware Technologies Associate Software Engineer interview:
  • C
  • Data Structures
Interview preparation tips for other job seekers - All the best

I was interviewed in Dec 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 80 Minutes
Round difficulty - Medium

They asked aptitude questions and 2 coding questions.

  • Q1. 

    Intersection of Two Arrays II

    Given two integer arrays ARR1 and ARR2 of size N and M respectively, find the intersection of these arrays. An intersection refers to elements that appear in both arrays.

    No...
  • Ans. 

    Find the intersection of two integer arrays in the order they appear in the first array.

    • Iterate through the first array and store elements in a hashmap with their frequencies.

    • Iterate through the second array and check if the element exists in the hashmap, decrement frequency if found.

    • Return the elements that have non-zero frequencies as the intersection.

  • Answered by AI
Round 2 - Assignment 

(1 Question)

Round duration - 40 Minutes
Round difficulty - Easy

  • Q1. What basic questions do you think will help determine if I fit into your company culture?
  • Ans. 

    Questions related to teamwork, problem-solving, adaptability, and communication skills can help determine if you fit into our company culture.

    • How do you handle working in a team environment?

    • Can you provide an example of a time when you had to solve a complex problem?

    • How do you adapt to changes in a fast-paced work environment?

    • Describe a situation where effective communication was crucial in a project.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 40 Minutes
Round difficulty - Medium

They asked questions based on my resume.
They asked in detail about the projects which I worked on, questions on the core computer fundamentals and also they gave me one project requirement and asked how I will design it.

  • Q1. You have to design a software solution that automatically informs truck owners about their servicing dates to ensure they don't miss it due to their busy schedules.
  • Ans. 

    Design a software solution to automatically inform truck owners about servicing dates.

    • Create a database to store truck owner information and servicing dates.

    • Develop a notification system to send reminders to truck owners before their servicing dates.

    • Allow truck owners to set preferred communication channels for reminders.

    • Include a feature for truck owners to reschedule servicing dates if needed.

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 40 Minutes
Round difficulty - Easy

HR asked few questions like whether I will be able to relocate or not and then some common questions like why I want to join Hexaware.

  • Q1. Why do you want to join Hexaware?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in ChennaiEligibility criteriaNo such criteria as such, but try to have at least 7 GPA without any active backlogs.Hexaware Technologies interview preparation:Topics to prepare for the interview - OOPS, Basics of Data Structure, DBMS, NetworkingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Try to have your basics clear
Tip 2 : Have at least 1 project with a full fledged understanding of it. 
Tip 3 : Start working on your communication skills, you must be able to keep your points in well structured manner in front of the interviewer. Hexaware don't want the students to have in depth knowledge in the technology, the only thing which they expect is their desire to learn and grow. So, you should be able to show these qualities in front of the interviewer.

Application resume tips for other job seekers

Tip 1 : Have only those things which you really know because they will ask you questions around that domain only and if you won't be able to answer it then it will decrease your chance of selection. 
Tip 2 : Try to have at least 1 project and certification which can differentiate you from rest of the candidates.

Final outcome of the interviewSelected

Skills evaluated in this interview

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Generalised aptitude questions

Round 2 - Coding Test 

Simple codes using java or c

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions related to software
Round 4 - HR 

(1 Question)

  • Q1. About work culture

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to up skill
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. About tech stack
Round 2 - One-on-one 

(1 Question)

  • Q1. Basics of javascript and react, changes on personal projects.
Round 3 - Coding Test 

Building snake and ladder game

Hexaware Technologies interview questions for designations

 Software Engineer

 (38)

 Associate Systems Engineer

 (2)

 Senior Software Engineer

 (25)

 Software Engineer Trainee

 (1)

 Software Engineer Tester

 (1)

 Software Engineer II

 (1)

 Software Engineer Intern

 (1)

 Software Testing Engineer

 (1)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

They ask aptitude question and also computer networking and coding mcq

Round 2 - Technical 

(1 Question)

  • Q1. What is a binary search and how you can do it?
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Binary search requires a sorted array as input.

    • It compares the target value with the middle element of the array.

    • If the target value is equal to the middle element, the search is successful.

    • If the target value is less than the middle element, the search continues on the left half of the array.

    • If the target value is great...

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Hexaware Technologies Interview Questions

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

I applied via Walk-in and was interviewed before Dec 2021. There were 4 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 Resume tips
Round 2 - Aptitude Test 

There were some basic topics like time,speed distance, measurements, relationships, probability, permutation and combination

Round 3 - One-on-one 

(5 Questions)

  • Q1. For me, they were asked about basic oops concept and asked me to wrote two programs in java and asked to wrote 5 sql queries
  • Q2. Sort the array without using predefined functions etc
  • Ans. 

    Sorting an array without using predefined functions

    • Implement a sorting algorithm like bubble sort, insertion sort, or selection sort

    • Loop through the array and compare adjacent elements to swap them if necessary

    • Repeat the loop until the array is sorted in ascending or descending order

  • Answered by AI
  • Q3. Reverse the string without using predefined functions
  • Ans. 

    Reverse a string without using predefined functions.

    • Iterate through the string from the end and append each character to a new string.

    • Use a loop to swap the first and last characters, then move towards the middle.

    • Convert the string to a list, reverse the list, then join the list back into a string.

  • Answered by AI
  • Q4. Stored procedures and join queries
  • Q5. Pattern programming in java like print right angle triangle, pascal triangle
Round 4 - HR 

(1 Question)

  • Q1. About my resume and relocation details and

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in oops concept, need to know program in java and prepare in both technical as well theoretical knowledge in any programming language and from database

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Why you want to work in hexaware?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Have confidence and yeah when they ask tell me about yourself, tell them what's not there in the resume.

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. What is windows powershell?
  • Ans. 

    Windows PowerShell is a command-line shell and scripting language designed for system administration tasks.

    • It is built on the .NET Framework

    • It allows users to automate tasks using scripts

    • It supports remote management of Windows machines

    • It has a rich set of commands and utilities

    • Example: Get-Process command retrieves information about running processes

    • Example: Set-ExecutionPolicy command changes the PowerShell execution

  • Answered by AI
  • Q2. About VDI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's easy

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quants + Verbal ability

Round 2 - Group Discussion 

GD on general topics

Interview Preparation Tips

Interview preparation tips for other job seekers - Aptitude + GD + Technical + Language Skill Assessment

I applied via Walk-in and was interviewed before Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. For loop in c programming, Networking basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and composed. Try to think for the questions that you don't know and answer accordingly.
Contribute & help others!
anonymous
You can choose to be anonymous

Hexaware Technologies Interview FAQs

How many rounds are there in Hexaware Technologies Associate Software Engineer interview?
Hexaware Technologies interview process usually has 2-3 rounds. The most common rounds in the Hexaware Technologies interview process are Aptitude Test, Technical and Coding Test.
What are the top questions asked in Hexaware Technologies Associate Software Engineer interview?

Some of the top questions asked at the Hexaware Technologies Associate Software Engineer interview -

  1. what is a binary search and how you can do ...read more
  2. Sort the array without using predefined functions ...read more
  3. Reverse the string without using predefined functi...read more
How long is the Hexaware Technologies Associate Software Engineer interview process?

The duration of Hexaware Technologies Associate Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Honeywell Technology Solutions

No Interviews

INTERVIEWS

Nucleus Software Exports

No Interviews

INTERVIEWS

Sonalika Group of Companies

No Interviews

INTERVIEWS

Siemens PLM Software

No Interviews

INTERVIEWS

Mobiloitte Technologies

No Interviews

CAMPUS PLACEMENT

R M K Engineering College, Kavaraipettai

INTERVIEWS

Hexaware Technologies

No Interviews

INTERVIEWS

Sonalika Group of Companies

No Interviews

INTERVIEWS

Hyundai Motor India Limited

No Interviews

INTERVIEWS

Zensar Technologies

No Interviews

Tell us how to improve this page.

Hexaware Technologies Associate Software Engineer Interview Process

based on 14 interviews

4 Interview rounds

  • Aptitude Test Round
  • Technical Round - 1
  • Technical Round - 2
  • HR Round
View more
Join Hexaware Technologies Experience the impact across your digital ecosystem and beyond.
Hexaware Technologies Associate Software Engineer Salary
based on 1.3k salaries
₹2.2 L/yr - ₹7.4 L/yr
17% less than the average Associate Software Engineer Salary in India
View more details

Hexaware Technologies Associate Software Engineer Reviews and Ratings

based on 178 reviews

3.6/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

3.2

Salary

3.6

Job security

3.8

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 178 Reviews and Ratings
Senior Software Engineer
3.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Analyst
2.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
2.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
2.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Architect
2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Hexaware Technologies with

Cognizant

3.7
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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