InterviewSkill

Data Analysis Interview Questions

Analytical thinking, metrics, cleaning, and interpretation questions for data roles.

5 questions
Data Analysis

What is exploratory data analysis?medium

Type
conceptual
Topic
exploratory-data-analysis
Frequency
common
Tags
exploratory, data, analysis
Answer

EDA is the process of understanding data before modeling or reporting.

Explanation

It includes checking schema, distributions, missing values, outliers, relationships, and surprising patterns to guide next steps.

Follow-upWhat would you check first in a new dataset?

How do you handle missing data?medium

Type
conceptual
Topic
handle-missing-data
Frequency
common
Tags
handle, missing, data
Answer

Understand why it is missing, then choose deletion, imputation, or modeling strategies.

Explanation

Missingness can be random or systematic. The method should preserve signal and avoid biasing downstream analysis.

Follow-upWhat is the risk of imputing missing values with the mean?

How do you define a good metric?hard

Type
conceptual
Topic
define-good-metric
Frequency
common
Tags
define, good, metric
Answer

A good metric is aligned with the business goal, measurable, reliable, and hard to game.

Explanation

Metrics should reflect user or business value and include guardrails so optimization does not damage another important outcome.

Follow-upWhat is a guardrail metric?

What is cohort analysis?medium

Type
conceptual
Topic
cohort-analysis
Frequency
common
Tags
cohort, analysis
Answer

It compares groups of users or records that share a starting condition.

Explanation

Cohorts help reveal behavior over time, such as retention by signup month, without mixing users from different lifecycle stages.

Follow-upHow is cohort analysis useful for retention?

How do you investigate an outlier?medium

Type
conceptual
Topic
investigate-outlier
Frequency
common
Tags
investigate, outlier
Answer

Check whether it is an error, rare valid event, or meaningful signal.

Explanation

Outliers can come from data quality issues, system changes, fraud, seasonality, or real extremes. Treatment depends on the goal.

Follow-upWhen should you keep an outlier?