Upload Button Icon Add office photos

Filter interviews by

Clear (1)

IPG Mediabrands Data Engineer Interview Questions and Answers

Updated 8 Dec 2024

IPG Mediabrands Data Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. About myself & my work experience
Round 2 - Technical 

(1 Question)

  • Q1. SQL & Python related Qs

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2022. There were 4 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 Resume tips
Round 2 - Aptitude Test 

Mathematics, English and Reasoning..

Round 3 - Technical 

(2 Questions)

  • Q1. What is python? What is uses of python?
  • Ans. 

    Python is a high-level, interpreted programming language used for web development, data analysis, artificial intelligence, and more.

    • Python is easy to learn and has a simple syntax.

    • It is used for web development with frameworks like Django and Flask.

    • Python is popular for data analysis and visualization with libraries like Pandas and Matplotlib.

    • It is used for artificial intelligence and machine learning with libraries li...

  • Answered by AI
  • Q2. Some coding based questions of python.
Round 4 - HR 

(3 Questions)

  • Q1. Salary and work discussionion
  • Q2. Short and long term goals.
  • Q3. Work Role, post and company work.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be careful during interview and hear all the instruction carefully.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between union and union all in SQL?
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

    • Union combines result sets and removes duplicates

    • Union All combines result sets without removing duplicates

    • Union is slower than Union All as it involves removing duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • Answered by AI
  • Q2. How to show top 5 in pandas?
  • Ans. 

    To show top 5 in pandas, use the nlargest() function.

    • Use the nlargest() function with the 'n' parameter set to 5 to get the top 5 values in a pandas DataFrame.

    • For example: df['column_name'].nlargest(5) will return the top 5 values in the specified column.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. If we have 3 numerical columns, which chart is a better representation these column?
  • Ans. 

    A scatter plot is a better representation for 3 numerical columns.

    • Use a scatter plot to show the relationship between the numerical columns.

    • Scatter plots are effective for visualizing correlations and patterns in data.

    • Each point on the plot represents a data point with values from all 3 columns.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Omnicom Media Group Data Analyst interview:
  • SQL Server
  • Pandas
  • Power Bi

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Talk about yourself
  • Q2. What is your professional experience
Round 2 - Aptitude Test 

Simple SQL questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest if you don't know!
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2022. 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 Resume tips
Round 2 - Case Study 

They gave me case study in interview based on that I had provide the solution.

Round 3 - Technical 

(1 Question)

  • Q1. They asked question regarding SQL, statistics and some project related questions

I applied via Campus Placement and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about Projects done during course

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with core concepts and portfolio of your work to showcase your skill
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Dot net related stuffs
  • Q2. Dependency injection
Round 2 - Coding Test 

Built an app using dot net and angular

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

(1 Question)

  • Q1. SQL and tableau
Round 2 - Coding Test 

Online test on sql join sub query

Round 3 - One-on-one 

(1 Question)

  • Q1. Final tech round

Interview Preparation Tips

Interview preparation tips for other job seekers - Good over all
Round 1 - Technical 

(5 Questions)

  • Q1. Spark Context vs Spark Session
  • Ans. 

    Spark Context is the entry point to any Spark functionality while Spark Session is a unified entry point for Spark 2.0+.

    • Spark Context is the old entry point to Spark functionality.

    • Spark Session is a unified entry point for Spark 2.0+.

    • Spark Context is used to create RDDs, accumulators and broadcast variables.

    • Spark Session is used to create DataFrames, execute SQL queries and read data from external sources.

  • Answered by AI
  • Q2. Repartitioning vs Coalesce
  • Ans. 

    Repartitioning increases partitions while Coalesce reduces partitions.

    • Repartitioning shuffles data across the cluster and can be used to increase parallelism.

    • Coalesce merges partitions without shuffling data and can be used to reduce overhead.

    • Repartitioning is expensive and should be used sparingly.

    • Coalesce is faster but may not be as effective as repartitioning in increasing parallelism.

    • Both can be used to optimize da

  • Answered by AI
  • Q3. Sql query to find Second Highest Salary
  • Ans. 

    Sql query to find Second Highest Salary

    • Use ORDER BY and LIMIT to select the second highest salary

    • Use subquery to select the maximum salary and exclude it from the result set

    • Handle cases where there are ties for the highest salary

  • Answered by AI
  • Q4. Internal Working of Spark
  • Ans. 

    Spark is a distributed computing engine that processes large datasets in parallel across a cluster of computers.

    • Spark uses a master-slave architecture with a driver program that coordinates tasks across worker nodes.

    • Data is stored in Resilient Distributed Datasets (RDDs) that can be cached in memory for faster processing.

    • Spark supports multiple programming languages including Java, Scala, and Python.

    • Spark can be used f...

  • Answered by AI
  • Q5. What is Braodcast Join
  • Ans. 

    Broadcast Join is a technique used in distributed computing to optimize join operations.

    • Broadcast Join is used when one table is small enough to fit in memory of all nodes in a cluster.

    • The smaller table is broadcasted to all nodes in the cluster, reducing network traffic.

    • Broadcast Join is faster than other join techniques when used appropriately.

    • Example: Joining a small reference table with a large fact table in a data

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Prepaired with Big data concepts

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basic concepts of core java
  • Q2. DSA , collections , map, set, list
Round 2 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Roles and responsibilities
Contribute & help others!
anonymous
You can choose to be anonymous

IPG Mediabrands Interview FAQs

How many rounds are there in IPG Mediabrands Data Engineer interview?
IPG Mediabrands interview process usually has 2 rounds. The most common rounds in the IPG Mediabrands interview process are HR and Technical.
How to prepare for IPG Mediabrands 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 IPG Mediabrands. The most common topics and skills that interviewers at IPG Mediabrands expect are AWS, Analysis, NoSQL, Python and SCALA.

Recently Viewed

REVIEWS

Maruti Suzuki

No Reviews

SALARIES

Suprajit Engineering

COMPANY BENEFITS

Shapoorji Pallonji Infrastructure Capital

No Benefits

SALARIES

Shapoorji Pallonji Infrastructure Capital

No Salaries

INTERVIEWS

IPG Mediabrands

5.6k top interview questions

REVIEWS

Shapoorji Pallonji Infrastructure Capital

No Reviews

SALARIES

Escorts Kubota Limited

SALARIES

Endurance Technologies

SALARIES

Affinity Global Advertising

JOBS

Shapoorji Pallonji Infrastructure Capital

No Jobs

Tell us how to improve this page.

IPG Mediabrands Data Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

3 Minds Digital Interview Questions
4.4
 • 65 Interviews
Publicis Interview Questions
3.7
 • 52 Interviews
Groupm Media Interview Questions
3.9
 • 35 Interviews
Moris Media Interview Questions
4.3
 • 24 Interviews
Cheil India Interview Questions
3.1
 • 17 Interviews
WPP Interview Questions
3.0
 • 12 Interviews
Z1 Tech Interview Questions
4.0
 • 11 Interviews
Bikayi Interview Questions
2.9
 • 10 Interviews
View all
IPG Mediabrands Data Engineer Salary
based on 4 salaries
₹9 L/yr - ₹10 L/yr
9% less than the average Data Engineer Salary in India
View more details
Senior Executive
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare IPG Mediabrands with

Groupm Media

3.9
Compare

Dentsu Aegis Network

3.4
Compare

Madison World

3.8
Compare

Havas Media

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