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 Azure Data Engineer Interview Questions and Answers

Updated 12 Sep 2024

9 Interview questions

An Azure Data Engineer was asked 9mo ago
Q. How do you find duplicate rows?
Ans. 

Use SQL query with GROUP BY and HAVING clause to find duplicate rows.

  • Use GROUP BY to group rows with same values

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

  • Example: SELECT column1, column2, COUNT(*) FROM table_name GROUP BY column1, column2 HAVING COUNT(*) > 1

An Azure Data Engineer was asked 9mo ago
Q. What is the architecture of Azure Synapse?
Ans. 

Azure Synapse is a cloud-based analytics service that brings together big data and data warehousing.

  • Azure Synapse integrates big data and data warehousing capabilities in a single service

  • It allows for data ingestion, preparation, management, and serving for BI and machine learning

  • Supports both serverless and provisioned resources for data processing

  • Offers integration with Azure Machine Learning, Power BI, and Azur...

Azure Data Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. How can we load multiple (50) tables at a time using ADF?
Q2. If both ADF and Databricks can achieve similar functionalities li ... read more
asked in KPMG India
Q3. Difference between RDD, Dataframe and Dataset. How and what you h ... read more
asked in Techigai
Q4. What is incremental load and other types of loads? How do you imp ... read more
asked in TCS
Q5. Show me the details of newly joined employees based on two tables ... read more
An Azure Data Engineer was asked 9mo ago
Q. What are the different types of clusters in Databricks?
Ans. 

Types of clusters in Databricks include Standard, High Concurrency, and Single Node clusters.

  • Standard cluster: Suitable for running single jobs or workflows.

  • High Concurrency cluster: Designed for multiple users running concurrent jobs.

  • Single Node cluster: Used for development and testing purposes.

An Azure Data Engineer was asked 9mo ago
Q. Write the syntax to define the schema of a file for loading.
Ans. 

Syntax to define schema of a file for loading

  • Use CREATE EXTERNAL TABLE statement in SQL

  • Specify column names and data types in the schema definition

  • Example: CREATE EXTERNAL TABLE MyTable (col1 INT, col2 STRING) USING CSV

An Azure Data Engineer was asked 9mo ago
Q. Find the student with marks greater than 80 in all subjects
Ans. 

Filter students with marks greater than 80 in all subjects

  • Iterate through each student's marks in all subjects

  • Check if all marks are greater than 80 for a student

  • Return the student if all marks are greater than 80

An Azure Data Engineer was asked 10mo ago
Q. How do you perform performance tuning in ADF?
Ans. 

Performance tuning in Azure Data Factory involves optimizing data flows and activities to improve efficiency and reduce processing time.

  • Identify bottlenecks in data flows and activities

  • Optimize data partitioning and distribution

  • Use appropriate data integration patterns

  • Leverage caching and parallel processing

  • Monitor and analyze performance metrics

An Azure Data Engineer was asked
Q. What is the Catalyst optimizer?
Ans. 

Catalyst optimizer is a query optimization framework in Apache Spark.

  • Catalyst optimizer is a rule-based optimization framework used in Apache Spark for optimizing query plans.

  • It leverages advanced programming language features in Scala to build an extensible query optimizer.

  • Catalyst optimizer performs various optimizations such as constant folding, predicate pushdown, and projection pruning.

  • It helps in improving t...

Are these interview questions helpful?
An Azure Data Engineer was asked
Q. What is a catalyst optimizer?
Ans. 

The catalyst optimizer is a query optimization engine in Apache Spark that improves performance by generating optimized query plans.

  • It is a query optimization engine in Apache Spark.

  • It improves performance by generating optimized query plans.

  • It uses rule-based and cost-based optimization techniques.

  • It leverages advanced techniques like code generation and adaptive query execution.

  • Example: Catalyst optimizer in Spa...

An Azure Data Engineer was asked
Q. What is the main advantage of Delta Lake?
Ans. 

Delta Lake provides ACID transactions, schema enforcement, and time travel capabilities for data lakes.

  • ACID transactions ensure data consistency and reliability.

  • Schema enforcement helps maintain data quality and prevent data corruption.

  • Time travel allows users to access and revert to previous versions of data for auditing or analysis purposes.

Hexaware Technologies Azure Data Engineer Interview Experiences

7 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Sql queries and knowledge of different syntaxes

Round 2 - One-on-one 

(2 Questions)

  • Q1. Find the student with marks greater than 80 in all subjects
  • Ans. 

    Filter students with marks greater than 80 in all subjects

    • Iterate through each student's marks in all subjects

    • Check if all marks are greater than 80 for a student

    • Return the student if all marks are greater than 80

  • Answered by AI
  • Q2. Write the syntax to define the schema of a file for loading.
  • Ans. 

    Syntax to define schema of a file for loading

    • Use CREATE EXTERNAL TABLE statement in SQL

    • Specify column names and data types in the schema definition

    • Example: CREATE EXTERNAL TABLE MyTable (col1 INT, col2 STRING) USING CSV

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. How to do performance tuning in adf
  • Ans. 

    Performance tuning in Azure Data Factory involves optimizing data flows and activities to improve efficiency and reduce processing time.

    • Identify bottlenecks in data flows and activities

    • Optimize data partitioning and distribution

    • Use appropriate data integration patterns

    • Leverage caching and parallel processing

    • Monitor and analyze performance metrics

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - i got selected in 1st round that happened by walk in and they said there will be a hr , client by next tues . after that walk in drive no response from HR

Skills evaluated in this interview

Azure Data Engineer Interview Questions & Answers

user image VIDHYASAGAR S B

posted on 12 Sep 2024

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

I appeared for an interview in Mar 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Types of cluster in data bricks??
  • Ans. 

    Types of clusters in Databricks include Standard, High Concurrency, and Single Node clusters.

    • Standard cluster: Suitable for running single jobs or workflows.

    • High Concurrency cluster: Designed for multiple users running concurrent jobs.

    • Single Node cluster: Used for development and testing purposes.

  • Answered by AI
  • Q2. Highest 2nd salary in the employee table?
  • Ans. 

    To find the highest 2nd salary in the employee table, you need to use SQL query with the ORDER BY and LIMIT clauses.

    • Use SQL query with ORDER BY clause to sort salaries in descending order

    • Use LIMIT 1,1 to get the second highest salary

  • Answered by AI
  • Q3. Find the duplicate row ?
  • Ans. 

    Use SQL query with GROUP BY and HAVING clause to find duplicate rows.

    • Use GROUP BY to group rows with same values

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

    • Example: SELECT column1, column2, COUNT(*) FROM table_name GROUP BY column1, column2 HAVING COUNT(*) > 1

  • Answered by AI
  • Q4. What is Azure synapse architecture?
  • Ans. 

    Azure Synapse is a cloud-based analytics service that brings together big data and data warehousing.

    • Azure Synapse integrates big data and data warehousing capabilities in a single service

    • It allows for data ingestion, preparation, management, and serving for BI and machine learning

    • Supports both serverless and provisioned resources for data processing

    • Offers integration with Azure Machine Learning, Power BI, and Azure Dat...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare exist questions for hexaware interview is enough

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the main advantage of delta lake?
  • Ans. 

    Delta Lake provides ACID transactions, schema enforcement, and time travel capabilities for data lakes.

    • ACID transactions ensure data consistency and reliability.

    • Schema enforcement helps maintain data quality and prevent data corruption.

    • Time travel allows users to access and revert to previous versions of data for auditing or analysis purposes.

  • Answered by AI
  • Q2. It enables time travel and support ACID transactions.
Round 2 - Technical 

(1 Question)

  • Q1. What is a catalyst optimizer?
  • Ans. 

    The catalyst optimizer is a query optimization engine in Apache Spark that improves performance by generating optimized query plans.

    • It is a query optimization engine in Apache Spark.

    • It improves performance by generating optimized query plans.

    • It uses rule-based and cost-based optimization techniques.

    • It leverages advanced techniques like code generation and adaptive query execution.

    • Example: Catalyst optimizer in Spark SQ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on fundamentals

Skills evaluated in this interview

Azure Data Engineer Interview Questions & Answers

user image Avinash Kulkarni

posted on 1 Apr 2024

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

(1 Question)

  • Q1. What is Catalyst optimizer
  • Ans. 

    Catalyst optimizer is a query optimization framework in Apache Spark.

    • Catalyst optimizer is a rule-based optimization framework used in Apache Spark for optimizing query plans.

    • It leverages advanced programming language features in Scala to build an extensible query optimizer.

    • Catalyst optimizer performs various optimizations such as constant folding, predicate pushdown, and projection pruning.

    • It helps in improving the pe...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Map and Flat map SQL query questions Notebook schedule command in python SQL query in Notebook command Raw_numbers
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Notebook scheduling Map and flatmap Python sql commond sql questions

What people are saying about Hexaware Technologies

View All
a senior developer
2w
Need Advice – Stuck Between Stability & Growth
I’ve been working in the same company for 8+ years, currently working remotely from my hometown and staying with family. However, my salary is no longer at par with market standards. Now, I’ve received an offer from another company with a 50% hike, but it’s a work-from-office role in another city. My parents prefer I stay back and continue remotely, valuing stability and proximity to family. I’m torn between comfort and emotional support at home vs career growth and better compensation. What would you do in this situation? Looking forward to your suggestions or experiences. 🙏
Got a question about Hexaware Technologies?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

4 Questions

  • Q1. .Net support related questions for example 1. What to do when applicable is down. 2. how to check IIS error logs.
  • Q2. Explain Projects you worked and your role in those.
  • Q3. Explain scenario when you handled high pressure from client.
  • Ans. 

    Handled high pressure from client by prioritizing tasks and communicating effectively.

    • Identified critical issues and addressed them first

    • Communicated regularly with the client to provide updates and manage expectations

    • Collaborated with team members to delegate tasks and ensure timely delivery

    • Maintained a calm and professional demeanor to avoid escalating the situation

  • Answered by AI
  • Q4. Explain release management.
  • Ans. 

    Release management is the process of planning, scheduling, coordinating, and deploying software releases.

    • It involves identifying the scope of the release and the features to be included

    • Creating a release plan and schedule

    • Coordinating with different teams involved in the release process

    • Testing the release to ensure it meets quality standards

    • Deploying the release to production

    • Monitoring the release to ensure it is stable...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For .Net support related projects, you need to be aware about first identifying the problem and then you need to think best optimised solution for that. You need to know how to check error logs, should be well versed with basic SQL queries and debugging.

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

NTT Data user image NIDHI PRIYADARSHINI

posted on 9 Apr 2015

Interview Questionnaire 

6 Questions

  • Q1. Tell me about your project
  • Ans. 

    Developed a web-based project management tool for a startup

    • Used React for the frontend and Node.js for the backend

    • Implemented user authentication and authorization using JWT

    • Integrated with third-party APIs such as Trello and Slack

    • Implemented real-time updates using WebSockets

    • Deployed on AWS using EC2 and RDS

  • Answered by AI
  • Q2. Write the idea or algorithm for d program of fibonacci series
  • Q3. One question from your subject
  • Q4. Introduce yourself
  • Ans. 

    I am a software engineer with experience in developing web applications and mobile apps.

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Skilled in using frameworks like React, Angular, and Spring Boot

    • Experienced in working with databases such as MySQL and MongoDB

    • Familiar with Agile development methodologies and DevOps practices

  • Answered by AI
  • Q5. If I give you a box full of pencils..in how many ways can you use it
  • Q6. Do you have any question for me

Interview Preparation Tips

Round: Test
Experience: Time management is very important to clear the aptitude test. Besides this a lot of practice is also very important.  This round is the major filteration round. Though each round is a major filteration round cuz NTT DATA is not a bulk recruiter like cts, infy etc. Almost 2-3 thousand students were there for this round from 6 different colleges and only 100 of them were selected.
Tips: Its better to start with the preparation from before and do consider the previous year placement papers available at indiabix. You can practice more n more. Apart from this you can go through the r.s aggarwal aptitude book also.

Round: Group Discussion
Experience: There were many panels and each panel had 10-12 students. The H.r first decided some other topic but when he asked wether everybody is aware of the topic ..there were few who didn't know about it. .so he picked up another topic. Fortunately he asked me to start with the discussion.  Always try to be the one to break the ice.
Tips: The only key to crack this round is that yku should talk. You should definitely not confuse gd with debate. You should not argue or by any chance shouldn't sound arrogant.

Round: Technical Interview
Experience: They will definitely ask about your project so be thorough with that. Ntt data is a Japanese company . Though this is IT but it will ask  from the subject of your own choice from people those who have a non IT background. After you get shortlisted in d gd they will give you a form to fill. Do fill that form without fail. If it is blank then even if u go to the hr round he will reject you.
Tips: Just be confident and always smile. Be careful on what you write in your resume cuz they can ask about anything based on your resume.

Round: HR Interview
Experience: This round was a cake walk. Just be confident and updated about the company.  Do ask him a question if he asks you to do that.but make sure it shouldn't be vague or out of the picture.
Tips: Keep smiling and don't get nervous.  If they ask you about location preferences,  dun get firm at one place.try to be flexible.

General Tips: Donot loose hope at any cost. You never know when your moment is going to arrive. Do practice the aptitude as much as you can. Finally NTT DATA selected only 50 overall in wch 11 were from my college n i was lucky to be one of them. the offer letter was issued the same day and we were all venerated.  Its just a game of confidence. All the best
Skill Tips: Try to add some co curricular activities and justify your role.
Skills: communication, technical knowledge, management skills, leadership
College Name: SATHYABAMA UNIVERSITY
Motivation: You will find the it companies mostly head quartered in U.S but this company is in Japan. Plus you have better opportunity and growth compared to other companies cuz its not a bulk recruiter.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Java ( socket programming, OOPS, DS )
  • Q2. Write about your dream
  • Ans. 

    My dream is to build innovative software solutions that positively impact people's lives.

    • Developing cutting-edge technology

    • Creating user-friendly interfaces

    • Solving complex problems

    • Collaborating with talented individuals

    • Making a difference in society

    • Continuous learning and growth

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: GRE givers , you can make it through this. Brush up your technical skills for the programming section.
Tips: GRE quant and verbal and quick review from tutorialspoint.com would do the trick.

Round: Group Discussion
Experience: I had fun. I won a few debate competitions in various technical symposiums so, It gave a good experience about being quiet at the right moment.
Tips: Turn to your GRAB-ON mode. Never miss any chance. Learn to know when to be quiet and when to talk in a GD. Try to bring down the heat If two participants are getting into a argumentative discussion.

Round: Stress Interview
Experience: It was really difficult. Exactly after the GD, we were asked to right an essay in a very less time and our capability to manage the stress was observed.
Tips: Be calm and write all that you know in a presentable way.

Round: Technical Interview
Experience: I did a project in my 3rd year which included few concepts on Socket programming which helped me a bit in this round. I answered confidently and I was put to a confidence test too to see how sure I was about the answer.
Tips: A quick review on the day of interview and involving in friendly discussion about programming languages before the test helps.

Round: HR Interview
Experience: I was asked few technical questions in this round and later moved on to the general logical questions. Questions like, cutting a bread into multiple slices, finding the corresponding switch among 3 switches for 3 bulbs in room were asked. Find the sum of 1-10 in 4 seconds was asked suddenly. Thanks to Arithmetic Progressions :P.
Tips: Use your logical ability to answer.

Skills: Java, C, Body Language, Mental ability, Confidence.
College Name: Malla Reddy Institute of Engineering & Technology ( MRIET )
Motivation: Ranked among the top 50 of the Fortune 500. Expanding organizations which include lot of opportunities.

Hexaware Technologies Interview FAQs

How many rounds are there in Hexaware Technologies Azure Data Engineer interview?
Hexaware Technologies interview process usually has 1-2 rounds. The most common rounds in the Hexaware Technologies interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Hexaware Technologies Azure Data 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 SQL, SQL Azure, Pyspark, Azure Databricks and Python.
What are the top questions asked in Hexaware Technologies Azure Data Engineer interview?

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

  1. What is the main advantage of delta la...read more
  2. Write the syntax to define the schema of a file for loadi...read more
  3. Find the student with marks greater than 80 in all subje...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Join Hexaware Technologies Experience the impact across your digital ecosystem and beyond.

Interview Questions from Similar Companies

Mphasis Interview Questions
3.3
 • 845 Interviews
DXC Technology Interview Questions
3.7
 • 837 Interviews
EXL Service Interview Questions
3.7
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 792 Interviews
NTT Data Interview Questions
3.8
 • 657 Interviews
Publicis Sapient Interview Questions
3.5
 • 643 Interviews
GlobalLogic Interview Questions
3.6
 • 627 Interviews
View all
Hexaware Technologies Azure Data Engineer Salary
based on 46 salaries
₹3.5 L/yr - ₹15.1 L/yr
8% less than the average Azure Data Engineer Salary in India
View more details

Hexaware Technologies Azure Data Engineer Reviews and Ratings

based on 4 reviews

3.5/5

Rating in categories

3.2

Skill development

3.0

Work-life balance

3.0

Salary

2.7

Job security

3.5

Company culture

2.2

Promotions

2.5

Work satisfaction

Explore 4 Reviews and Ratings
Azure Data Engineer - ADF, Snowflake

Pune,

Chennai

+1

4-9 Yrs

Not Disclosed

Azure Data Engineer

Pune,

Chennai

+1

4-9 Yrs

Not Disclosed

Azure Data Engineer

Pune,

Chennai

+1

9-12 Yrs

₹ 15-25 LPA

Explore more jobs
Senior Software Engineer
3.8k salaries
unlock blur

₹8.3 L/yr - ₹16.2 L/yr

Software Engineer
3.3k salaries
unlock blur

₹4 L/yr - ₹9 L/yr

System Analyst
3k salaries
unlock blur

₹12.4 L/yr - ₹22 L/yr

Technical Architect
2.2k salaries
unlock blur

₹17.2 L/yr - ₹31 L/yr

Senior Executive
2.2k salaries
unlock blur

₹1.8 L/yr - ₹5.2 L/yr

Explore more salaries
Compare Hexaware Technologies with

Cognizant

3.7
Compare

TCS

3.6
Compare

DXC Technology

3.7
Compare

Mphasis

3.4
Compare
write
Share an Interview