AI & Technical question
You’re given a new model that improves accuracy by 20% but doubles latency. Would you ship it? Walk me through your decision.
Practice this question out loud. An AI interviewer asks it, follows up like a real interviewer would, and scores your answer. Type or speak.
Start a mock interview on this question · Mock interview from a job description
What this question tests
Ability to reason through a real product tradeoff between model quality and user experience, with a clear decision framework, not just a gut answer.
How to approach it
- Clarify the use case, since latency tolerance differs hugely between a real time chat assistant and an offline task like summarization.
- Quantify both sides: the actual latency change and what the 20 percent accuracy gain means in user facing terms.
- Consider a middle path: routing complex queries to the accurate model while keeping the faster model for simple ones.
- Propose testing both against user facing metrics, task success rate and satisfaction, not accuracy or latency in isolation.
- State a conditional recommendation: ship if the use case tolerates the added latency and hybrid routing is not feasible, otherwise hold or route selectively.
What a strong answer includes
- Refuses to answer in the abstract and ties the decision explicitly to the use case's latency tolerance.
- Proposes a hybrid routing solution instead of an all or nothing choice.
- Grounds the decision in user facing outcomes rather than raw accuracy or latency numbers alone.
Common mistakes
- Giving a flat yes or no with no reasoning about the specific use case's latency sensitivity.
- Not considering a hybrid or selective routing approach as a real alternative.
Likely follow-up questions
- How would you measure whether users actually notice or care about the latency increase?
- What would change your answer if this were a real time voice assistant instead of a chat tool?
More ai & technical questions
- How would you design an experiment to evaluate a generative AI feature when outputs are non-deterministic?OpenAI · AI & Technical · Hard
- In what situations would you explicitly avoid using RAG and choose prompting or fine-tuning instead?OpenAI · AI & Technical · Hard
- How should OpenAI handle hallucinations in ChatGPT for high-stakes use cases like medical or legal questions?OpenAI · AI & Technical · Hard
- How would you design guardrails for OpenAI's Operator (browser agent) to prevent harmful actions?OpenAI · AI & Technical · Hard
- Before launching a new Codex capability that can write code or trigger deployments, what evaluation plan and launch gates would you require to validate permission boundaries, prompt-injection resistance, stale authorization handling, secret protection, partner-dependency failure modes, and audit completeness?OpenAI · AI & Technical · Hard
- Suppose you are scoping a first product for in-house legal teams to review contracts with AI assistance. What requirements would you lock first around target use case, acceptable error rates, human-review steps, citations/provenance, and data handling, and what would have to be true before you let customers use it on real matters?OpenAI · AI & Technical · Hard
More questions from these companies
Learn the skill behind it
Chapters of the AI PM course that teach what this question tests.
- Chapter 1: Foundations: the model and the decisions it forces on you
- Chapter 8: Evals: define good and make the number defensible
- Chapter 6: Agents and agentic architecture