TikTok Data Scientist Interview Questions

Applying to TikTok as a Data Scientist means preparing for a product-first, metrics-driven interview loop where speed, stakeholder influence, and practical experimentation matter as much as algorithms. TikTok Data Scientist interview questions typically emphasize SQL and Python data manipulation at scale, experiment design and causal inference, product analytics and metric definition, and pragmatic modeling choices. Interviewers look for technical correctness, clear assumptions, the ability to link analysis to business metrics, and concise communication that persuades product and engineering partners. You should expect a staged process: an initial recruiter screen and technical assessment followed by a virtual loop of 3–5 interviews mixing live SQL/Python exercises, product-analytics or modeling case problems, A/B testing scenarios, and behavioral discussions. For interview preparation, practice writing readable SQL with window functions and CTEs, build short Python data pipelines, rehearse experiment-design explanations, and prepare STAR stories showing ownership and impact. Simulated loops with timed coding and product cases

128 Questions 1 Company02.17.2026
Showing 20 results
Role
TikTok logo
TikTok
Medium
Data Scientist

Explain your most impactful project trade-offs

Behavioral Prompt: 2–3 Minute Project Walkthrough (Data Scientist, Technical Screen) Deliver a concise, 2–3 minute walkthrough of the single most impa...

Behavioral & Leadership
3
0
49 people solved
Oct 13, 2025
TikTok logo
TikTok
Medium
Data Scientist

Analyze DFS, BFS, and A* trade-offs

Given a weighted graph with nodes {S,A,B,C,D,G} and edges: S–A(2), S–B(5), A–C(2), B–C(1), C–D(2), D–G(1), B–G(20). Heuristic for A*: h(A)=4, h(B)=3, ...

Coding & Algorithms
4
0
62 people solved
Oct 13, 2025
TikTok logo
TikTok
Medium
Data Scientist

Differentiate LDA and QDA; compute boundary

Binary Gaussian Classification: LDA vs QDA You are modeling a 2D binary Gaussian classifier with features (x, y): - Class 0: mean μ0 = (0, 0), covaria...

Statistics & Math
6
0
45 people solved
Oct 13, 2025
TikTok logo
TikTok
Medium
Data Scientist

Implement K-means and run two iterations

Given points P={(0,0),(0,2),(2,0),(2,2),(8,8),(8,10),(10,8),(10,10)} and k=2, (1) initialize centroids with k-means++ using seed=42 and Euclidean dist...

Coding & Algorithms
4
0
46 people solved
Oct 13, 2025
TikTok logo
TikTok
Medium
Data Scientist

Choose linear regression or decision tree appropriately

Choose Between Linear Regression and a Decision Tree Under a Hinge and Interaction DGP Context You have 100,000 i.i.d. observations with features x1 (...

Machine Learning
4
0
53 people solved
Oct 13, 2025
TikTok logo
TikTok
Hard
Data Scientist

Estimate heterogeneous treatment effects with causal ML

Context You are given large-scale, logged observational data from an always-on promotion. Each record contains features X (user/context), a binary tre...

Machine Learning
4
0
47 people solved
Oct 13, 2025
TikTok logo
TikTok
Easy
Data Scientist

Write SQL for TikTok Live creator metrics

You are analyzing TikTok Live sessions and their engagement. Tables live_room Each row is a Live session (“room”) launched by a creator. | column | ty...

Data Manipulation (SQL/Python)
17
0
137 people solved
Oct 9, 2025
TikTok logo
TikTok
Easy
Data Scientist

Find high-value crypto users and top-CTR product

You are given three tables (timezone: UTC). Assume create_date, transaction_time, and event_time are timestamps. Tables users - user_id BIGINT PRIMARY...

Data Manipulation (SQL/Python)
4
1
75 people solved
Feb 4, 2026
TikTok logo
TikTok
Easy
Data Scientist

Maximize watched duration under consecutive-sum limit

You have a list of videos in a feed. Video i has duration d[i] (positive integer). A user has an “attention span” limit A. You want to select a subset...

Coding & Algorithms
7
0
64 people solved
Jan 17, 2026
TikTok logo
TikTok
Medium
Data Scientist

Personalize Ad Delivery Using Machine Learning Techniques

Personalize Ad Delivery Using Machine Learning Techniques Personalized Delivery of Three Ad Categories Scenario You operate a consumer feed with a sin...

Machine Learning
2
0
33 people solved
Aug 4, 2025
TikTok logo
TikTok
Medium
Data Scientist

Calculate User Registration Date and 7-Day Retention Rate

user_posts +---------+--------------+-----------+ | user_id | posting_date | num_posts | +---------+--------------+-----------+ | 1 | 2023-01-01...

Data Manipulation (SQL/Python)
81
0
7 people solved
Jul 12, 2025
TikTok logo
TikTok
Medium
Data Scientist

Evaluate Responses to Teammate's Missed Deadlines

Behavioral Judgment: Teammate Consistently Misses Deadlines You are completing a behavioral questionnaire that asks you to choose the most effective a...

Behavioral & Leadership
21
0
62 people solved
Jul 12, 2025
TikTok logo
TikTok
Medium
Data Scientist

Count buggy vs non-buggy by employer

Count buggy vs non-buggy submissions for each employer_id, including employers with zero submissions. Return employer_id, buggy_count, non_buggy_count...

Data Manipulation (SQL/Python)
1
0
10 people solved
Oct 13, 2025
TikTok logo
TikTok
Medium
Data Scientist

Maximize products bought under budget

Given N products and M customers, for each customer find the list of distinct products they can buy without exceeding their budget such that the numbe...

Coding & Algorithms
3
0
45 people solved
Oct 13, 2025
TikTok logo
TikTok
Medium
Data Scientist

Select max-discount product per category

You have a catalog of products. For each category, return exactly one product: the one with the largest absolute discount; if multiple products in the...

Data Manipulation (SQL/Python)
1
0
9 people solved
Oct 13, 2025
TikTok logo
TikTok
Medium
Data Scientist

Communicate technical impact under skeptical stakeholders

Reframing a Multi‑Team Project for a Technical‑Only Hiring Manager Context You are a data scientist in a technical screen. You need to present a multi...

Behavioral & Leadership
1
0
28 people solved
Oct 13, 2025
TikTok logo
TikTok
Medium
Data Scientist

Handle disengaged interviewer or biased manager

Behavioral Prompt: Handling a Pre-Decided Stakeholder in a Technical Screen Context: Role = Data Scientist; Round = Technical Screen; Category = Behav...

Behavioral & Leadership
7
0
72 people solved
Oct 13, 2025
TikTok logo
TikTok
Medium
Data Scientist

Write SQL for last-7-day metrics without windows

Assume today is 2025-09-01. Use ANSI SQL only and do not use window functions. You may use subqueries, GROUP BY, HAVING, and JOINs. Schema and small s...

Data Manipulation (SQL/Python)
0
0
10 people solved
Oct 13, 2025
TikTok logo
TikTok
Medium
Data Scientist

Derive L1 vs L2 effects with correlation

Multicollinearity: Ridge vs LASSO vs Elastic Net Setup - Two standardized predictors x1 and x2 with corr(x1, x2) = 0.99. - X'X = [[100, 99], [99, 100]...

Statistics & Math
5
0
65 people solved
Oct 13, 2025
TikTok logo
TikTok
Easy
Data Scientist Locked

How would you measure misinformation impact and recommendation bias?

This question evaluates a data scientist's analytics and experimentation competencies — including metric and diagnostic design, sampling and labeling ...

Analytics & Experimentation
4
0
64 people solved
Aug 30, 2025

Frequently Asked Questions

How difficult are TikTok Data Scientist interview questions compared with other big‑tech data scientist roles?
TikTok Data Scientist interview questions are often rigorous and practical, comparable to other large consumer tech firms. Expect a mix of medium‑to‑hard SQL and Python problems, statistic and experimentation questions, product‑sense cases, and behavioral assessments. Difficulty varies by level and team: recommendation, ads, or trust teams tend to surface more modeling and systems trade‑off questions, while analytics roles emphasize SQL and experimental design. Interviewers evaluate technical correctness, clarity of explanation, assumptions, and business impact. Overall, the process rewards clear, reproducible thinking and the ability to connect analysis to product metrics rather than only algorithmic cleverness.
What is the typical TikTok Data Scientist interview process and in which rounds does the Data Scientist topic appear?
The typical process begins with a recruiter screen, followed by a hiring manager or technical phone/video screen that mixes behavioral and technical elements. Many candidates face an online assessment or coding task focused on SQL/Python and statistics, then a virtual onsite loop of four to five interviews covering coding and data manipulation, modeling and experimentation, product sense, and behavioral fit. Data science topics appear across nearly every round: SQL and data wrangling show up early, modeling and experiment design in middle rounds, and product/behavioral questions throughout. Timing and exact structure can vary by team and role seniority.
What is a realistic interview preparation timeline for a TikTok Data Scientist role?
A realistic timeline is 4–8 weeks depending on your starting point. In the first two to three weeks, solidify fundamentals: SQL queries with joins, windows and aggregations, core statistics, and pandas-based data manipulation. Weeks three to five should include modeling refreshers, A/B testing design, and practicing product-case structure. The final one to two weeks are for timed practice, mock interviews, and refining stories for behavioral questions using concrete metrics and impact. Throughout, incorporate regular code review, timed SQL exercises, and at least three full mock loops to build pacing and communication under pressure.
Which key subtopics should I prioritize for TikTok Data Scientist interview questions?
Prioritize SQL (joins, aggregates, window functions, CTEs, NULL handling, and performance considerations) and Python data manipulation with pandas and complexity awareness. Statistics and experimentation are essential: hypothesis testing, confidence intervals, power/sample-size, and guardrails for A/B tests. Modeling basics and interpretability—regression diagnostics, classification, bias/variance, and common algorithms—are often probed. Product and analytics skills matter: metric design, funnel analysis, segmentation, and diagnosing metric changes. Finally, data quality, monitoring, and communicating results to cross‑functional partners are recurring themes you should demonstrate confidently.
What standout tips and common pitfalls should I know when preparing for TikTok Data Scientist interviews?
Standout tips include stating and validating assumptions, choosing and justifying product metrics, and explaining trade‑offs between accuracy, latency, and cost. Use concrete examples with numbers to show impact and frame recommendations in business terms. Practice clear, concise SQL and always explain edge cases and complexity. Common pitfalls are skipping clarifying questions, delivering results without operational considerations, neglecting data quality issues, and failing to discuss privacy or bias implications. Avoid overfitting solutions to interview data and don’t hide uncertainties—interviewers appreciate thoughtful caveats and a plan for further validation.

Explore more TikTok Data Scientist interview questions

Real questions from candidate reports, grouped by topic, role and company.

By category
Other roles at TikTok
Data Scientist questions at other companies
Browse all