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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Hexaware Technologies Graduate Trainee Interview Questions and Answers

Updated 17 Mar 2025

10 Interview questions

A Graduate Trainee was asked 3mo ago
Q. Write one of your favorite programs.
Ans. 

My favorite program is a simple Python script that calculates the factorial of a number using recursion.

  • Uses a recursive function to calculate factorial.

  • Handles base case for 0! = 1.

  • Demonstrates the power of recursion in programming.

  • Example: factorial(5) returns 120.

A Graduate Trainee was asked
Q. What are the pillars of the OOPs concept?
Ans. 

The pillars of OOPs concept are Inheritance, Encapsulation, Polymorphism, and Abstraction.

  • Inheritance: Allows a class to inherit properties and behavior from another class.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Polymorphism: Ability to present the same interface for different data types.

  • Abstraction: Hiding the complex implementation details and showing only the necessa...

Graduate Trainee Interview Questions Asked at Other Companies

asked in Flipkart
Q1. Given an array, how do you find the number of pairs that sum to a ... read more
asked in Freshworks
Q2. Invert a Binary Tree You are provided with a Binary Tree and one ... read more
asked in Freshworks
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Freshworks
Q4. Deepest Left Leaf Node Problem Statement You are provided with a ... read more
asked in TCS
Q5. Consonant Counting Problem Statement Given a string STR comprisin ... read more
A Graduate Trainee was asked
Q. How do you increase the size of an array?
Ans. 

To increase array size, you can create a new array with a larger size and copy the elements from the original array to the new array.

  • Create a new array with a larger size

  • Copy elements from the original array to the new array

  • Update the reference to the new array

A Graduate Trainee was asked
Q. Can we rollback after a commit?
Ans. 

No, we cannot rollback after commit in a database.

  • Once a transaction is committed, changes are permanent and cannot be undone.

  • Rollback can only be done before committing a transaction.

  • Committing a transaction makes the changes final and persistent in the database.

  • Rollback is used to undo changes made in a transaction before committing.

A Graduate Trainee was asked
Q. Explain OOPS concepts in detail.
Ans. 

OOPs concepts refer to Object-Oriented Programming concepts which include inheritance, encapsulation, polymorphism, and abstraction.

  • Inheritance: Allows a class to inherit properties and behavior from another class.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Polymorphism: Ability to present the same interface for different data types.

  • Abstraction: Hiding the complex implement...

A Graduate Trainee was asked
Q. Explain OOPS concepts.
Ans. 

OOPS concepts are the foundation of object-oriented programming, focusing on principles like inheritance, encapsulation, polymorphism, and abstraction.

  • Inheritance: Allows a class to inherit properties and behavior from another class.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Polymorphism: Ability to present the same interface for different data types.

  • Abstraction: Hiding th...

🔥 Asked by recruiter 2 times
A Graduate Trainee was asked
Q. Why did you choose Hexaware?
Ans. 

I chose Hexaware because of their strong reputation in the IT industry and their focus on innovation and career development.

  • Hexaware has a strong reputation in the IT industry

  • They are known for their innovative solutions and cutting-edge technologies

  • Hexaware offers excellent career development opportunities

  • Their company culture and values align with my own

  • I was impressed by the positive feedback from current and f...

Are these interview questions helpful?
A Graduate Trainee was asked
Q. What is the difference between method overloading and method overriding?
Ans. 

Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

  • Overloading is a compile-time polymorphism while overriding is a runtime polymorphism.

  • Overloading is used to provide different ways of calling the same method while overriding is used to provide a specific implementation of a...

A Graduate Trainee was asked
Q. What is your understanding of SDLC and its methodologies?
Ans. 

SDLC (Software Development Life Cycle) outlines the phases of software development, ensuring quality and efficiency.

  • 1. Phases: SDLC typically includes planning, analysis, design, implementation, testing, deployment, and maintenance.

  • 2. Models: Common SDLC models include Waterfall, Agile, Spiral, and V-Model, each with unique approaches to development.

  • 3. Waterfall: A linear approach where each phase must be complete...

A Graduate Trainee was asked
Q. Tell me about SDLC and its methodologies.
Ans. 

SDLC (Software Development Life Cycle) outlines the process for developing software, ensuring quality and efficiency.

  • 1. Phases: SDLC includes phases like Planning, Analysis, Design, Implementation, Testing, and Maintenance.

  • 2. Models: Common SDLC models are Waterfall, Agile, and Spiral. For example, Agile focuses on iterative development.

  • 3. Documentation: Each phase requires documentation, such as requirements spec...

Hexaware Technologies Graduate Trainee Interview Experiences

18 interviews found

Graduate Trainee Interview Questions & Answers

user image LORDSON GNANA DURAI A

posted on 27 Nov 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy to crack very simple questions.

Round 2 - Group Discussion 

Technology bone or bane

Round 3 - One-on-one 

(3 Questions)

  • Q1. Introduce yourself?
  • Q2. Willing to relocate?
  • Q3. Some senario based questions?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The test was easy and it has 3 sections

Round 2 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. What are the pillers of oops concept
  • Ans. 

    The pillars of OOPs concept are Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the necessary fe...

  • Answered by AI
  • Q3. Describe your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Get well prepared with oops concept and your project.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

It was basic aptitude plus code snippets

Round 2 - Communication 

(1 Question)

  • Q1. English questions
Round 3 - Technical 

(1 Question)

  • Q1. Explain oops concepts in detail
  • Ans. 

    OOPs concepts refer to Object-Oriented Programming concepts which include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Describe your self in a single word

Graduate Trainee Interview Questions & Answers

user image Rajvansh Singh

posted on 19 Apr 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. How do you increase array size?
  • Ans. 

    To increase array size, you can create a new array with a larger size and copy the elements from the original array to the new array.

    • Create a new array with a larger size

    • Copy elements from the original array to the new array

    • Update the reference to the new array

  • Answered by AI
  • Q2. Can we rollback after commit?
  • Ans. 

    No, we cannot rollback after commit in a database.

    • Once a transaction is committed, changes are permanent and cannot be undone.

    • Rollback can only be done before committing a transaction.

    • Committing a transaction makes the changes final and persistent in the database.

    • Rollback is used to undo changes made in a transaction before committing.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was an aptitude round easier one can be easily cracked

Round 2 - Group Discussion 

General topics and technical topics were given with each 15 min to discuss with 10 member each . It was also easier one

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself in a minute
  • Q2. Explain about project

Interview Preparation Tips

Interview preparation tips for other job seekers - Easier interview process to crack
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Feb 2024. There were 6 interview rounds.

Round 1 - Aptitude Test 

Basic quant , verbal

Round 2 - Coding Test 

2 question, 1 is easy 2nd is easy to medium

Round 3 - Communication assessment 

(2 Questions)

  • Q1. Audio based questions
  • Q2. Vocab Listening
Round 4 - Technical 

(1 Question)

  • Q1. About urself Project (emphasize) Oops Dsa Dbms
Round 5 - Executive council 

(1 Question)

  • Q1. Abt urself Basic questions
Round 6 - HR 

(1 Question)

  • Q1. Basic hr question, u can easily find it on any platform Note: be urself do not pretend

Interview Preparation Tips

Interview preparation tips for other job seekers - Whole interview was medium,
Focus on fundamentals
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was online and easy overall

Round 2 - Coding Test 

Was taken with aptitude exam in a second section was easy as well

Round 3 - Technical 

(2 Questions)

  • Q1. Questions were on basic data structures and OOPS
  • Q2. Explain OOPS concepts
  • Ans. 

    OOPS concepts are the foundation of object-oriented programming, focusing on principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the com...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Personality assessment

Graduate Trainee Interview Questions & Answers

user image Priyavadhana P

posted on 8 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

90 mmins 90 questions both aptitude and domain based question asked

Interview Preparation Tips

Interview preparation tips for other job seekers - go through all aptitude well
Interview experience
3
Average
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Quite easy can be cracked without difficulties

Round 2 - HR 

(1 Question)

  • Q1. General questions like self intro and our passion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident u can easily make it
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

In the recent times I had the opportunity to attend the companies interview through on campus

1 st round was (aptitude+domain)

Aptitude has 3 subdivision
Verbal reasoning
Non verbal reasoning
Quantitative aptitude
Domain has 2
Pseucode
Computer fundamentals

The questions were at medium level

It needs good practice cuz 1min per question

Round 3 - Technical 

(1 Question)

  • Q1. It was about fluncy in English

Interview Preparation Tips

Interview preparation tips for other job seekers - Never give up

What people are saying about Hexaware Technologies

View All
wiseswift
Verified Icon
1d
works at
Hexaware Technologies
Job
Hi everyone I'm currently looking for a new opportunity in HR. I have 1.7 year's of experience as a Talent Acquisition and currently I am serving my notice period. Can handle end-to-end recruitment. Open to full time roles. Any leads would be appreciated. Thanks
Got a question about Hexaware Technologies?
Ask anonymously on communities.

Hexaware Technologies Interview FAQs

How many rounds are there in Hexaware Technologies Graduate Trainee interview?
Hexaware Technologies interview process usually has 3-4 rounds. The most common rounds in the Hexaware Technologies interview process are Aptitude Test, Technical and HR.
What are the top questions asked in Hexaware Technologies Graduate Trainee interview?

Some of the top questions asked at the Hexaware Technologies Graduate Trainee interview -

  1. How do you increase array si...read more
  2. What are the pillers of oops conc...read more
  3. Difference between overloading and overrid...read more
How long is the Hexaware Technologies Graduate Trainee interview process?

The duration of Hexaware Technologies Graduate Trainee interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 18 interview experiences

Difficulty level

Easy 55%
Moderate 45%

Duration

2-4 weeks 70%
6-8 weeks 20%
More than 8 weeks 10%
View more
Join Hexaware Technologies Experience the impact across your digital ecosystem and beyond.
Hexaware Technologies Graduate Trainee Salary
based on 31 salaries
₹2.2 L/yr - ₹6 L/yr
10% more than the average Graduate Trainee Salary in India
View more details

Hexaware Technologies Graduate Trainee Reviews and Ratings

based on 8 reviews

3.2/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

3.5

Salary

3.3

Job security

3.2

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 8 Reviews and Ratings
Senior Software Engineer
3.9k salaries
unlock blur

₹5.5 L/yr - ₹21.7 L/yr

Software Engineer
3.1k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

System Analyst
3k salaries
unlock blur

₹7 L/yr - ₹29 L/yr

Technical Architect
2.2k salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Senior Executive
2.1k salaries
unlock blur

₹0.8 L/yr - ₹6 L/yr

Explore more salaries
Compare Hexaware Technologies with

Cognizant

3.7
Compare

TCS

3.6
Compare

DXC Technology

3.6
Compare

Mphasis

3.3
Compare
write
Share an Interview