Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by EY Global Delivery Services ( EY GDS) Team. If you also belong to the team, you can get access from here

EY Global Delivery Services ( EY GDS) Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

EY Global Delivery Services ( EY GDS) Senior Data Engineer Interview Questions and Answers

Updated 19 Feb 2024

EY Global Delivery Services ( EY GDS) Senior Data Engineer Interview Experiences

3 interviews found

Senior Data Engineer Interview Questions & Answers

user image Radhika Kupireddy

posted on 19 Feb 2024

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

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Select the country from address filed seperated by comma. but the location of country in every address field might be different
  • Ans. 

    Use string manipulation to extract country from address field separated by comma.

    • Split the address field by comma to get individual components

    • Check each component for country name using a list of countries or regular expressions

    • Return the country name once found

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Ques1: Data management?
  • Q2. Ques2: Design end2end architecture
  • Ans. 

    Designing an end-to-end architecture involves creating a framework that connects all components of a system.

    • Identify the requirements and goals of the system

    • Choose appropriate technologies and tools

    • Design data flow and storage mechanisms

    • Create a scalable and fault-tolerant system

    • Ensure security and privacy of data

    • Test and validate the system

    • Implement monitoring and logging mechanisms

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Project related ques. Scenario based ques,
  • Q2. Q2: Data governance and linage

Skills evaluated in this interview

Senior Data Engineer Interview Questions Asked at Other Companies

asked in 7 Eleven
Q1. Write a query to get the customer with the highest total order va ... read more
asked in 7 Eleven
Q2. There are 10 million records in the table and the schema does not ... read more
asked in 7 Eleven
Q3. How do you handle data pipeline when the schema information keeps ... read more
asked in 7 Eleven
Q4. Difference between Parquet and ORC file. Why industry uses parque ... read more
asked in 7 Eleven
Q5. What is Normalisation and Denormalisation? When do we use them? G ... read more

I applied via Naukri.com and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Python list, oops concept
  • Q2. Sql cte and window function

Interview Preparation Tips

Interview preparation tips for other job seekers - go throgh cloud , python and sql concept and practice some use case

Interview questions from similar companies

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

(3 Questions)

  • Q1. What is index and types of index
  • Ans. 

    An index is a data structure that improves the speed of data retrieval operations in a database.

    • Types of indexes include clustered index, non-clustered index, unique index, and composite index.

    • Indexes can be created on one or multiple columns in a table.

    • Indexes help in quickly locating data without having to scan the entire table.

    • Examples of indexes are primary key indexes, foreign key indexes, and secondary indexes.

  • Answered by AI
  • Q2. What is SCD and its type
  • Ans. 

    SCD stands for Slowly Changing Dimension, which is a concept used in data warehousing to track changes in data over time.

    • SCD Type 1: Overwrites old data with new data, losing historical information.

    • SCD Type 2: Keeps multiple versions of the same record, each with a different timestamp.

    • SCD Type 3: Maintains separate columns for current and previous values, limiting historical data tracking.

    • SCD Type 4: Uses separate hist...

  • Answered by AI
  • Q3. Tell me the process of data pipeline
  • Ans. 

    Data pipeline is a series of processes that collect, transform, and load data from various sources to a destination for analysis.

    • Data ingestion: Collecting data from various sources like databases, APIs, logs, etc.

    • Data processing: Cleaning, transforming, and enriching the data to make it usable for analysis.

    • Data storage: Storing the processed data in a data warehouse, data lake, or other storage solutions.

    • Data analysis...

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

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain P2p PROCESS
  • Q2. Identify fraud risks

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Group Discussion 

Had group discussion with 3 people for 1 hour

Round 2 - Group Discussion 

Had group discussion with 3 people for 1 hour

Round 3 - One-on-one 

(2 Questions)

  • Q1. Had one-to-one with client
  • Q2. Plugins, JavaScript, Power automate, SSRS, Customizations, Configurations, Integrations, Azure functions, scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - I had interviewed and being selected in all three rounds. Even I was asked for documents by recruiter for offer letter process. She told everything about salary structure then she didn't responded for 2 weeks. I tried reaching her but nothing. One day she told that your profile is on hold as we are able to fill up the position internally. I am not sure how can anyone say this, how can someone able to fulfil position in just one week, how come job portals still taking applications for same position.

Its terrible and advise to everyone don't kill your time as they are not going to offer and match your expectations.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. What is event loop architecture of node-js
  • Ans. 

    Node.js event loop architecture is a single-threaded, non-blocking, asynchronous I/O model.

    • Node.js uses an event-driven architecture to handle I/O operations.

    • The event loop is a single thread that listens for events and executes callbacks.

    • Callbacks are queued in the event loop and executed in a non-blocking manner.

    • Node.js uses libuv library to handle the event loop.

    • The event loop allows Node.js to handle a large number

  • Answered by AI
  • Q2. What is closures , what is hoisting
  • Ans. 

    Closures are functions that have access to variables in their outer scope. Hoisting is the behavior of moving declarations to the top of the scope.

    • Closures allow for encapsulation and private variables in JavaScript.

    • Hoisting can lead to unexpected behavior when variables are declared after they are used.

    • Example of closure: function outer() { let x = 10; function inner() { console.log(x); } return inner; }

    • Example of hoi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go with confidence and you should be able to clear it

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(2 Questions)

  • Q1. My self and other experience ? Passing marks ?
  • Q2. Why you work on this field

Interview Preparation Tips

Interview preparation tips for other job seekers - No i don't want to share my experience and nothing plzz consider

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Only one round with us people

Interview Preparation Tips

Interview preparation tips for other job seekers - keep understanding the question and responding the answer with correcly.

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident.

EY Global Delivery Services ( EY GDS) Interview FAQs

How many rounds are there in EY Global Delivery Services ( EY GDS) Senior Data Engineer interview?
EY Global Delivery Services ( EY GDS) interview process usually has 1-2 rounds. The most common rounds in the EY Global Delivery Services ( EY GDS) interview process are Technical and Resume Shortlist.
What are the top questions asked in EY Global Delivery Services ( EY GDS) Senior Data Engineer interview?

Some of the top questions asked at the EY Global Delivery Services ( EY GDS) Senior Data Engineer interview -

  1. select the country from address filed seperated by comma. but the location of c...read more
  2. Ques2: Design end2end architect...read more
  3. Project related ques. Scenario based qu...read more

Tell us how to improve this page.

EY Global Delivery Services ( EY GDS) Senior Data Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
EY Global Delivery Services ( EY GDS) Senior Data Engineer Salary
based on 53 salaries
₹8.5 L/yr - ₹35 L/yr
At par with the average Senior Data Engineer Salary in India
View more details

EY Global Delivery Services ( EY GDS) Senior Data Engineer Reviews and Ratings

based on 3 reviews

4.3/5

Rating in categories

5.0

Skill development

3.7

Work-life balance

3.6

Salary

4.6

Job security

4.6

Company culture

2.9

Promotions

4.4

Work satisfaction

Explore 3 Reviews and Ratings
Senior Consultant
3k salaries
unlock blur

₹8 L/yr - ₹31 L/yr

Assistant Manager
2.1k salaries
unlock blur

₹9.6 L/yr - ₹31.6 L/yr

Manager
1.7k salaries
unlock blur

₹14 L/yr - ₹55 L/yr

Consultant
1.4k salaries
unlock blur

₹4.5 L/yr - ₹18 L/yr

Senior Associate
1.4k salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Explore more salaries
Compare EY Global Delivery Services ( EY GDS) with

Ernst & Young

3.4
Compare

TCS

3.7
Compare

Accenture

3.8
Compare

Deloitte

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview