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 Human Resource Department Interview Questions and Answers

Updated 24 Jan 2022

Hexaware Technologies Human Resource Department Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Dec 2021. There were 7 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 - One-on-one 

(1 Question)

  • Q1. Shortlist in resume in first round.
Round 3 - Group Discussion 

In GD selected only next round

Round 4 - Technical 

(1 Question)

  • Q1. There will be basic questions
Round 5 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.
Round 6 - Technical 

(1 Question)

  • Q1. There will be subject questions in technical
Round 7 - HR 

(4 Questions)

  • Q1. Why should we hire you?
  • Q2. What are your salary expectations?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Hexaware Technologies Human Resource Department interview:
  • mba fresher
  • Hr Mba
Interview preparation tips for other job seekers - There shortlist resume and the GD, technical round and finally go HR round.

What people are saying about Hexaware Technologies

View All
fascinatingsherlock
Verified Icon
5d
works at
Hexaware Technologies
Job switch
Trying to grab an opportunity in Mumbai in BlackRock Does anyone have a reference??
Got a question about Hexaware Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

This was an online coding round where we had 2 questions to solve under 75 minutes. I found both the questions to be of Easy to Medium level of difficulty.

  • Q1. 

    Line Reflection Problem Statement

    You are given several sets of points on a 2D plane, each set represented as a list of coordinates. Your task is to determine if there exists a line parallel to the Y-axis...

  • Ans. 

    The task is to determine if there exists a line parallel to the Y-axis that reflects given points symmetrically.

    • Iterate through each test case and check if a vertical reflection line exists for the given points

    • Calculate the midpoint of the x-coordinates and check if it reflects the points symmetrically

    • Consider edge cases where points are on the reflection line or have the same x-coordinate

  • Answered by AI
  • Q2. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    Count the number of islands in a 2D matrix of 1s and 0s.

    • Iterate through the matrix and perform depth-first search (DFS) to find connected 1s.

    • Mark visited cells to avoid redundant traversal.

    • Increment island count whenever a new island is encountered.

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had 2 coding questions followed by some questions from DBMS.

  • Q1. 

    Largest Rectangle in Histogram Problem Statement

    You are given an array/list HEIGHTS of length N, where each element represents the height of a histogram bar. The width of each bar is considered to be 1.

    ...
  • Ans. 

    Find the area of the largest rectangle that can be formed within the bounds of a given histogram.

    • Iterate through the histogram bars and calculate the area of the largest rectangle that can be formed using each bar as the height.

    • Use a stack to keep track of the indices of the bars in non-decreasing order of height.

    • Pop elements from the stack and calculate the area until a smaller height bar is encountered.

    • Update the max...

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string consisting of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • If an opening parenthesis is encountered, push it onto the stack.

    • If a closing parenthesis is encountered, check if it matches the top of the stack. If it does, pop the stack, else the string is not balanced.

    • At the end, if the stack is e...

  • Answered by AI
  • Q3. Can you explain the concept of ACID properties in DBMS?
  • Ans. 

    ACID properties in DBMS ensure data integrity and consistency in transactions.

    • Atomicity: All operations in a transaction are completed successfully or none at all.

    • Consistency: Data is always in a valid state before and after a transaction.

    • Isolation: Transactions are isolated from each other to prevent interference.

    • Durability: Once a transaction is committed, changes are permanent and survive system failures.

    • Example: If...

  • Answered by AI
  • Q4. Can you explain the different levels of data abstraction in a DBMS?
  • Ans. 

    Levels of data abstraction in a DBMS refer to the different views of data provided to users and applications.

    • Physical level: Deals with how data is stored on the storage media. Example: data blocks, pages, indexes.

    • Logical level: Focuses on how data is represented to users. Example: tables, views, constraints.

    • View level: Provides a customized view of the database for specific users or applications. Example: queries, rep

  • Answered by AI
Round 3 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Standard DS/Algo round with 2 coding questions followed by 2 interesting puzzles.

  • Q1. 

    Cycle Detection in Undirected Graph Problem Statement

    You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...

  • Ans. 

    Detect if an undirected graph contains a cycle by exploring all possible paths.

    • Use Depth First Search (DFS) algorithm to traverse the graph and detect cycles.

    • Maintain a visited set to keep track of visited vertices and a parent pointer to avoid visiting the same vertex twice.

    • If a visited vertex is encountered that is not the parent of the current vertex, a cycle is present.

    • Consider edge cases like disconnected graphs a

  • Answered by AI
  • Q2. 

    Maximum 1s in a Row Problem

    Given a matrix ARR with dimensions N * M, consisting only of 0s and 1s where each row is sorted, determine the index of the row that contains the highest number of 1s. If multi...

  • Ans. 

    Find the row with the maximum number of 1s in a sorted matrix.

    • Iterate through each row of the matrix and count the number of 1s in each row

    • Keep track of the row index with the maximum number of 1s

    • Return the index of the row with the highest count of 1s

  • Answered by AI
  • Q3. You have two wires of different lengths, each taking different amounts of time to burn completely. How can you use these wires to measure a specific duration of time?
  • Ans. 

    By lighting both wires at the same time, the shorter wire will burn out first, allowing you to measure a specific duration of time.

    • Light both wires at the same time

    • Measure the time it takes for the shorter wire to burn out completely

    • The remaining length of the longer wire will indicate the specific duration of time

  • Answered by AI
  • Q4. You have 3 ants located at the corners of a triangle. The challenge is to determine the movement pattern of the ants if they all start moving towards each other. What will be the outcome?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASapient Corporation interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DBMS, OS, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Since you're from Mechanical Engineering, how do you plan to make up for the knowledge that you didn't learn in college?
  • Q2. During the times when you are in office but you don't have any pending tasks, how do you spend your time?
  • Q3. How often do you take up new responsibilities, tasks, and technologies?
  • Ans. 

    I am always eager to take up new responsibilities, tasks, and technologies.

    • I am a quick learner and enjoy challenging myself with new tasks and technologies.

    • I regularly attend workshops and training sessions to keep myself updated with the latest technologies.

    • I have taken up new responsibilities in my previous roles, such as leading a team or taking ownership of a project.

    • I am open to feedback and constructive criticis

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One thing I learned being a fresher (and a low scoring fresher too) is that one won't always get what they set out to get. I saw people who had done all sorts of programming language courses and didn't want to do operations or AMS. While it's important to aim for the job you dream of, it's also important to be pragmatic. So if you are struggling to get the job you want, start somewhere so you can sustain yourself.

I applied via AmbitionBox and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Generally the aptitude maintain quick calculations and time reduce.

Round 2 - Coding Test 

Coding built over technical skills

Round 3 - HR 

(1 Question)

  • Q1. General knowledge and some technical questions been asked

Interview Preparation Tips

Topics to prepare for DXC Technology Software Engineer interview:
  • Python
Interview preparation tips for other job seekers - Create an position which you want to reach and move towards an other opportunity will be waiting for our future.

I applied via Job Portal and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics of C++ and C
  • Q2. Related to project

Interview Preparation Tips

Interview preparation tips for other job seekers - It was 30 min interview of both tech+hr.

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Just simple HR Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Interview Questionnaire 

1 Question

  • Q1. Logical Programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your self for MCQ and technical programs

Interview Questionnaire 

2 Questions

  • Q1. What is precompilaion unit?
  • Ans. 

    Precompilation unit is a compiled code that can be reused by multiple source files.

    • Precompilation unit is created by the compiler from the source code.

    • It contains the compiled code of header files and other dependencies.

    • It can be reused by multiple source files, reducing compilation time.

    • It is also known as precompiled header or PCH.

    • Example: stdafx.h in Visual Studio is a precompiled header file.

  • Answered by AI
  • Q2. About ur future,ur short term goal,why this company

Interview Preparation Tips

Skills: Resume, CGPA
College Name: IIT Kharagpur

Interview Questionnaire 

3 Questions

  • Q1. First 50 Prime Number
  • Ans. 

    The first 50 prime numbers are...

    • Start with 2, the first prime number

    • Check each odd number greater than 2

    • Use trial division to check if a number is prime

    • Stop when you have found 50 prime numbers

  • Answered by AI
  • Q2. How to sort the file in the range (hint provided)
  • Ans. 

    Sorting a file within a range

    • Use a sorting algorithm like quicksort or mergesort

    • Read the file and store the data in an array or list

    • Sort the array or list within the given range

    • Write the sorted data back to the file

  • Answered by AI
  • Q3. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js, Express, and MongoDB

    • Familiar with version control systems like Git and project management tools like Jira

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Shortlist cut was 0.0 cgpa
Tips: Need to mention Programming skill in any one of three language C , C++ ,Java

Round: Test
Experience: Test was Average, Many question were from INDIABIX.COM , computer network, operating system ,data structure, c , c++ language
Tips: Understand Data Structure and Algorithm deeply, At least read about computer networks, operating system , DBMS 3-4 times for basic good understand, refer various site
Duration: 180 minutes

Round: Test
Experience: Two question were given , we have to write the code on A4 size sheet
Tips: Deep understanding of STACK AND QUEUE
Duration: 60 minutes

Round: Technical Interview
Experience: Previous Test (2 Questions on A4 size sheet) were discussed and is there any improvement that can be done, discussed each and every step.
Tips: Comments is important using programming
present with demo example (various cases)

Round: HR Interview
Experience: Be calm and show your interest in the company,
ask question about company, what are activity other than techincal technical stuff
Tips: Smile , if possible talk in Hindi - English,Try to Make the interview in discussion

General Tips: Practice Daily , Understand Each and Every Step in Detail , Try to code in A4 size paper then computer
Skill Tips: Read Good Books , Practice Daily

Skills: Algorithms And Data Structures
College Name: IIT Kharagpur

Skills evaluated in this interview

Interview Questionnaire 

19 Questions

  • Q1. Tell me about yoruself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies such as HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge in algorithms and data structures

    • Passionate about learning new technologies and solving complex problems

  • Answered by AI
  • Q2. Tell me about your projects
  • Ans. 

    I have worked on various projects including a web application for inventory management and a mobile app for fitness tracking.

    • Developed a web application using React for inventory management

    • Created a mobile app using Flutter for fitness tracking

    • Implemented RESTful APIs for communication between frontend and backend systems

  • Answered by AI
  • Q3. Area of interest
  • Ans. 

    My area of interest is artificial intelligence and machine learning.

    • I have experience in developing machine learning models for predictive analytics.

    • I am interested in natural language processing and computer vision applications.

    • I enjoy exploring deep learning algorithms and neural networks.

    • I have worked on projects involving recommendation systems and image recognition.

  • Answered by AI
  • Q4. What are features of C++?
  • Ans. 

    C++ is a high-level programming language with features like object-oriented programming, templates, and memory management.

    • C++ supports object-oriented programming concepts like encapsulation, inheritance, and polymorphism.

    • Templates allow generic programming and code reusability.

    • C++ provides low-level memory manipulation through pointers.

    • Standard Template Library (STL) provides a collection of classes and functions for ...

  • Answered by AI
  • Q5. What is Big Data?
  • Ans. 

    Big Data refers to large and complex data sets that cannot be processed using traditional data processing methods.

    • Big Data is characterized by the 3Vs - Volume, Velocity, and Variety.

    • It requires specialized tools and technologies such as Hadoop, Spark, and NoSQL databases.

    • Examples of Big Data include social media data, sensor data, and financial market data.

  • Answered by AI
  • Q6. Write a program for reversing a string without using string function
  • Ans. 

    Program to reverse a string without using string function

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

    • Use a loop to swap the first and last characters, then move towards the middle until the entire string is reversed

    • Convert the string to a character array, then swap the first and last elements until the entire array is reversed

  • Answered by AI
  • Q7. What is your role in final year project?
  • Ans. 

    I was responsible for designing and implementing the project's database and backend functionality.

    • Designed the database schema and created the necessary tables

    • Implemented the backend functionality using Java and Spring framework

    • Collaborated with team members to integrate the frontend and backend components

    • Tested the application and fixed any bugs or issues that arose

    • Presented the project to the faculty and received pos

  • Answered by AI
  • Q8. What are keys in database and why do we use them?
  • Ans. 

    Keys in a database are unique identifiers used to establish relationships between tables and ensure data integrity.

    • Keys are used to uniquely identify records in a database table.

    • Primary keys are used to uniquely identify each record in a table.

    • Foreign keys establish relationships between tables.

    • Keys help enforce data integrity and maintain consistency in the database.

    • Examples of keys include primary keys, foreign keys,

  • Answered by AI
  • Q9. What are issues in cloud?
  • Ans. 

    Issues in cloud include security, downtime, vendor lock-in, and data privacy.

    • Security concerns such as data breaches and unauthorized access

    • Downtime and service interruptions affecting business operations

    • Vendor lock-in and limited flexibility in choosing cloud providers

    • Data privacy and compliance with regulations such as GDPR and HIPAA

  • Answered by AI
  • Q10. Brief introduction of your project and algorithms used in project
  • Ans. 

    Developed a web application for online shopping using React and Node.js

    • Implemented user authentication and authorization using JSON Web Tokens (JWT)

    • Used MongoDB as the database to store user and product information

    • Implemented a search feature using Elasticsearch to provide fast and accurate search results

    • Integrated Stripe payment gateway for secure online transactions

  • Answered by AI
  • Q11. Flow diagram of final year project
  • Ans. 

    The flow diagram of my final year project showcases the step-by-step process of its execution.

    • The flow diagram illustrates the sequence of activities and their dependencies.

    • It helps in understanding the overall structure and logic of the project.

    • Each step in the diagram represents a specific task or action.

    • Arrows indicate the flow of control or data between different steps.

    • Decision points are represented by diamond-sha...

  • Answered by AI
  • Q12. Why do we normalise our database?
  • Ans. 

    Normalisation reduces data redundancy and improves data integrity in a database.

    • Prevents data duplication and inconsistencies

    • Simplifies database maintenance and updates

    • Improves query performance

    • Enforces data integrity and consistency

    • Follows best practices for database design

    • Examples: breaking down a customer table into separate tables for orders, addresses, and payments

    • Examples: creating a separate table for product ca...

  • Answered by AI
  • Q13. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies like HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge of algorithms and data structures

    • Familiar with agile development methodologies and version control systems like Git

  • Answered by AI
  • Q14. Tell me your 5 qualities so that i should hire you
  • Ans. 

    I am a problem solver, team player, quick learner, detail-oriented, and have strong communication skills.

    • Problem solver - I enjoy tackling complex problems and finding innovative solutions.

    • Team player - I work well with others and value collaboration in achieving goals.

    • Quick learner - I am able to pick up new technologies and concepts quickly.

    • Detail-oriented - I pay attention to the smallest details to ensure high-qual...

  • Answered by AI
  • Q15. Do you have any engineering background
  • Ans. 

    Yes, I have a Bachelor's degree in Computer Engineering.

    • Bachelor's degree in Computer Engineering

    • Experience in software development

    • Knowledge of engineering principles applied to software design

  • Answered by AI
  • Q16. How was your day?
  • Ans. 

    My day was productive and challenging, with a lot of problem-solving and collaboration.

    • Completed a major coding project ahead of schedule

    • Participated in a brainstorming session with team members

    • Solved a tricky bug in the codebase

    • Attended a virtual meeting with stakeholders

  • Answered by AI
  • Q17. Do you have relatives in Pune? or what about your accomodation?
  • Ans. 

    No, I do not have any relatives in Pune. I have arranged for my accommodation in a rented apartment near the office.

    • No relatives in Pune

    • Accommodation arranged in a rented apartment near the office

  • Answered by AI
  • Q18. Do you know about My Passion Challenge test?
  • Ans. 

    Yes, My Passion Challenge test is a coding competition for software engineers.

    • My Passion Challenge test is a coding competition that evaluates the coding skills of software engineers.

    • It is designed to test problem-solving abilities, algorithmic thinking, and coding proficiency.

    • Participants are given a set of coding challenges to solve within a specified time limit.

    • The challenges can range from simple to complex, coveri...

  • Answered by AI
  • Q19. Any higher studies plan?
  • Ans. 

    Considering pursuing a Master's degree in Computer Science to deepen knowledge and advance career.

    • Considering pursuing a Master's degree in Computer Science

    • To deepen knowledge and advance career

    • Examples: MS in Computer Science at XYZ University, online courses in AI and Machine Learning

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: In this section, you will find questions from all technical subjects like data structures,design and analysis of algorithms, software testing and quality assurance , computer networks, database management , C , C++ , C# and java. The difficulty level is moderate.
For this section you can study from indiabix.com
In the 2nd section, we have to write a program and also have to follow constraints mentioned in the problem statement. Programs are based on file handling, structure and union , string operations,etc.
In 3rd round, you have to write an essay of about 10 lines. Essay topics are general issues like I had 'Traffic issues in India'.
Tips: Stick to your basics.
All the concepts should be clear.
Programs should be syntactically correct. Try to mention comments and also display output as expected. It adds up to your representation even if your logic goes wrong. :)
For essay writing round, there should be no grammatical mistakes.
Time management is very important.

Duration: 90 minutes
Total Questions: 75

Round: Technical Interview
Experience: My first technical round really went well. So I was qualified for Hr round.
But some candidates had to appear for 2 technical interviews.

Tips: Stay confident about your answers and also mention area of interest in your resume and go through your resume before going to interview. 60% of technical interview is on projects. They are really interested in ideas used in your projects. Explain all the projects in detail like which front end and back end used.
Every round is an elimination round. So give your best and stay confident.


Round: HR Interview
Experience: Hr round is also elimination round. And you should have good communication skills.
There is always backfiring so you have to be attentive and confident.
Always try to reply in a positive way.
Tips: You should read about the history of company and also the domains on which they are working and their recent projects.

Skills: Verbal Communication Skills
College Name: Jawaharlal Nehru Engineering College

Skills evaluated in this interview

Hexaware Technologies Interview FAQs

How many rounds are there in Hexaware Technologies Human Resource Department interview?
Hexaware Technologies interview process usually has 7 rounds. The most common rounds in the Hexaware Technologies interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in Hexaware Technologies Human Resource Department interview?

Some of the top questions asked at the Hexaware Technologies Human Resource Department interview -

  1. There will be subject questions in techni...read more
  2. There will be basic questi...read more

Tell us how to improve this page.

Join Hexaware Technologies Experience the impact across your digital ecosystem and beyond.

Interview Questions from Similar Companies

Mphasis Interview Questions
3.4
 • 804 Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 762 Interviews
NTT Data Interview Questions
3.8
 • 627 Interviews
Publicis Sapient Interview Questions
3.5
 • 620 Interviews
GlobalLogic Interview Questions
3.6
 • 592 Interviews
View all
Senior Software Engineer
3.8k salaries
unlock blur

₹5.5 L/yr - ₹20.1 L/yr

Software Engineer
2.9k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

System Analyst
2.9k salaries
unlock blur

₹6.8 L/yr - ₹29 L/yr

Technical Architect
2.1k salaries
unlock blur

₹10 L/yr - ₹37 L/yr

Senior Executive
1.9k salaries
unlock blur

₹0.8 L/yr - ₹6.2 L/yr

Explore more salaries
Compare Hexaware Technologies with

Cognizant

3.7
Compare

TCS

3.7
Compare

DXC Technology

3.7
Compare

Mphasis

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