Data Science track

Data Science interview questions and answers

Panel-ready Data Science track questions for freshers and experienced developers. Practice at Coding Cadre in Faridabad, or Online from Delhi NCR.

21 Moderate A/B Testing Data Science

What is the novelty effect in experiments?

Short take Full answer on next page

Simple meaning

The novelty effect is a short-run change in behavior because the UI is new, not because the design is durably better.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
23 Moderate A/B Testing Data Science

What is a minimum detectable effect (MDE)?

Short take Full answer on next page

Simple meaning

MDE is the smallest true effect the test is designed to detect with the planned power, alpha, and sample size.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
24 Moderate A/B Testing Data Science

Why is randomization the engine of a valid A/B test?

Short take Full answer on next page

Simple meaning

Random assignment balances both observed and unobserved confounders in expectation, which observational matching cannot guarantee.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
26 Moderate Pandas Data Science

When do you use merge versus concat in pandas?

Short take Full answer on next page

Simple meaning

merge joins on keys like SQL, aligning rows by column values or index.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
28 Moderate Pandas Data Science

What is a pivot table used for in EDA?

Short take Full answer on next page

Simple meaning

A pivot table reshapes long data into a grid of aggregations, with one field as rows, one as columns, and a value aggregated in cells.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
29 Moderate Pandas Data Science

Why do pandas dtypes matter for memory and correctness?

Short take Full answer on next page

Simple meaning

Object columns of strings use much more memory than categorical or string dtypes, and float64 IDs can corrupt large integers.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
30 Moderate NumPy Data Science

What is broadcasting in NumPy?

Short take Full answer on next page

Simple meaning

Broadcasting expands arrays of compatible shapes so elementwise operations work without explicit copies of the data.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
31 Moderate NumPy Data Science

What does the axis argument mean in NumPy reductions?

Short take Full answer on next page

Simple meaning

axis specifies which dimension you collapse: axis=0 reduces over rows for a 2D array, leaving columns.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
33 Moderate NumPy Data Science

How does boolean indexing work on a NumPy array?

Short take Full answer on next page

Simple meaning

A boolean mask of the same shape selects positions where the mask is True, returning a one-dimensional collection of those values for a 1D array.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
35 Moderate SQL Analytics Data Science

What is a window function, and when is it better than GROUP BY?

Short take Full answer on next page

Simple meaning

Window functions compute aggregates or ranks over a partition while keeping row-level detail, using an OVER clause with partition and order keys.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
36 Moderate SQL Analytics Data Science

What is a CTE and why do analytics queries use them?

Short take Full answer on next page

Simple meaning

A common table expression is a named subquery introduced with WITH, which you can reference like a temporary table.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
37 Moderate SQL Analytics Data Science

When is DISTINCT the wrong tool compared with GROUP BY?

Short take Full answer on next page

Simple meaning

DISTINCT removes duplicate full rows but does not compute sums, and it can hide that you joined explosively and then deduped.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
39 Moderate EDA Data Science

How do you use a correlation matrix during EDA?

Short take Full answer on next page

Simple meaning

A correlation matrix screens pairwise linear associations among numeric features and can flag redundant predictors.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
40 Moderate EDA Data Science

What signs of target leakage should you look for in EDA?

Short take Full answer on next page

Simple meaning

Leakage shows up as features that would not be known at prediction time, perfect separation, or timestamps after the label.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
Prev Page 2 of 4 Next
Chat with us