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

Hexaware Technologies Software Engineer Interview Questions, Process, and Tips

Updated 26 Nov 2024

Top Hexaware Technologies Software Engineer Interview Questions and Answers

View all 15 questions

Hexaware Technologies Software Engineer Interview Experiences

38 interviews found

I applied via Referral

Interview Questionnaire 

5 Questions

  • Q1. You have knowledge of data structure? Tell me about it
  • Ans. 

    Data structures are a way to organize and store data efficiently.

    • Data structures are used to store and manipulate data in a structured manner.

    • They provide different ways to access and perform operations on the data.

    • Examples include arrays, linked lists, stacks, queues, trees, and graphs.

  • Answered by AI
  • Q2. Tell me something about your major project
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

    • Incorporated user authentication and authorization features

    • Integrated real-time notifications using Socket.io

  • Answered by AI
  • Q3. What is your name ?
  • Ans. 

    My name is John Smith.

    • Full name is John Smith

    • Common name in English-speaking countries

    • Easy to remember and pronounce

  • Answered by AI
  • Q4. What does my name mean?
  • Ans. 

    The question is unrelated to the medical field and is not a puzzle or riddle.

    • The question is asking about the meaning of the interviewer's name.

    • You can ask the interviewer about the origin or cultural significance of their name.

    • You can also mention that names often have different meanings in different languages or cultures.

  • Answered by AI
  • Q5. What are your strenghts?
  • Ans. 

    My strengths include problem-solving skills, attention to detail, and strong communication abilities.

    • Strong problem-solving skills - I enjoy tackling complex issues and finding creative solutions.

    • Attention to detail - I am meticulous in my work and strive for accuracy in all tasks.

    • Strong communication abilities - I can effectively convey ideas and collaborate with team members.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The written test of hexaware was way more tough than i thought. Basically you will see on other website that hexaware written test is easy but it was not trust me. So talking more about my test there were 4 sections verbal, aptitude, analytical reasoning and technical also. I am a electronics and communication student so there were technical question from my field of study only but for IT and Computer Science there were programming questions. And there is 10 mins of essay writting also.
Tips: Be prepare for anything. Dont judge the written exam will be easy or tough anything can happen and prepare your best.
Duration: 60 minutes
Total Questions: 75

Round: Group Discussion
Experience: Well, i think my group discussion topic was easy but the only problem was that every person is fully aware of that topic so thought process has become very simple. But still somehow i manage to clear this round also.
Tips: Be calm and if you dont know about some topic so wait for few minutes and listen what others are saYing . The HR will only be checking your communication skills.
Duration: 10 mins minutes

Round: Technical Interview
Experience: I am an EC student so there were very basic question of c and data structure programming and from my field he only asked about my project work and keep asking question from it. I guess he was checking my patience.

Round: HR Interview
Experience: The HR round was quite good. The question was really very basic from my family and strengths and weakness. But i dont know why he asked me a question of c programming and he asked me to make a program generally i have never heard that in HR interview, the HR asking you a technical question but anything can happen .
Tips: Keep yourself calm . Keep wide knowledge of your field.

Skills: Basic C/C++, Communication, Ability To Deliver On A Project, Ability To Work In A Team, Ability To Deliver On A Project, Advance Communication, Confidence
College Name: IPS College of Technology & Management
Motivation: Hexaware is globally recognised company plus its an MNC.

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Anshul Deodia

posted on 12 Aug 2024

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

Amcat Platform was user for interview process.

Round 2 - Technical 

(2 Questions)

  • Q1. Question based on fiding minimum of something.
  • Q2. 2nd qsn was based on Hashmaps problem

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Level for aptitude is very Easy

Round 2 - Coding Test 

Level for coding was Medium

Round 3 - Technical 

(2 Questions)

  • Q1. Jaba fundamentals
  • Q2. Sql queries, basic java code

Software Engineer Interview Questions & Answers

user image Vinni Kashyap

posted on 29 May 2024

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

I applied via Campus Placement and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

There was aptitude round and this was elimination round.

Round 2 - Technical 

(2 Questions)

  • Q1. So many questions where there related to oops,java,sql and many more.
  • Q2. What Oops,java,sql queries ,software development life cycle,

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on whatever you've mentioned you in your resume.

Hexaware Technologies interview questions for designations

 Senior Software Engineer

 (25)

 Associate Software Engineer

 (18)

 Software Engineer Trainee

 (1)

 Software Engineer II

 (1)

 Software Engineer Intern

 (1)

 Software Engineer Tester

 (1)

 Software Testing Engineer

 (1)

 Senior Software Engineer 2

 (1)

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

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

Round 1 - Coding Test 

1 Hour Coding Challenge

Round 2 - Technical 

(2 Questions)

  • Q1. What is a semaphore ?
  • Ans. 

    A semaphore is a synchronization construct used to control access to a shared resource by multiple processes or threads.

    • Semaphores can have an integer value representing the number of available resources.

    • They can be used to prevent race conditions and ensure mutual exclusion.

    • Operations on semaphores include wait (P) and signal (V).

  • Answered by AI
  • Q2. How do you process multithreads in java ?
  • Ans. 

    In Java, multithreading can be processed using the Thread class or implementing the Runnable interface.

    • Create a new thread by extending the Thread class or implementing the Runnable interface.

    • Start the thread using the start() method.

    • Use synchronization mechanisms like synchronized blocks or locks to handle shared resources safely.

    • Join threads to wait for them to finish execution.

    • Use thread pools for managing multiple

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Hexaware Technologies Interview Questions

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

I was interviewed in Jan 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Find the SQL query to find duplicate in table
  • Ans. 

    Use a SQL query with GROUP BY and HAVING clause to find duplicates in a table.

    • Use GROUP BY to group rows with the same values together

    • Use HAVING COUNT(*) > 1 to filter out non-duplicate rows

    • Select the columns you want to check for duplicates in the SELECT statement

  • Answered by AI
  • Q2. Display department wise salary in Java streams

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics of c# and mvc framework
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude questions and answers with detailed explanations for your competitive examinations, placement interviews, and various entrance tests.

Round 2 - Technical 

(3 Questions)

  • Q1. Aptitude questions and answers with detailed explanations for your competitive examinations, placement interviews, and various entrance tests.
  • Q2. Why should i hire you?
  • Q3. What is weakness? They ask about that
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy round and mcqs were there and passed it

Round 2 - Coding Test 

Coding round with the interviewer and mostly data structure

Round 3 - HR 

(1 Question)

  • Q1. Hr have the offer. And few questions like location and offers
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic interview questions
  • Q2. Java 8 features
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 3 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 

Simple logical reasoning maths algorithim coding java output and

Round 3 - Group Discussion 

I dont know but simply bold and anwer coearly

Interview Preparation Tips

Interview preparation tips for other job seekers - Get ready before u attend the interview

Hexaware Technologies Interview FAQs

How many rounds are there in Hexaware Technologies Software Engineer interview?
Hexaware Technologies interview process usually has 2-3 rounds. The most common rounds in the Hexaware Technologies interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Hexaware Technologies Software Engineer interview?
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 Hexaware Technologies. The most common topics and skills that interviewers at Hexaware Technologies expect are Web Api, .Net Core, Angular, JIRA and SQL.
What are the top questions asked in Hexaware Technologies Software Engineer interview?

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

  1. You have knowledge of data structure? Tell me about...read more
  2. How to add column in copybook and overall process of this t...read more
  3. Find the second largest array element in a given lisst of arrays using c progra...read more
How long is the Hexaware Technologies Software Engineer interview process?

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

Tell us how to improve this page.

Hexaware Technologies Software Engineer Interview Process

based on 28 interviews

4 Interview rounds

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

Hexaware Technologies Software Engineer Reviews and Ratings

based on 388 reviews

3.9/5

Rating in categories

4.1

Skill development

3.7

Work-life balance

3.3

Salary

3.7

Job security

3.9

Company culture

3.3

Promotions

3.6

Work satisfaction

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

₹5.4 L/yr - ₹20 L/yr

System Analyst
2.9k salaries
unlock blur

₹7 L/yr - ₹29 L/yr

Software Engineer
2.9k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Senior Executive
2.1k salaries
unlock blur

₹0.8 L/yr - ₹6 L/yr

Technical Architect
2k salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Explore more salaries
Compare Hexaware Technologies with

Cognizant

3.8
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