Upload Button Icon Add office photos

Kantar

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Kantar Data Analyst Interview Questions and Answers

Updated 2 Oct 2024

Kantar Data Analyst Interview Experiences

1 interview found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 2 Oct 2024

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

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

Round 1 - Aptitude Test 

A train running at the speed of 60 km/hr crosses a pole of 9 seconds. what is hte length of train?

Round 2 - Coding Test 

Print all prime numbers

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about you
  • Q2. Basically every question asked is related to you given project
Round 2 - Case Study 

I waa given telecom market in indua

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

I applied via Naukri.com and was interviewed before Feb 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 

Basic aptitude questions of quant and reasoning and general english

Round 3 - Case Study 

Case study of varies products asked around 15-20 which were easy to attempt

Round 4 - HR 

(2 Questions)

  • Q1. About yourself, practical knowledge, family, data related,etc.
  • Q2. What is sql. Excel formulas
  • Ans. 

    SQL is a programming language used for managing and manipulating relational databases. Excel formulas are used for performing calculations and data analysis in Microsoft Excel.

    • SQL is used to retrieve, insert, update, and delete data from databases.

    • Excel formulas are written using functions and operators to perform calculations and manipulate data.

    • SQL example: SELECT * FROM customers WHERE age > 30;

    • Excel formula example...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process is pretty simple and quick. Basics of data and research knowledge is must.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jun 2022. There were 3 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 Resume tips
Round 2 - Aptitude Test 

Normal aptitude questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Interview with manager

Interview Preparation Tips

Interview preparation tips for other job seekers - You can start your career(only if u don't have any other options) but don't stay here for more than a year
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

There will be MCQ Questions. They will ask you to use internet and answer the questions.
They want to check your research skills.

Round 2 - One-on-one 

(1 Question)

  • Q1. If you are a fresher then you can easily clear the interview, Hr will ask normal questions about yourself and about your education background.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be fluent and answer, you will be able to clear the interview for sure.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test of 30 min is conducted

Analyst Interview Questions & Answers

Ipsos user image Anonymous

posted on 21 Feb 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. State linear regression assumptions.
  • Ans. 

    Linear regression assumptions include linearity, independence, homoscedasticity, and normality.

    • Linearity: The relationship between the independent and dependent variables is linear.

    • Independence: The residuals are independent of each other.

    • Homoscedasticity: The variance of the residuals is constant across all levels of the independent variables.

    • Normality: The residuals are normally distributed.

    • Example: If we are predict...

  • Answered by AI
  • Q2. What is multicollinearity? How to tackle this condition?
  • Ans. 

    Multicollinearity is a phenomenon in which two or more predictor variables in a regression model are highly correlated.

    • Multicollinearity can lead to unstable estimates of the coefficients and make it difficult to determine the effect of each predictor variable on the outcome.

    • One way to tackle multicollinearity is to identify the highly correlated variables and consider removing one of them from the model.

    • Another approa...

  • Answered by AI
  • Q3. What are the components of time series analysis?
  • Ans. 

    Time series analysis components include trend, seasonality, cyclicality, and irregularity.

    • Trend: Long-term movement or direction of the data.

    • Seasonality: Regular patterns that occur at specific intervals.

    • Cyclicality: Repeating patterns that are not necessarily at fixed intervals.

    • Irregularity: Random fluctuations or noise in the data.

    • Examples: Trend in stock prices, seasonality in retail sales, cyclicality in economic c

  • Answered by AI
  • Q4. What are the preventive measures if regression assumptions are not met?
  • Ans. 

    Preventive measures for regression assumptions not met

    • Check for multicollinearity among independent variables

    • Transform variables if they are not normally distributed

    • Consider using non-parametric regression methods

    • Use robust regression techniques to handle outliers

    • Collect more data to improve model performance

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. How to tackle with missing values ?
  • Ans. 

    Handling missing values is crucial in data analysis. Various techniques like imputation, deletion, or prediction can be used.

    • Use imputation techniques like mean, median, mode to fill in missing values.

    • Consider using predictive modeling to estimate missing values based on other variables.

    • Delete rows or columns with a high percentage of missing values if they cannot be accurately imputed.

    • Use advanced techniques like K-ne...

  • Answered by AI
  • Q2. What is the difference between tuple and list ?
  • Ans. 

    Tuple is immutable and fixed in size, while list is mutable and can change in size.

    • Tuple is created using parentheses, while list is created using square brackets.

    • Tuple elements can be of different data types, while list elements are usually of the same data type.

    • Tuple is faster than list for iteration and accessing elements.

    • Example: tuple = (1, 'a', True), list = [1, 2, 3]

  • Answered by AI
  • Q3. How to detect outlier ?
  • Ans. 

    Outliers can be detected using statistical methods like Z-score, IQR, or visualization techniques like box plots.

    • Calculate Z-score for each data point and identify points with Z-score greater than a certain threshold (usually 3 or -3).

    • Use Interquartile Range (IQR) to identify outliers by determining data points that fall below Q1 - 1.5 * IQR or above Q3 + 1.5 * IQR.

    • Visualize the data using box plots and identify points...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay positive and give fast answers.

Skills evaluated in this interview

Analyst Interview Questions & Answers

Ipsos user image Anonymous

posted on 15 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2023. 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 - Technical 

(1 Question)

  • Q1. Details about Statistics knowledge
Round 3 - One-on-one 

(1 Question)

  • Q1. Asked about previous job experience
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and reasons for leaving previous company

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics clear

Analyst Interview Questions & Answers

Ipsos user image Anonymous

posted on 11 Apr 2022

I applied via Naukri.com and was interviewed in Mar 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Simple and easy interview. Good interview experience
  • Q2. All about resume and your skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Just honest confident about your skills

Analyst Interview Questions & Answers

C5i user image Anonymous

posted on 9 Feb 2024

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

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple questions on aptitude, maths and English

Round 2 - Technical 

(1 Question)

  • Q1. Introduction, projects, certifications

Interview Preparation Tips

Topics to prepare for C5i Analyst interview:
  • Python
  • SQL
  • Power Bi
  • Power query
  • Excel
Interview preparation tips for other job seekers - Keep your basics strong. Know what's on your CV and prepare answers accordingly
Strong introduction
Contribute & help others!
anonymous
You can choose to be anonymous

Kantar Interview FAQs

How many rounds are there in Kantar Data Analyst interview?
Kantar interview process usually has 2 rounds. The most common rounds in the Kantar interview process are Aptitude Test and Coding Test.

Recently Viewed

SALARIES

Kantar

JOBS

Quest Global

No Jobs

INTERVIEWS

Tata Elxsi

No Interviews

REVIEWS

Ipsos

No Reviews

JOBS

Einfochips

No Jobs

JOBS

Tata Elxsi

No Jobs

INTERVIEWS

Flex

No Interviews

JOBS

Wadhwani AI

No Jobs

INTERVIEWS

Flex

No Interviews

INTERVIEWS

Flex

No Interviews

Tell us how to improve this page.

Kantar Data Analyst Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Data Analyst Interview Questions from Similar Companies

View all
Kantar Data Analyst Salary
based on 128 salaries
₹2.8 L/yr - ₹9.2 L/yr
14% less than the average Data Analyst Salary in India
View more details

Kantar Data Analyst Reviews and Ratings

based on 9 reviews

3.2/5

Rating in categories

2.9

Skill development

3.7

Work-life balance

2.9

Salary

3.6

Job security

3.2

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 9 Reviews and Ratings
Research Manager
413 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Research Manager
371 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
275 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Research Manager
226 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accounts Manager
157 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Kantar with

Nielsen Holdings

3.7
Compare

GfK MODE

3.3
Compare

Ipsos

3.3
Compare

Market Xcel Data Matrix

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