Upload Button Icon Add office photos

DELTA

Compare button icon Compare button icon Compare

Filter interviews by

DELTA Interview Questions and Answers

Updated 3 Jun 2025
Popular Designations

16 Interview questions

A Buyer Engineer was asked 2w ago
Q. How do you plan when you have less time?
Ans. 

I prioritize tasks, set clear goals, and use time management techniques to maximize productivity under tight deadlines.

  • Assess urgency: Identify which tasks are critical and need immediate attention, like finalizing a purchase order.

  • Break tasks down: Divide larger projects into smaller, manageable tasks to avoid feeling overwhelmed.

  • Set time limits: Allocate specific time blocks for each task to maintain focus and e...

View all Buyer Engineer interview questions
A Python Developer Trainee was asked 5mo ago
Q. Explain broadcasting in pandas.
Ans. 

Broadcasting in pandas allows operations on arrays of different shapes.

  • Broadcasting is a mechanism that allows operations on arrays of different shapes.

  • It extends smaller arrays to match the shape of larger arrays.

  • Example: Adding a scalar to a DataFrame will broadcast the scalar to all elements.

  • Example: Adding a Series to a DataFrame will broadcast the Series to match the DataFrame's shape.

View all Python Developer Trainee interview questions
A Python Developer Trainee was asked 5mo ago
Q. Explain multithreading.
Ans. 

Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for parallel processing.

  • Multithreading allows for better utilization of CPU resources by running multiple threads simultaneously.

  • Threads share the same memory space, making communication between them easier.

  • Examples of multithreading in Python include using the 'threading' module to run multiple functions concurrently.

View all Python Developer Trainee interview questions
A Security Engineer was asked 6mo ago
Q. What is the SAML flow?
Ans. 

SAML flow is a process for exchanging authentication and authorization data between identity providers and service providers.

  • SAML flow involves the exchange of XML-based security assertions.

  • It typically includes steps such as authentication request, response, and validation.

  • SAML flow can be initiated by a user trying to access a service that requires authentication.

  • It helps establish trust between different system...

View all Security Engineer interview questions
A Security Engineer was asked 6mo ago
Q. Explain the flows in OAuth.
Ans. 

OAUTH flows are different ways in which a client application can obtain authorization to access resources on behalf of a user.

  • Authorization Code Flow: Client exchanges an authorization code for an access token.

  • Implicit Flow: Client receives access token directly.

  • Client Credentials Flow: Client uses its own credentials to authenticate and receive access token.

  • Resource Owner Password Credentials Flow: Client collect...

View all Security Engineer interview questions
A Data Engineer was asked 11mo ago
Q. What is the difference between a logical plan and a 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 t...

View all Data Engineer interview questions
A Data Engineer was asked 11mo ago
Q. Write a Python program to group anagrams.
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

View all Data Engineer interview questions
Are these interview questions helpful?
A Data Engineer was asked 11mo ago
Q. How can you 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 a...

View all Data Engineer interview questions
A Data Engineer was asked 11mo ago
Q. Explain the 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 ...

View all Data Engineer interview questions
A Devops Engineer was asked
Q. How do you deploy a 3-tier application?
Ans. 

Deploying a 3 tier application involves setting up separate layers for presentation, application logic, and data storage.

  • Set up the presentation layer on a web server, such as Apache or Nginx.

  • Deploy the application logic layer on application servers, like Tomcat or JBoss.

  • Utilize a database server, such as MySQL or PostgreSQL, for the data storage layer.

  • Ensure proper communication and connectivity between the layer...

View all Devops Engineer interview questions

DELTA Interview Experiences

23 interviews found

Security Engineer Interview Questions & Answers

user image Kalluri Digital

posted on 20 Dec 2024

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

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is SAML flow?
  • Ans. 

    SAML flow is a process for exchanging authentication and authorization data between identity providers and service providers.

    • SAML flow involves the exchange of XML-based security assertions.

    • It typically includes steps such as authentication request, response, and validation.

    • SAML flow can be initiated by a user trying to access a service that requires authentication.

    • It helps establish trust between different systems by ...

  • Answered by AI
  • Q2. Explain more about pinfedarte?
  • Ans. 

    Pinfedarte is a security mechanism used in computer systems to prevent unauthorized access.

    • Pinfedarte is a form of access control that restricts users from accessing certain resources or performing specific actions.

    • It typically involves the use of passwords, encryption, biometrics, or other authentication methods.

    • Pinfedarte helps protect sensitive information and prevent security breaches.

    • Examples of pinfedarte include...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain flows in OAUTH?
  • Ans. 

    OAUTH flows are different ways in which a client application can obtain authorization to access resources on behalf of a user.

    • Authorization Code Flow: Client exchanges an authorization code for an access token.

    • Implicit Flow: Client receives access token directly.

    • Client Credentials Flow: Client uses its own credentials to authenticate and receive access token.

    • Resource Owner Password Credentials Flow: Client collects use...

  • Answered by AI
  • Q2. Do you know Dynatrace, sumologic tools?
  • Ans. 

    Yes, I am familiar with Dynatrace and Sumo Logic tools.

    • I have experience using Dynatrace for application performance monitoring and management.

    • I have used Sumo Logic for log management and analytics.

    • I am proficient in setting up alerts, dashboards, and troubleshooting issues using these tools.

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

(2 Questions)

  • Q1. Explain broadcasting in pandas
  • Ans. 

    Broadcasting in pandas allows operations on arrays of different shapes.

    • Broadcasting is a mechanism that allows operations on arrays of different shapes.

    • It extends smaller arrays to match the shape of larger arrays.

    • Example: Adding a scalar to a DataFrame will broadcast the scalar to all elements.

    • Example: Adding a Series to a DataFrame will broadcast the Series to match the DataFrame's shape.

  • Answered by AI
  • Q2. Explain multithreading
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for parallel processing.

    • Multithreading allows for better utilization of CPU resources by running multiple threads simultaneously.

    • Threads share the same memory space, making communication between them easier.

    • Examples of multithreading in Python include using the 'threading' module to run multiple functions concurrently.

  • Answered by AI
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 Questions & Answers

user image Anonymous

posted on 25 May 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Hello sir my name is Govinda Kumar From up
  • Q2. And education Diploma EE
  • Q3. Quality engineering
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Online test of 45mins

Round 3 - Technical 

(2 Questions)

  • Q1. 2 people took technical interview
  • Q2. Normal sdet questions
Round 4 - Behavioral 

(1 Question)

  • Q1. Normal problem solving questions
Round 5 - HR 

(1 Question)

  • Q1. Cultural fitness from hr director
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Oct 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me yourself
  • Q2. How to Diploy 3 tier Application
  • Ans. 

    Deploying a 3 tier application involves setting up separate layers for presentation, application logic, and data storage.

    • Set up the presentation layer on a web server, such as Apache or Nginx.

    • Deploy the application logic layer on application servers, like Tomcat or JBoss.

    • Utilize a database server, such as MySQL or PostgreSQL, for the data storage layer.

    • Ensure proper communication and connectivity between the layers.

    • Use...

  • Answered by AI

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

Supervisor Interview Questions & Answers

user image Anonymous

posted on 4 Jan 2025

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

I applied via Referral and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Just basic aptitude based mcq questions

Round 2 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Why should I hire you
  • Ans. 

    I have a strong background in customer service and problem-solving skills, which will allow me to effectively support sellers and contribute to the team's success.

    • I have X years of experience in customer service, where I successfully resolved customer issues and provided excellent support.

    • I am highly organized and detail-oriented, ensuring that all seller inquiries are handled efficiently and accurately.

    • I have a proven...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics concepts

Technician Interview Questions & Answers

user image Sintu Kumar Singh

posted on 31 Mar 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Ro, Chiller, STP, WTP, cctv door access
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Fair and was interviewed in Sep 2023. 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 - Coding Test 

MCQs on Java, Java Script, Html, AWS, REST APIs. One Coding question covering recrurssion and backtracking

Round 3 - Technical 

(1 Question)

  • Q1. I have not yet attended.

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about DELTA?
Ask anonymously on communities.

DELTA Interview FAQs

How many rounds are there in DELTA interview?
DELTA interview process usually has 2-3 rounds. The most common rounds in the DELTA interview process are Resume Shortlist, Technical and HR.
How to prepare for DELTA 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 DELTA. The most common topics and skills that interviewers at DELTA expect are Communication Skills, Customer Service, Guest Relations, Recruitment and Business Development.
What are the top questions asked in DELTA interview?

Some of the top questions asked at the DELTA interview -

  1. how to achieve aws cross account shari...read more
  2. Difference between logical plan and physical plan in pyspa...read more
  3. What is ACL,what is routing,tell something about switching and osi lay...read more
How long is the DELTA interview process?

The duration of DELTA interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 23 interview experiences

Difficulty level

Easy 6%
Moderate 88%
Hard 6%

Duration

Less than 2 weeks 65%
2-4 weeks 24%
4-6 weeks 6%
6-8 weeks 6%
View more

Interview Questions from Similar Companies

ABEC Interview Questions
4.0
 • 9 Interviews
Ubs Forums Interview Questions
3.3
 • 4 Interviews
Adlabs Imagica Interview Questions
4.0
 • 3 Interviews
View all

DELTA Reviews and Ratings

based on 115 reviews

4.2/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

3.9

Salary

4.0

Job security

3.9

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 115 Reviews and Ratings
Software Engineer
42 salaries
unlock blur

₹7.4 L/yr - ₹15 L/yr

Senior Software Engineer
39 salaries
unlock blur

₹27.4 L/yr - ₹43 L/yr

Software Developer
28 salaries
unlock blur

₹11.1 L/yr - ₹19.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

4.0
Compare

Timezone Entertainment

3.5
Compare

Adlabs Imagica

4.0
Compare

Informa Markets

3.5
Compare
write
Share an Interview