<span style="color:#D5DEEB"><strong><span style="font-size:22px">Why This Round Exists</span></strong> <span style="color:#D5DEEB">The PM role at data-intensive companies like logistics, marketplaces, fintech, delivery, has evolved closer to a product analytics hybrid. PMs are expected to pull their own data, diagnose metric anomalies without waiting on a data scientist, and communicate quantitative findings to engineers and executives with equal clarity.
<span style="color:#D5DEEB">As noted in a 2025 analysis on Medium (datainterview.com), the PM and data science interview format shifted decisively after 2022. Earlier interviews were largely standardized: a basic SQL or Python screen, a take-home, and a panel. By 2025, every round is tailored to what you'll do on the job and how you'll do it. Interviews now simulate real workplace conditions, asking you to debug a broken pipeline live, scope an ambiguous product metric, or pair with an interviewer on a system design task.
<span style="color:#D5DEEB">For PMs specifically, Uber formalized this with their "Jam Session" format: in the on-site, you interview not only with product managers, but also with data scientists, marketers, and engineers in one room. You explore measurements and how you operate with data scientists to make data-driven decisions.
<span style="color:#D5DEEB"><strong><span style="font-size:22px">What the Data & Tech Screen Tests</span></strong> <span style="color:#D5DEEB">These screens are typically 45 to 60 minutes and break into three components: verbal analysis of data presented in the room, live SQL (usually on a shared doc or whiteboard), and problem-solving narration. The CloudKitchens Data & Tech Screen is a clear example where candidates are given data, asked to analyze it verbally, write some SQL, and walk through their problem-solving approach live with the interviewer.
<span style="color:#D5DEEB">The goal is not to produce perfect code. It's to assess whether you can think like an analyst when the stakes are real.
<span style="color:#D5DEEB"><strong>1. Verbal Data Analysis</strong> <span style="color:#D5DEEB">This is the component most PMs underestimate in an interview. You're handed a table, dashboard, or raw output and asked to describe what you see, what's interesting, and what you'd want to investigate further in the data.
<span style="color:#D5DEEB">In 2025, interview questions tend to be ambiguous and more high-level to connect with a larger business problem. For a question like "Who are our most valuable users over time?", you get to define what "valuable" means, make trade-offs, explain why your logic makes sense, and then write the SQL that will correctly output the users according to your own logic.
<span style="color:#D5DEEB">The framing matters. Companies want to hear you move from observation to hypothesis to diagnostic question. A structure that works: <span style="color:#D5DEEB">1) <strong>Anchor the metric: </strong><span style="color:#D5DEEB">"This looks like weekly active orders per city, segmented by new vs. returning users." <span style="color:#D5DEEB">2) <strong>Name the anomaly:</strong> <span style="color:#D5DEEB">"There's a dip in returning user orders in week 14 that doesn't appear in the new user line." <span style="color:#D5DEEB">3) <strong>Form hypotheses: </strong><span style="color:#D5DEEB">"That could be seasonality, a product change, a delivery quality issue, or a cohort maturity effect, and I'd want to look at each." <span style="color:#D5DEEB">4) <strong>Propose a query: </strong><span style="color:#D5DEEB">"To isolate the cohort effect, I'd pull retention curves by signup week and compare week-14 order rates across cohorts."
<span style="color:#D5DEEB">As documented in Interview Query's data analytics case study guide, product metrics cases tend to focus on a hypothetical situation: you'll propose a solution to a problem and supply the metrics you'll use to investigate or solve it, with an SQL query sometimes required and sometimes not.
<span style="color:#D5DEEB">What interviewers are scoring: Do you anchor the business model? Do you prioritize hypotheses intelligently? Do you separate signal from noise without being prompted?
<span style="color:#D5DEEB"><strong>2. Live SQL</strong> <span style="color:#D5DEEB">The SQL bar for PMs at data-heavy companies is meaningfully higher than most candidates expect. Basic SELECT, WHERE, and GROUP BY queries will not get you through. You should be comfortable with the following: <span style="color:#D5DEEB">1) <strong>Joins: </strong><span style="color:#D5DEEB">Know when to use LEFT vs. INNER, and be able to explain why dropping unmatched rows would skew a result. This comes up constantly in marketplace data where order tables and user tables don't always share complete overlap. <span style="color:#D5DEEB">2) <strong>Window functions: </strong><span style="color:#D5DEEB">ROW_NUMBER(), RANK(), LAG(), and LEAD() show up in nearly every modern data screen. Per Prachub's Meta Data Scientist interview guide (updated 2026), you should be fluent in SQL fundamentals including joins, aggregations, window functions, CTEs, NULL behavior, and the difference between WHERE and HAVING, along with performance-aware query design. <span style="color:#D5DEEB">3) <strong>CTEs:</strong> <span style="color:#D5DEEB">Complex queries should be built in stages using WITH clauses. Collapsing everything into nested subqueries signals you haven't worked with production-scale data. <span style="color:#D5DEEB">4) <strong>Funnel construction:</strong> <span style="color:#D5DEEB">Given an events table, can you compute conversion rates across steps? A funnel query typically involves conditional aggregation with CASE WHEN logic using grouping by user_id, marking whether each user hit each funnel stage, then aggregating across the cohort to compute step-to-step conversion rates.
<span style="color:#D5DEEB">At Uber, the explicit advice is to verbalize why you choose each join or filter. This demonstrates analytical transparency and shows you can defend your work when results are questioned by stakeholders.
<span style="color:#D5DEEB">An important note on format: whiteboard or verbal walk-throughs, explaining how you'd structure a query without writing code, are used specifically for testing conceptual clarity under pressure. Hiring managers continue to test SQL directly because clean, optimized SQL is seen as a proxy for analytical rigor, data literacy, and attention to detail (Interview Query, 2025).
<span style="color:#D5DEEB"><strong>3. Problem-Solving Narration</strong> <span style="color:#D5DEEB">The third component is the least structured and arguably the most revealing. You'll get something like: "Orders dropped 18% in one region last Tuesday. Walk me through how you'd investigate that." No data. No schema. Just your reasoning process.
<span style="color:#D5DEEB">One candidate at a delivery startup shared on Medium: "They asked why repeat orders dropped in LA. No data given. Just walk them through how you'd debug it." These cases are about structured thinking, metric design, and business impact.
<span style="color:#D5DEEB">The framework that works best for PMs in this format: <span style="color:#D5DEEB">1) <strong>Scope the question first: </strong><span style="color:#D5DEEB">Is this a data collection issue, a product issue, or an external issue? Check data pipeline health before diagnosing product behavior. <span style="color:#D5DEEB">2) <strong>Segment the drop: </strong><span style="color:#D5DEEB">Is it across all platforms, or isolated to iOS/Android/web? All customers or a specific cohort? All merchants or a subset? <span style="color:#D5DEEB">3) <strong>Correlate with known changes: </strong><span style="color:#D5DEEB">Did a release go out that day? Were there pricing changes, promotional changes, or driver/courier incentive changes? <span style="color:#D5DEEB">4) <strong>Propose the query:</strong><span style="color:#D5DEEB"> "I'd start with a breakdown of order volume by platform, merchant category, and user tenure cohort for that Tuesday vs. the prior four Tuesdays."
<span style="color:#D5DEEB">The product case study format tests whether you can break an open-ended question into smaller, solvable chunks and narrow scope in the right, relevant product contexts. Interviewers want to see a few relevant metrics that tell a meaningful story without rambling, according to Bobby Deng's 2024 data science interview prep guide on Medium.
<span style="color:#D5DEEB"><span style="font-size:22px">What Companies Are Actually Looking For by Format</span></span> <span style="color:#D5DEEB">Understanding how each company operates is critical. How many-sided marketplaces is it? Below we’ll take a look behind the curtain of data-driven tech companies that prioritize the data interview.
<span style="color:#D5DEEB"><strong>CloudKitchens: </strong><span style="color:#D5DEEB">A structured Data & Tech Screen with verbal data analysis, SQL, and a problem-solving walk-through. The emphasis is on operational data like order volume, kitchen utilization, delivery time variance.
<span style="color:#D5DEEB"><strong>DoorDash: </strong><span style="color:#D5DEEB">Per InterviewKickstart's 2026 guide, the analytical assignment can include numerical and verbal reasoning through to Excel worksheets with hypothetical data. You'll need to use the data to analyze and then make recommendations from the point of view of a product manager. The focus is on marketplace thinking: Dasher supply, merchant health, consumer retention.
<span style="color:#D5DEEB"><strong>Uber:</strong> <span style="color:#D5DEEB">PMs are expected to explore measurements and demonstrate how they operate with data scientists to make data-driven decisions. The Jam Session includes live data discussion with data science peers who will probe metric definitions, trade-offs, and analytical approach. Per Exponent's Uber PM interview guide, you need competency in defining metrics as well as understanding what to do when metrics change, showing you make data-driven decisions methodically.
<span style="color:#D5DEEB"><strong>Stripe: </strong><span style="color:#D5DEEB">Stripe's "Write Everything Down" culture means written communication skills are as important as verbal ones. Per Interview Query's Stripe PM guide, prepare concrete examples of how you've used data to identify problems or drive impact. Link every metric to either user trust, revenue growth, or operational efficiency - Stripe's three north stars.
<span style="color:#D5DEEB"><strong>Meta (Analytics PMs):</strong> <span style="color:#D5DEEB">Per Prachub's Meta Data Scientist interview guide (2026), the technical interview heavily focuses on SQL and product analytics reasoning. The format follows a standard pattern: SQL question first, using real product data context, followed by a product case where you use your query results to discuss product metrics or experiment design. At senior levels, add measurement platforms, data pipelines, causal inference principles, and communicating trade-offs to product and engineering partners.
<span style="color:#D5DEEB"><strong><span style="font-size:22px">How to Prepare</span></strong> <span style="color:#D5DEEB"><strong>1) SQL fluency: </strong><span style="color:#D5DEEB">Work through 10 to 15 problems on DataLemur or Interview Query daily for two to three weeks. Focus on window functions, funnel construction, and cohort retention queries. These three patterns cover the majority of what you'll encounter in a PM data screen. <span style="color:#D5DEEB"><strong>2) Verbal narration practice: </strong><span style="color:#D5DEEB">Take any public dataset such as Airbnb listings data, NYC taxi data, Kaggle, and open it in a notebook or spreadsheet, and practice describing what you see out loud before you write a single line of code. Recording yourself is uncomfortable and useful. <span style="color:#D5DEEB"><strong>3) Business model grounding: </strong><span style="color:#D5DEEB">Before any interview, map the company's core funnel. For a marketplace: acquisition, first order, repeat order, retention. Know which metrics live at each stage. If DoorDash's repeat order rate drops, you should already have an opinion on which cohort to examine first. <span style="color:#D5DEEB"><strong>4) Practice the "why" before the "how": </strong><span style="color:#D5DEEB">The strongest candidates start every analysis by stating what business question they're answering. "I want to understand whether this drop is supply-side or demand-side" is more impressive than jumping to a GROUP BY query with no stated intent.
<span style="color:#D5DEEB"><strong><span style="font-size:22px">The Real Filter</span></strong> <span style="color:#D5DEEB">Companies running Data & Tech screens are not trying to hire data scientists into PM roles. They're filtering for PMs who won't be bottlenecked by their analytics team. They are looking for people who can form a hypothesis, pull a sanity-check query, and come to a 1:1 with their data counterpart having already done 60% of the diagnostic work.
<span style="color:#D5DEEB">If you've shipped product but have never personally written a SQL query against production data, this round will expose that quickly. The good news is that the bar is learnable and well-defined with SQL practice tools like sql-practice.com to understand SQL application. Practice real-world cases and learn metrics for the industry you're targeting. When coding, strive for clean, optimized, and maintainable SQL.
<span style="color:#D5DEEB">The candidates who clear this round consistently do one thing the others don't: they narrate their thinking with the same confidence they bring to a product roadmap discussion. The data fluency is table stakes. The structured, confident communication is what gets you to the loop.