Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Lead Data Engineer Interview Questions and Answers

Updated 22 May 2025

Accenture Lead Data Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Given a DataFrame df with columns 'A', 'B','C' how would you group the data by the values in column 'A' and calculate the mean of column 'B' for each group, while also summing the values in column 'C' ?
  • Ans. 

    Group data by column 'A', calculate mean of column 'B' and sum values in column 'C' for each group.

    • Use groupby() function in pandas to group data by column 'A'

    • Apply mean() function on column 'B' and sum() function on column 'C' for each group

    • Example: df.groupby('A').agg({'B':'mean', 'C':'sum'})

  • Answered by AI
  • Q2. Explain the difference deepcopy() and copy() methods in Python's copy module. Provide a scenario where you would use deepcopy() over copy().
  • Q3. Discuss the concept of Python decorators and provide an example of how you would use decorators to measure the execution time of a function.
  • Ans. 

    Python decorators are functions that modify the behavior of other functions. They are commonly used for adding functionality to existing functions without modifying their code.

    • Decorators are defined using the @ symbol followed by the decorator function name.

    • They can be used to measure the execution time of a function by wrapping the function with a timer decorator.

    • Example: def timer(func): def wrapper(*args, **kwargs...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I would like you to approach the interview with enthusiasm, demonstrating passion and eagerness in your interview aligns with their mission of driving innovation and positive change.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

  • Q1. Real time scenario
  • Q2. Cloud technology

Lead Data Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Given a DataFrame df with columns 'A', 'B','C' how would you grou ... read more
Q2. Given a string containing alphanumeric characters, how would you ... read more
asked in Wipro
Q3. Write an SQL query to find the users who made purchases in 3 cons ... read more
asked in Wipro
Q4. How would you build an ETL pipeline to read JSON files that are i ... read more
asked in Accenture
Q5. Discuss the concept of Python decorators and provide an example o ... read more

Interview questions from similar companies

I applied via Campus Placement and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell us about yourself. What are some of your achievments
  • Ans. 

    I'm a passionate Software Engineer with a strong background in developing scalable applications and a knack for problem-solving.

    • Developed a web application that improved user engagement by 30% through enhanced UI/UX design.

    • Led a team of 5 engineers in migrating a legacy system to a microservices architecture, reducing downtime by 40%.

    • Contributed to open-source projects, including a popular library that has over 1,000 s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Look for good communciation skills. Have a cheerful attitude

I applied via Campus Placement and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is a bit
  • Ans. 

    A bit is the smallest unit of data in computing, representing a binary value of 0 or 1.

    • A bit can represent two states: off (0) or on (1).

    • Bits are the building blocks of all digital data, including text, images, and sound.

    • In binary code, a sequence of bits can represent numbers, letters, and commands.

    • For example, the letter 'A' is represented as 01000001 in binary, which is 65 in decimal.

  • Answered by AI
  • Q2. What us the size of a bit
  • Ans. 

    A bit is the smallest unit of digital information. It can have a value of either 0 or 1.

    • A bit is a binary digit, represented as either 0 or 1.

    • It is the basic unit of information used in computing and digital communications.

    • A group of 8 bits is called a byte.

    • The size of a bit is dependent on the architecture of the computer system.

  • Answered by AI
  • Q3. How many bits are there in C
  • Ans. 

    C is a programming language and does not have a fixed number of bits.

    • C is a high-level programming language that can be compiled to run on different architectures with varying bit sizes.

    • The number of bits in C depends on the hardware architecture it is compiled for.

    • For example, C code compiled for a 32-bit architecture will have 32-bit integers, while code compiled for a 64-bit architecture will have 64-bit integers.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and patient. Dont hesitate to give answers.

Skills evaluated in this interview

What people are saying about Accenture

View All
a cyber security analyst
5d
Disappointed with the Candidate Experience at Accenture
I recently interviewed at Accenture for a Security Architect role. I cleared two rounds of technical interviews and was later told by the HR (verbally) that I was selected and that my offer letter would be released soon. Based on that confirmation, I submitted all required documents and waited patiently for nearly a month. Despite following up multiple times, there was no proper communication or update. My application status remained “Active” on the portal the entire time. Eventually, I received a rejection email with no explanation, feedback, or context, despite being verbally told that I was selected. it’s disappointing when a candidate is given verbal assurance and kept waiting without clarity. I expected more transparent from a company of Accenture’s reputation. If anyone from Accenture here could help me understand what might have happened or possibly refer me for any similar openings in the Security Architect / Data Encryption/ key management, I’d be genuinely grateful.
Got a question about Accenture?
Ask anonymously on communities.

I applied via Campus Placement and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All technical discussion not much deeper but basic questions of graduation were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't hesitate 🙂

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

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

Accenture HR Interview Questions

1.3k questions and answers

Q. Can you explain your past experiences and how you can contribute to the org ... read more
Q. Which company conducted your interview?
Q. Where do you envision yourself in the next three years?

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is collections
  • Q2. What are the new features in java 8
  • Q3. What is the use of spring boot
  • Q4. What is JPA
  • Ans. 

    JPA stands for Java Persistence API, a specification for object-relational mapping in Java applications.

    • JPA is used to map Java objects to relational database tables.

    • It provides a set of annotations to define the mapping between Java classes and database tables.

    • JPA also supports querying data using the Java Persistence Query Language (JPQL).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It will be easy interview

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Referral and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job security but do not expect projects with latest technologies or development side.

If you are lucky you will get project with new technologies and you can learn.

Interview Questionnaire 

1 Question

  • Q1. About DBMS and c++

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is web api, Get, put post, delete, Asp. Net Oops
  • Ans. 

    Web API is a framework for building HTTP services that can be accessed by various clients.

    • GET, PUT, POST, and DELETE are HTTP methods used to interact with Web APIs.

    • ASP.NET is a popular framework for building Web APIs.

    • Object-Oriented Programming (OOP) concepts are used in building Web APIs.

    • Examples of Web APIs include Twitter API, Google Maps API, and Facebook Graph API.

  • Answered by AI
Round 2 - Aptitude Test 

It was good communication test English grammer and email writing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic level of questions like web api basic questions, Asp. Net basic questions, oops concepts

Skills evaluated in this interview

Accenture Interview FAQs

How many rounds are there in Accenture Lead Data Engineer interview?
Accenture interview process usually has 1 rounds. The most common rounds in the Accenture interview process are Technical.
What are the top questions asked in Accenture Lead Data Engineer interview?

Some of the top questions asked at the Accenture Lead Data Engineer interview -

  1. Given a DataFrame df with columns 'A', 'B','C' how would you group the data by ...read more
  2. Discuss the concept of Python decorators and provide an example of how you woul...read more
  3. Explain the difference deepcopy() and copy() methods in Python's copy module. P...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 5 interview experiences

Difficulty level

Easy 100%

Duration

4-6 weeks 100%
View more

Interview Questions from Similar Companies

TCS Lead Data Engineer Interview Questions
3.5
 • 11.2k Interviews
Infosys Lead Data Engineer Interview Questions
3.6
 • 8k Interviews
Wipro Lead Data Engineer Interview Questions
3.7
 • 6.2k Interviews
Cognizant Lead Data Engineer Interview Questions
3.7
 • 6k Interviews
Capgemini Lead Data Engineer Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Lead Data Engineer Interview Questions
3.5
 • 4.2k Interviews
HCLTech Lead Data Engineer Interview Questions
3.5
 • 4.2k Interviews
Genpact Lead Data Engineer Interview Questions
3.7
 • 3.5k Interviews
IBM Lead Data Engineer Interview Questions
3.9
 • 2.5k Interviews
View all
Accenture Lead Data Engineer Salary
based on 90 salaries
₹20 L/yr - ₹30 L/yr
21% less than the average Lead Data Engineer Salary in India
View more details

Accenture Lead Data Engineer Reviews and Ratings

based on 8 reviews

2.9/5

Rating in categories

3.1

Skill development

2.9

Work-life balance

2.8

Salary

2.8

Job security

2.9

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 8 Reviews and Ratings
Application Development Analyst
39.4k salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Application Development - Senior Analyst
27.7k salaries
unlock blur

₹8.2 L/yr - ₹16.1 L/yr

Team Lead
27.1k salaries
unlock blur

₹12.7 L/yr - ₹22.5 L/yr

Senior Analyst
20.2k salaries
unlock blur

₹9.1 L/yr - ₹15.7 L/yr

Senior Software Engineer
18.6k salaries
unlock blur

₹10.5 L/yr - ₹18.3 L/yr

Explore more salaries
Compare Accenture with

TCS

3.5
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Infosys

3.6
Compare
write
Share an Interview