Upload Button Icon Add office photos

DELTA

Compare button icon Compare button icon Compare

Filter interviews by

DELTA Data Engineer Interview Questions and Answers

Updated 2 Jun 2025

DELTA Data Engineer Interview Experiences

2 interviews found

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain Spark architecture
  • Ans. 

    Spark architecture is based on a master-slave architecture with a cluster manager to coordinate tasks.

    • Spark has a master node that manages the cluster and worker nodes that execute tasks.

    • It uses a cluster manager like YARN or Mesos to allocate resources and schedule tasks.

    • Spark applications are run as independent sets of processes on a cluster, coordinated by the SparkContext object.

    • It has a resilient distributed datas...

  • Answered by AI
  • Q2. Write a python program to greoup annagram
  • Ans. 

    Python program to group anagrams in an array of strings

    • Create a dictionary to store sorted strings as keys and corresponding anagrams as values

    • Iterate through the array of strings, sort each string and add it to the dictionary

    • Return the values of the dictionary as grouped anagrams

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How to achieve aws cross account sharing?
  • Ans. 

    AWS cross account sharing can be achieved by using IAM roles and policies.

    • Create an IAM role in the account that will share resources

    • Define a trust policy in the role to allow the other account to assume the role

    • Attach a policy to the role granting the necessary permissions

    • In the receiving account, create an IAM role with a trust policy allowing the sharing account to assume the role

    • Use the AWS CLI or console to assume...

  • Answered by AI
  • Q2. Difference between logical plan and physical plan in pyspark?
  • Ans. 

    Logical plan represents the high-level abstract representation of the computation to be performed, while physical plan represents the actual execution plan with specific optimizations and details.

    • Logical plan is a high-level abstract representation of the computation to be performed.

    • Physical plan is the actual execution plan with specific optimizations and details.

    • Logical plan is created first and then optimized to gen...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. General questions about cultural fitment

Interview Preparation Tips

Topics to prepare for DELTA Data Engineer interview:
  • Python
  • AWS
  • pyspark
Interview preparation tips for other job seekers - be strong in fundamental of python, Pyspark, aws and ready for aws scenario based questions. I have noted all the questions in a blog at -----

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. What is SHIR ?
  • Ans. 

    SHIR stands for Self-hosted Integration Runtime, enabling data integration in Azure Data Factory.

    • SHIR allows data movement between on-premises and cloud data sources.

    • It supports various data integration scenarios, such as ETL processes.

    • Example: Using SHIR to connect an on-premises SQL Server to Azure Data Factory.

    • SHIR can be installed on any machine that meets the system requirements.

    • It provides secure data transfer by...

  • Answered by AI
  • Q2. Anti join in pyspark
  • Ans. 

    An anti join in PySpark returns rows from one DataFrame that do not have matching rows in another DataFrame.

    • An anti join is useful for filtering out records that exist in another DataFrame.

    • In PySpark, you can perform an anti join using the 'join' method with 'how' set to 'left_anti'.

    • Example: df1.join(df2, on='id', how='left_anti') returns rows from df1 where 'id' is not in df2.

    • Anti joins can help in data cleaning by id...

  • Answered by AI

Data Engineer Interview Questions Asked at Other Companies

asked in Sigmoid
Q1. Next Greater Element Problem Statement You are given an array arr ... read more
asked in LTIMindtree
Q2. If you are given cards numbered 1-1000 and 4 boxes, where card 1 ... read more
asked in Cisco
Q3. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
asked in Sigmoid
Q4. Problem: Search In Rotated Sorted Array Given a sorted array that ... read more
asked in Sigmoid
Q5. K-th Element of Two Sorted Arrays You are provided with two sorte ... read more

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about DELTA?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed in Aug 2021. There were 3 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 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Why should we hire you?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.
Round 3 - One-on-one 

(1 Question)

  • Q1. Same as earlier. Nothing different asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to earn pocket money. Good to learn people skills
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Education qualification
  • Q2. Job experiences
  • Ans. 

    I have diverse sales experience, excelling in client relations and achieving targets in competitive markets.

    • Developed strong relationships with clients, resulting in a 30% increase in repeat business.

    • Consistently exceeded sales targets by an average of 20% each quarter.

    • Implemented a new CRM system that improved lead tracking and follow-up efficiency.

    • Conducted market research to identify new opportunities, leading to th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - will not recommend anyone to join this company

Interview Questionnaire 

1 Question

  • Q1. Data structures,python fundamentals

Data Engineer Interview Questions & Answers

Amazon user image Rohit Kulkarni

posted on 21 Sep 2015

Interview Preparation Tips

Round: Resume Shortlist
Experience: Relevant experience matters, a lot!

Round: HR Interview
Experience: Nothing specific. Just resume based.

Round: Technical Interview
Experience: 7 rounds. Across SQL, Python, Shell Script (bash), platform architectures and Amazon web services (AWS).
Tips: Prepare well - SQL and data architectures for various use cases.

Round: Behavioural Interview
Experience: On Amazons leadersh

I applied via Naukri.com and was interviewed before Oct 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Asked To scrape asite
  • Ans. 

    Web scraping involves extracting data from websites using programming techniques.

    • Use libraries like BeautifulSoup or Scrapy in Python for parsing HTML.

    • Identify the target data by inspecting the website's structure using browser developer tools.

    • Handle pagination by following links to subsequent pages to gather more data.

    • Respect the website's robots.txt file to ensure compliance with scraping policies.

    • Implement error han...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - scraping,work flow of sites,dom
Are these interview questions helpful?

I appeared for an interview before Feb 2021.

Round 1 - Aptitude Test 

Normal logic and reasoning questions.

Round 2 - Technical 

(1 Question)

  • Q1. Question asked from the resume, AWS Glue, Redshift, S3

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good understanding of ETL using AWS

I applied via Naukri.com and was interviewed in Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions were according to the skills in the resume .spark,SQL,python and a bit of intro of Scala .

I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Most of the question related to my technical skills like SQL, Talend though am an average performer but very good interviewer

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't get nervous like me, Just a interview prepare well for technical and non technical it will be helpfull

DELTA Interview FAQs

How many rounds are there in DELTA Data Engineer interview?
DELTA interview process usually has 3 rounds. The most common rounds in the DELTA interview process are Technical and HR.
What are the top questions asked in DELTA Data Engineer interview?

Some of the top questions asked at the DELTA Data Engineer interview -

  1. how to achieve aws cross account shari...read more
  2. Difference between logical plan and physical plan in pyspa...read more
  3. write a python program to greoup annag...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more

Interview Questions from Similar Companies

ABEC Interview Questions
3.9
 • 8 Interviews
Ubs Forums Interview Questions
3.3
 • 4 Interviews
Adlabs Imagica Interview Questions
4.0
 • 3 Interviews
View all
DELTA Data Engineer Salary
based on 6 salaries
₹3.5 L/yr - ₹6.8 L/yr
56% less than the average Data Engineer Salary in India
View more details

DELTA Data Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.5

Skill development

5.0

Work-life balance

4.5

Salary

4.5

Job security

4.5

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
44 salaries
unlock blur

₹5.2 L/yr - ₹21 L/yr

Senior Software Engineer
39 salaries
unlock blur

₹13.5 L/yr - ₹43 L/yr

Software Developer
27 salaries
unlock blur

₹13 L/yr - ₹21.9 L/yr

Senior Developer
25 salaries
unlock blur

₹22 L/yr - ₹30.2 L/yr

Sdet Automation Test Engineer
18 salaries
unlock blur

₹27.4 L/yr - ₹31.2 L/yr

Explore more salaries
Compare DELTA with

ABEC

3.9
Compare

Timezone Entertainment

3.6
Compare

Adlabs Imagica

4.0
Compare

Informa Markets

3.6
Compare
write
Share an Interview