Hexaware technology ltd interview experience Real time questions & tips from candidates to crack your interview

Post Graduate Engineer Trainee

Hexaware technology ltd
upvote
share-icon
4 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: Data Structure and Algorithm, Database Management System, Computer Network, Object Oriented Programming, Operating System.
Tip
Tip

Tip 1 : Practice DSA Question if not implementation at least you need to know all the theory
Tip 2 : OOPs and DBMS are majorly asked interview soo don't forgot to practice it well
Tip 3 : With Technical knowledge puzzle question are also important as the logic and reasoning part is very important.

Application process
Where: Campus
Eligibility: Above 7.5 CGPA
Resume Tip
Resume tip

Tip 1 : Try to speak True in resume Don't write things which you don't know just to showcase because question are based on that 
Tip 2 : Mention Some good project and skill of you and also if you have done good on any coding platform or win any sort of competition mention them.

Interview rounds

01
Round
Hard
Online Coding Interview
Duration120 minutes
Interview date8 Sep 2021
Coding problem2

The round was in the morning around 10. The round contains MCQ question from Aptitude, Reasoning and Communication. Then there was 1 coding question to solve, and the time to solve it was 45 min.

1. MCQ Questions

Aptitude(20 Question ) , Reasoning(20 Question), Programming Question(10 Question)


Number Of MCQs - 50

2. Maximum Path Sum

Easy
0/40
Asked in companies
OracleMicrosoftGoldman Sachs

You are given an n-ary tree consisting of ‘N’ nodes. Your task is to return the maximum sum of the path from the root to the leaf node.

For example:
For the given tree:

The path 1 -> 3 -> 7 produces the maximum i.e, 11.
Problem approach

1) Find maximum sum from leaf to root in left subtree of X (we can use this post for this and next steps) 
2) Find maximum sum from leaf to root in right subtree of X. 
3) Add the above two calculated values and X->data and compare the sum with the maximum value obtained so far and update the maximum value. 
4) Return the maximum value.

Try solving now
02
Round
Medium
Video Call
Duration45 minutes
Interview date23 Sep 2021
Coding problem2

It was in the morning around 11 and the interviewer join on Teams call.

1. Add Two Numbers As Linked Lists

Moderate
20m average time
80% success
0/80
Asked in companies
Goldman SachsInformaticaFacebook

You are given two non-negative numbers 'num1' and 'num2' represented in the form of linked lists.


The digits in the linked lists are stored in reverse order, i.e. starting from least significant digit (LSD) to the most significant digit (MSD), and each of their nodes contains a single digit.


Calculate the sum of the two numbers and return the head of the sum list.


Example :
Input:
'num1' : 1 -> 2 -> 3 -> NULL
'num2' : 4 -> 5 -> 6 -> NULL

Output: 5 -> 7 -> 9 -> NULL

Explanation: 'num1' represents the number 321 and 'num2' represents 654. Their sum is 975.


Problem approach

Traverse the two linked lists in order to add preceding zeros in case a list is having lesser digits than the other one.
Start from the head node of both lists and call a recursive function for the next nodes.
Continue it till the end of the lists.
Creates a node for current digits sum and returns the carry.

Try solving now

2. Puzzle Question

There are 5 lanes on a race track. One needs to find out the 3 fastest horses among total of 25. Find out the minimum number of races to be conducted in order to determine the fastest three.

Problem approach

Tip 1 : The approach entails conducting 5 races where each race group would involve 5 horses.
Tip 2 : In the ensuing step, a sixth race is conducted between winners of first 5 races to determine the 3 fastest horses (marked A1, B1, A=and C1). The seventh race is conducted between horses B1, C1, second and third horse from the horse A1’s group (A2, A3), second horse from horse B1’s group (B2).
Tip 3 : The horses that finish 1st and 2nd in the seventh race, are actually the 2nd and the 3rd fastest horses among all horses.

03
Round
Medium
Video Call
Duration20 minutes
Interview date7 Oct 2021
Coding problem1

It was the manger round. It was in the morning around 10 some scenario based question was asked.

1. Puzzle Question

Describe a situation where you weren’t satisfied with your job. What could have made it better?

Problem approach

Tip 1 : Think and answer which is better for company

04
Round
Medium
HR Round
Duration10 minutes
Interview date30 Oct 2021
Coding problem1

It was easy Compared to other rounds it was basically to identify a person.
The round happened in the morning around 9.

1. Basic HR Questions

Tell me about yourself.

What are your strengths and weaknesses?

 

Problem approach

Tip 1 : This type of question are placed to make yourself comfortable.
Tip 2 : Be confident while answering 
Tip 3 : Look in the eye's of interviewer as much as possible

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
SDE - Intern
3 rounds | 5 problems
Interviewed by Hexaware technology ltd
1231 views
0 comments
0 upvotes
Associate Software Engineer
4 rounds | 4 problems
Interviewed by Hexaware technology ltd
1313 views
0 comments
0 upvotes
Software Engineer Trainee
2 rounds | 5 problems
Interviewed by Hexaware technology ltd
1298 views
1 comments
0 upvotes
SDE - 1
6 rounds | 11 problems
Interviewed by Hexaware technology ltd
607 views
0 comments
0 upvotes