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 Software Developer Intern Interview Questions, Process, and Tips

Updated 16 Sep 2021

Top Hexaware Technologies Software Developer Intern Interview Questions and Answers

  • Q1. Kth Largest Element Problem Given an array containing N distinct positive integers and a number K , determine the Kth largest element in the array. Example: Input: N = 6 ...read more
  • Q2. Maximum Sum Path from Leaf to Root Given a binary tree with 'N' nodes, identify the path from a leaf node to the root node that has the maximum sum among all root-to-lea ...read more
  • Q3. Fishmonger Toll Optimization Problem A fishmonger needs to transport goods from a port to a market, crossing multiple states each requiring a toll. The goal is to minimi ...read more
View all 8 questions

Hexaware Technologies Software Developer Intern Interview Experiences

2 interviews found

I was interviewed in Dec 2020.

Round 1 - Video Call 

(3 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

This round was held on Google Meet Video Call at 10 A.M.
There were 2 Interviewers and they were very helpful.

  • Q1. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
  • Ans. 

    Find the Kth largest element in an array of distinct positive integers.

    • Sort the array in non-increasing order and return the Kth element.

    • Handle multiple test cases efficiently.

    • Ensure all elements in the array are distinct.

  • Answered by AI
  • Q2. Can you draw an E-R Diagram for Uber?
  • Ans. 

    An E-R Diagram for Uber would include entities like User, Driver, Ride, Payment, and Location.

    • Entities: User, Driver, Ride, Payment, Location

    • Relationships: User requests Ride, Driver provides Ride, Payment for Ride

    • Attributes: User ID, Driver ID, Ride ID, Payment ID, Location ID

    • Example: User (1) requests Ride (A) from Location (X) to Location (Y) with Driver (Z) providing the Ride and Payment (123) made for the Ride.

  • Answered by AI
  • Q3. 

    Maximum Sum Path from Leaf to Root

    Given a binary tree with 'N' nodes, identify the path from a leaf node to the root node that has the maximum sum among all root-to-leaf paths.

    Example:

    All the possibl...

  • Ans. 

    Find the path from a leaf node to the root node with the maximum sum in a binary tree.

    • Traverse the binary tree from leaf nodes to the root while keeping track of the sum of each path.

    • Compare the sums of all paths and return the path with the maximum sum.

    • Use recursion to traverse the tree efficiently.

    • Consider edge cases such as when the tree is empty or has only one node.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

The round was 2nd technical round conducted through Google Meet.
There were 2 interviewers and they were helpful.
Timing was from 11:10 A.M - 12:00 P.M

  • Q1. 

    Add Two Numbers Represented as Linked Lists

    Given two linked lists representing two non-negative integers, where the digits are stored in reverse order (i.e., starting from the least significant digit to ...

  • Ans. 

    Add two numbers represented as linked lists and return the sum as a linked list.

    • Traverse both linked lists simultaneously while keeping track of carry from previous sum

    • Create a new linked list to store the sum digits

    • Handle cases where one list is longer than the other by adding remaining digits with carry

    • Remember to handle the case where there is a carry after adding all digits

  • Answered by AI
Round 3 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

Timing was 12:30 P.M. to 1:00 P.M.
It was held on Google Meet and HR was helpful.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in ChennaiEligibility criteria70% aboveHexaware Technologies interview preparation:Topics to prepare for the interview - Dynamic Programming, Sort and Search Algorithms, Graphs, Data Structures ( Priority Queue, stack, sets), Greedy Algorithms, OOPS, DBMSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Contribute time for course subjects also like OS,DBMS,OOPS.
Tip 2 : Start practicing on Leetcode and InterviewBit 1 month before your Placement Drive and try solving approx 300+ questions.
Tip 3 : Regularly Participate in Coding Contests on CodeForces and try to be Expert.

Application resume tips for other job seekers

Tip 1 : Don't try to lie in resume as questions can be asked on the same in depth.
Tip 2 : Mention atleast 1 project or past work experience.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 78 minutes
Round difficulty - Easy

My slot was at 4.30 pm on 11 th oct 2020

  • Q1. 

    Fishmonger Toll Optimization Problem

    A fishmonger needs to transport goods from a port to a market, crossing multiple states each requiring a toll. The goal is to minimize the toll costs while ensuring th...

  • Ans. 

    The Fishmonger Toll Optimization Problem involves minimizing toll costs while ensuring timely delivery of goods from a port to a market.

    • Given 'N' states and a time limit 'M', find the smallest toll amount to reach the market from the port within the given time.

    • Use dynamic programming to solve the problem efficiently.

    • Consider the time and toll matrices to calculate the minimum toll cost.

    • Return -1 if it is not possible t

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 20 Minutes
Round difficulty - Easy

It happened in the afternoon

  • Q1. 

    Shape and Method Overriding Problem Statement

    Create a base class called Shape that contains a field named shapeType and a method printMyType.

    Implement two derived classes:

    • Square: This class inheri...
  • Ans. 

    Create base class Shape with field shapeType and method printMyType. Implement Square and Rectangle classes with calculateArea method.

    • Create a base class Shape with shapeType field and printMyType method.

    • Implement Square and Rectangle classes inheriting from Shape.

    • Include additional fields like length and breadth in Square and Rectangle classes.

    • Override printMyType method in Square and Rectangle classes to output the t...

  • Answered by AI
  • Q2. What are the ACID properties in database management systems?
  • Ans. 

    ACID properties are a set of properties that guarantee the reliability of transactions in database management systems.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none are.

    • Consistency ensures that the database remains in a consistent state before and after the transaction.

    • Isolation ensures that the execution...

  • Answered by AI
Round 3 - Assignment 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. Can you write an essay on any topic and present it verbally?
  • Ans. 

    Yes, I can write an essay on any topic and present it verbally.

    • Choose a topic that interests you and research it thoroughly

    • Create an outline with an introduction, body paragraphs, and a conclusion

    • Use clear and concise language to convey your ideas

    • Practice presenting your essay verbally to improve your delivery

    • Engage your audience by maintaining eye contact and using gestures

    • Be prepared to answer questions or discuss yo

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in PuneEligibility criteriaAbove 60% or 6 C.G.P.AHexaware Technologies interview preparation:Topics to prepare for the interview - Aptitude , Logical Reasoning , Verbal , DBMS , OS , Java Lang , Computer science basicsTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice good aptitude questions
Tip 2 : Read important core subjects thoroughly
Tip 3 : Also revise language basics

Application resume tips for other job seekers

Tip 1 : Be honest with your resume
Tip 2 : Try to somehow highlight your strong points in resume

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.

I applied via Walk-in and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. .net questions - routing in asp.net MVC ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing . Prepare well for interview on .Net technology stack

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

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

Round 1 - Aptitude Test 

Good

Round 2 - Technical 

(1 Question)

  • Q1. Basic question from C++.Some questions from Data structure and computer architecture.

Interview Preparation Tips

Topics to prepare for TCS Software Engineer interview:
  • C++
Interview preparation tips for other job seekers - Prepare well. Aptitude is not very easy so you have to prepare well.

I was interviewed in Sep 2016.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about Your project
  • Ans. 

    Developed a web-based project management tool for a software development company.

    • Used Agile methodology for development

    • Implemented features like task assignment, progress tracking, and team collaboration

    • Integrated with third-party tools like GitHub and Slack

    • Designed a user-friendly interface with responsive design

    • Deployed on AWS using EC2 and RDS

  • Answered by AI
  • Q2. Tell me about your CV!
  • Ans. 

    My CV showcases my experience in software development, including projects in Java, Python, and web development.

    • Experience in Java, Python, and web development

    • Worked on projects involving database management systems

    • Familiar with Agile development practices

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Tough! But manuplative ,yes manuplative ,I feel that your test scores are manuplated by the company! You score full marks in the test , but you are mechanical engineer you might not qualify for the next round! I say this as per ny experience . POINTER ,BRANCH and then score in this test describe the overall perfomance!
Tips: The company is totally for IT engineers if you are from other branch fonnot hope much, have a backup.
Duration: 1 hour 20 minutes
Total Questions: 80

Round: Technical + HR Interview
Experience: They Play with your minds,yes they do! Believe me donot show tough expressions!
Tips: Stay Calm ,they are not to scare you!

Skills: Technical, knowledge, gritt, Behavioural Skills
College Name: Atharva College Of Engineering

I was interviewed in May 2017.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your Project done in 4th year Btech
  • Ans. 

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

    • Used HTML, CSS, JavaScript for front-end development

    • Implemented backend using Node.js and MongoDB for database management

    • Incorporated user authentication and authorization features

    • Utilized Agile methodology for project management

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 3 hours

Round: Technical + HR Interview
Experience: They asked several questions regarding all the bio data and some computer questions and some hr level questions

Round: Resume Shortlist
Experience: Resume got shortlisted and I got the Job that time I even can't believe that

College Name: ITER BHUBANESWSR
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

AVTEC

No Interviews

CAMPUS PLACEMENT

Anna University

INTERVIEWS

Zydus Lifesciences

200 top interview questions

JOBS

HGS

No Jobs

INTERVIEWS

AVTEC

No Interviews

INTERVIEWS

AVTEC

No Interviews

INTERVIEWS

AVTEC

No Interviews

INTERVIEWS

AVTEC

No Interviews

Tell us how to improve this page.

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

Hexaware Technologies Software Developer Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

3.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
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