Skip to content
InterviewEra
What is InterviewEraThe platform, founder, and missionHow It WorksAdaptive interview, live captions, scoringResume-aware ScoringCV-native questions + 5-dimension feedback
Campus Placements OverviewStructured mock interviews and cohort analytics for T&P teamsSet up Campus WorkspaceCreate your campus dashboard and invite your batchT&P Product & PricingPilot pricing, bulk onboarding, and placement trackingStudent Invitation HelpHow to accept a campus invite and start practising
Software EngineerDSA, system design, OOP roundsFrontend DeveloperReact, HTML/CSS, JavaScript interviewsTCS Interview QuestionsNQT + technical + HR roundsWipro Careers HubNLTH, WILP, Turbo hiring tracksSolera Careers HubCognitive assessment + Java/SQL roundsReact Interview QuestionsHooks, state, performance topics
Interview Question GeneratorRole-specific questions in secondsATS Resume CheckerScore your resume against job rolesSTAR Answer BuilderStructure behavioral answers clearly
All ResourcesCentral guide and hub directoryBlogInterview prep articles and guidesAgentic AI Interview GuideAI-assisted coding interviews, rubrics, and prepPlacement GuideStep-by-step campus prep playbookSTAR Method GuideMaster behavioral answers
Help CenterGuides, FAQs, and supportDSA Topic MapPatterns, roadmap, and top 50 problemsSoftware Engineer GuideSWE questions and prep hubAndroid GuideKotlin, Compose, MVVM prep hubFrontend GuideReact and JavaScript interviews
PricingFor Teams
Sign inSign up
InterviewEra

InterviewEra is an AI-powered mock interview platform with adaptive follow-ups, resume-aware scoring, and structured interview preparation for campus placements and early-career hiring.

Start Mock Interview

Mock Interview

  • How It Works
  • For Teams
  • Start Mock Interview
  • Campus Placements
  • Campus Workspace
  • Help Center

Free Tools

  • Interview Question Generator
  • ATS Resume Checker
  • STAR Answer Builder

Interview Questions

  • Wipro Careers Hub
  • Solera Careers Hub
  • Amazon SDE Questions
  • Microsoft SDE Questions
  • Infosys SWE Questions
  • Infosys Java Questions
  • Freshworks Frontend Questions
  • Android Developer Questions
  • Frontend Developer Questions
  • Java Developer Questions

Resources

  • Community Hub
  • All Resources
  • Blog
  • Agentic AI Interview Guide
  • What Is Agentic AI
  • Agentic Coding Round
  • AI Prompt Engineering
  • Cursor AI Interview Guide
  • DSA Topic Map
  • Placement Guide
  • STAR Guide
  • HR Guide
  • Interview Tips

Company

  • What is InterviewEra
  • About Us
  • Pricing
  • Contact

© 2026 InterviewEra. All rights reserved.

Privacy PolicyTermsRefundRanchi, Jharkhand, India
Interview Questions›Data Scientist

data · Experienced

Data Scientist Interview Questions India 2026

Data Scientist interview questions on ML algorithms, feature engineering, model evaluation, and statistical inference.

data role12 curated questionsUpdated 2026

Data Scientists Interview Questions

Placement-oriented · Updated 2026
  1. 01

    What is the difference between classification and regression?

    TechnicalEasy

    Tip: Classification predicts a discrete category (spam/not spam). Regression predicts a continuous value (house price). Logistic regression is classification despite the name — a common exam trap.

  2. 02

    Explain the bias-variance trade-off. How does it guide model selection?

    TechnicalMedium

    Tip: Bias: error from wrong assumptions (underfitting — model too simple). Variance: error from sensitivity to training data (overfitting — model too complex). Goal: sweet spot that generalises. Regularisation trades some variance for lower bias.

  3. 03

    What is cross-validation? Why is it better than a simple train-test split?

    TechnicalMedium

    Tip: k-Fold CV splits data into k folds, trains k times each using a different fold as validation. Averages performance across folds for a more reliable estimate than a single split. Especially important for small datasets.

  4. 04

    What is the difference between L1 (Lasso) and L2 (Ridge) regularisation?

    TechnicalHard

    Tip: L1 (sum of absolute weights): produces sparse models by driving some weights to exactly 0 — acts as feature selection. L2 (sum of squared weights): shrinks all weights towards 0 but rarely to exactly 0. Use L1 for feature selection, L2 for general regularisation.

  5. 05

    What is the confusion matrix? Define precision, recall, and F1 score.

    TechnicalMedium

    Tip: Precision = TP/(TP+FP) — of all predicted positives, how many are correct. Recall = TP/(TP+FN) — of all actual positives, how many did we catch. F1 = harmonic mean. High-precision when false positives are costly; high-recall when false negatives are costly.

  6. 06

    Explain gradient descent and the difference between batch, stochastic, and mini-batch variants.

    TechnicalHard

    Tip: Gradient descent: update weights opposite to the gradient of loss. Batch: uses ALL training data per step — accurate but slow. SGD: one sample per step — noisy but fast. Mini-batch: k samples per step — best of both, what deep learning uses (k typically 32–256).

  7. 07

    What is overfitting? How do you detect it and what techniques prevent it?

    TechnicalMedium

    Tip: Overfitting: model memorises training data, poor on unseen data. Detect: training accuracy significantly exceeds validation accuracy. Prevent: cross-validation, regularisation, dropout (neural nets), early stopping, more training data, feature reduction.

  8. 08

    Tell me about a data science project with a measurable business impact.

    BehavioralMedium

    Tip: STAR format. Quantify impact wherever possible: "reduced churn by 8%", "improved conversion by 12L/month." The more specific the number, the more credible the answer.

  9. 09

    Your classification model has 95% accuracy but the client is unhappy. What might be wrong?

    SituationalHard

    Tip: Class imbalance: if 95% of data is class A, a model that always predicts A gets 95% accuracy without learning anything. Check precision/recall for the minority class. Also check if the metric the client cares about is accuracy at all — it often is not.

  10. 10

    What is feature engineering? Give a concrete example that improved a model.

    TechnicalMedium

    Tip: Feature engineering: creating new input features from existing data. Examples: log-transforming skewed salary data, extracting day-of-week from a timestamp, creating interaction terms. Good features often matter more than algorithm choice.

  11. 11

    How do you communicate model results to a non-technical business stakeholder?

    BehavioralMedium

    Tip: Lead with the business recommendation, not the methodology. Use plain language: "the model correctly identifies 9 out of 10 at-risk customers" beats "recall is 0.9". Use visuals. Avoid model-jargon entirely unless asked.

  12. 12

    Python vs R for data science — which do you prefer, and when is R the better choice?

    HREasy

    Tip: Python: general-purpose, better ML libraries (sklearn, PyTorch), production-deployment friendly. R: superior for statistical analysis, publication-quality plotting (ggplot2), bioinformatics. In Indian tech companies, Python is overwhelmingly preferred.

Key topics to prepare for Data Scientist interviews

Recruiters test these skill areas specifically. Click any topic to see curated questions.

PythonSQLMLPandas

Practice, not just reading

Get scored on your Data Scientist answers

Upload your resume and practice a full Data Scientist mock interview with AI-generated questions and rubric-based scoring across 5 dimensions — free to start.

Start free mock interviewGenerate more questions free

Related Guides

  • Software EngineeringWipro Data Analyst Interview Questions and Answers (2026)Wipro DA guide — NLTH, SQL, Python, statistics, salary, 30-day roadmap, and expert sample answers.
  • Software EngineeringData Analyst Interview QuestionsData Analyst interview questions on SQL, Python, statistics, and dashboarding tools asked at Indian analytics and tech companies.
  • Software EngineeringPython Interview QuestionsPython interview questions on data types, OOPs, decorators, generators, and libraries — widely tested for both backend and data science roles.
  • Software EngineeringBackend Developer Interview QuestionsBackend Developer interview questions on APIs, databases, system design, and server-side languages asked at Indian tech companies.
  • Software EngineeringPython Developer Interview QuestionsPython Developer interview questions covering core Python, Django, REST APIs, and scripting — popular at startups and service companies alike.
  • Software EngineeringMachine Learning Engineer Interview QuestionsML Engineer interview questions on model training, deployment pipelines, MLOps, and deep learning concepts at Indian AI-first companies.

Companies hiring Data Scientists

  • Google DS questions
  • Microsoft DS questions
  • IBM DS questions

Practice tools

  • DS question generator
  • DS ATS checker
  • STAR answer builder

Other data roles

  • Data Analyst questions
  • Machine Learning Engineer questions

Guides and resources

  • All interview questions
  • STAR method with examples
  • HR interview answer tips