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›Amazon›DS

Amazon · data

Amazon Data Scientist Interview Questions 2026

Preparation guide for Data Scientist positions at Amazon India. Covers their Online Assessment → Technical × 2 → Bar Raiser process with technical, behavioral, and HR questions.

Interview rounds
4
Avg. package
18–45 LPA
Role type
data

Amazon Data Scientist 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.

Practice answering, not just reading

Take a full scored mock interview tailored to your resume. Get feedback on technical depth, clarity, structure, confidence, and relevance — free to start.

Start free mock interviewFree question generator

Related Guides

  • Software EngineeringWipro Careers, Hiring & Interview Hub (2026)Wipro careers hub — NLTH, Elite NLTH, WILP, Turbo, recruitment calendar, salary bands, eligibility, and role interview guides.
  • Interview StrategyAgentic AI Interview Round (2026): The Ultimate GuideMaster agentic AI interview rounds — evaluation rubrics, 50+ questions, India trends, prep roadmaps, and sample workflows for AI-assisted coding interviews.
  • Software EngineeringTCS Interview Questions (2026)TCS NQT pattern, aptitude, coding, CS fundamentals, Digital vs Prime comparison, 30-day roadmap, and mock interview prep.
  • Software EngineeringSoftware Engineer Interview Questions (2026)SWE prep hub — DSA, system design, OOPs, hiring process, company comparison, 30-day roadmap, and mock interview CTA.
  • FrontendFrontend Developer Interview Questions (2026)Frontend prep hub — React, JavaScript, TypeScript, CSS, hiring process, framework comparison, 30-day roadmap, and mock interview CTA.
  • DSATop DSA Interview Questions & Topic Map (2026)Topic frequency chart, classic patterns, company expectations, and a 4-week prep roadmap.

More Amazon roles

  • Amazon SWE questions
  • Amazon DA questions
  • Amazon MLE questions

Data Scientist interviews at other companies

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

Browse related content

  • All Amazon questions
  • All Data Scientist questions
  • Interview questions hub

Practice tools

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