Skip to content
tezvyn:

Top 30 UX Research Interview Questions and Answers

30 multiple-choice questions on UX Research, of the kind that come up in a technical interview, drawn from 30 bites in the UX Research library. Answer them here or read straight down. Every question carries the correct option, why it is correct, and a link to the bite it came from.

User research, usability testing, personas, journeys

30 questions. Pick an answer, or open “Show the answer” to read it.

Answers are graded in your browser. Nothing is saved, and no XP or streak is earned here. The app keeps score.

  1. Question 1 of 30

    Which statement best describes the primary engineering purpose of conducting UX research before development begins?

    Show the answer

    Answer: b · It validates real user needs and exposes unknown requirements while changes are still cheap.

    Pre-development UX research is fundamentally an engineering risk-mitigation tool that validates real user needs and uncovers unknown requirements before code is written, when changes are cheapest. Option D is tempting because prototype testing is valuable, but the card explicitly states that the primary purpose of pre-development research is discovery and alignment, not post-hoc validation.

    Read the full bite: What is the primary purpose of UX research before starting development?

  2. Question 2 of 30

    Your team needs to understand why developers rarely use a new CLI flag. Which method produces qualitative user data?

    Show the answer

    Answer: b · Sitting with developers as they run commands and narrate their thought process

    Sitting with developers as they narrate their thought process is qualitative because the researcher is directly observing and listening to behaviors and attitudes. An open-ended questionnaire is a tempting distractor because it relies on an instrument and confuses question format with the direct-versus-indirect distinction.

    Read the full bite: Explain qualitative vs quantitative user data with engineering examples

  3. Question 3 of 30

    A team is running a usability study across three two-week sprints. How should this research work be managed in the product backlog?

    Show the answer

    Answer: a · Maintain one backlog item across all three sprints, marking individual tasks done as they are completed.

    The card emphasizes that research should live as a single backlog item that stays open across sprints while bite-sized tasks are completed, making B correct. Option D is tempting because it follows strict sprint boundaries, but forcing a research story closed at sprint end regardless of study status is explicitly flagged as a common mistake.

    Read the full bite: How does UX research integrate into a two-week agile sprint?

  4. Question 4 of 30

    After releasing an MVP export feature, a team wants to know if users can successfully complete exports. Which research approach fits best?

    Show the answer

    Answer: b · Measuring task success and observing friction while users try the export flow

    Once an MVP exists, evaluative research such as usability testing measures task success and solution fit. Observing how reports fit into workflows is a generative method meant to uncover needs before design begins, so it does not validate whether the new export flow actually works.

    Read the full bite: Generative versus evaluative research: when to use each

  5. Question 5 of 30

    You must validate a new feature concept without a researcher and before writing production code. Which approach best balances speed and rigor?

    Show the answer

    Answer: b · Run an unmoderated concept test with a low-fidelity prototype, recruiting target users in-app and measuring task success and perceived value against a preset threshold.

    B is correct because unmoderated concept tests with prototypes gather both behavioral and attitudinal signals quickly without production code or dedicated research staff. A is the most tempting distractor because A/B testing feels rigorous, but it requires committing production code before validation, which defeats the purpose of lightweight de-risking.

    Read the full bite: Describe a lightweight research method to validate a feature with no researcher

  6. Question 6 of 30

    Which plan best demonstrates rigorous instrumentation to validate a qualitative behavioral insight?

    Show the answer

    Answer: c · Map qualitative themes to specific product events, define success and guardrail metrics, and compare the target cohort against a holdback with a preset minimum detectable effect

    The correct approach requires traceability from themes to events, paired success and guardrail metrics, and a predefined analysis plan with a holdback cohort. Option D is tempting because A/B testing sounds rigorous, but testing the general population without linking metrics to specific qualitative themes or defining statistical power fails to validate the original insight.

    Read the full bite: How would you instrument a feature to validate qualitative findings quantitatively?

  7. Question 7 of 30

    A team's current approach to keeping PII out of logs is to log full request and response bodies as usual, then run a nightly job that scans old logs and deletes lines matching an email regex. What is the main weakness of this approach?

    Show the answer

    Answer: d · It leaves PII sitting in logs until the nightly job runs, and regex scrubbing after the fact commonly misses fields it was not written to catch

    Logging everything first leaves PII exposed in plaintext for up to a full day, and after the fact regex scrubbing routinely misses fields that do not match the pattern, so this is not equivalent to never logging it at all. The stronger control is preventing sensitive fields from being logged in the first place, not cleaning up after exposure.

    Read the full bite: What is PII and how to keep it out of logs

  8. Question 8 of 30

    Which implementation best satisfies GDPR for informed consent before a remote usability test?

    Show the answer

    Answer: c · Use a CMP to collect active consent, record it server-side, and gate the test interface until consent is confirmed

    The correct approach requires active consent via a CMP, server-side recording for auditability, and blocking test access until consent is granted. A tempting distractor stores consent only in browser storage, which can be altered after the fact and lacks a verifiable server-side record.

    Read the full bite: Implement verifiable informed consent before a remote usability test

  9. Question 9 of 30

    When translating GDPR data minimization into a survey schema, which approach reflects the principle correctly?

    Show the answer

    Answer: c · Define the survey purpose first, map every column to a specific need, use pseudonymous identifiers, and schedule periodic deletion.

    Data minimization is a proactive design principle requiring purpose-defined columns, pseudonymous identifiers, and planned deletion before collection begins. Collecting all data upfront and deleting unused columns later conflates minimization with storage limitation and ignores the requirement to limit data from the outset.

    Read the full bite: Explain data minimization and how to apply it to a survey schema

  10. Question 10 of 30

    A team running a six month diary study needs to link the same participant's data across sessions, so they generate each participant's ID by taking an unsalted SHA-256 hash of their email address and store only that hash. What is wrong with this approach?

    Show the answer

    Answer: a · An unsalted hash of a guessable input like an email is trivially reversible by precomputing hashes for common emails, unlike a keyed HMAC with a separately secured key

    Because email addresses are guessable, an attacker can precompute hashes for likely emails and match them against the stored value, so an unsalted hash offers little protection. A keyed hash such as HMAC, with the key held separately and access controlled, is what actually secures a stable pseudonym, and the result is still pseudonymization, not the irreversible anonymization the third option claims.

    Read the full bite: Anonymization vs pseudonymization and key handling

  11. Question 11 of 30

    When handling a GDPR erasure request, what is the correct way to update aggregated analytics dashboards derived from the user's data?

    Show the answer

    Answer: d · Reprocess the underlying data pipeline to exclude the user and rebuild all affected metrics

    The card states that aggregated dashboards must be fixed by reprocessing the underlying pipeline or using differential privacy, because simple subtraction fails for complex metrics like averages and funnels. Option B represents the common misconception of manually adjusting aggregates, which does not reliably remove the user's influence from derived metrics.

    Read the full bite: How do you fulfill a GDPR erasure request across data stores?

  12. Question 12 of 30

    A participant revokes consent two months after granting it. How should a compliant system handle this?

    Show the answer

    Answer: d · Append a new revocation event to the immutable ledger while preserving the original grant

    Regulators require proof of what the user saw and when, so the original grant must remain intact while revocation is appended as a new event. Updating in place or using boolean flags destroys the audit trail and violates compliance requirements.

    Read the full bite: Design a centralized consent platform: core components and database schema

  13. Question 13 of 30

    When operationalizing pure epsilon-DP for a query system, why must noise scale be set to sensitivity divided by epsilon instead of a dataset-wide constant?

    Show the answer

    Answer: d · Sensitivity bounds the worst-case individual impact, and epsilon directly controls the privacy loss parameter

    Noise must scale with sensitivity because it measures how much one individual can alter the result, while epsilon quantifies the privacy-utility trade-off; a fixed constant fails because high-sensitivity queries would leak information about individuals.

    Read the full bite: Apply differential privacy to user behavior queries and explain epsilon trade-offs

  14. Question 14 of 30

    Which design approach best balances automation with ethical governance when de-identifying thousands of hours of video interviews?

    Show the answer

    Answer: c · Implementing tiered data access, manual review queues for low-confidence detections, and audit logs linked to consent records

    The card treats de-identification as a socio-technical problem requiring tiered access, human review for uncertain detections, and consent-linked audit trails rather than pure automation. Option B reflects the dangerous black-box red flag, while B omits necessary audio redaction and voice anonymization, and D destroys restricted originals needed for audit and consent withdrawal.

    Read the full bite: Propose an automated de-identification pipeline for video interview recordings

  15. Question 15 of 30

    Which scenario best justifies choosing a moderated usability test over a survey?

    Show the answer

    Answer: a · Observing behavioral blockers in an interactive prototype before code solidifies

    Moderated tests reveal what users actually do, such as confusion or errors in interactive workflows, while surveys only capture self-reported opinions. Option B reflects the card's survey example of validating desire, which cannot uncover hidden interaction flaws.

    Read the full bite: What trade-offs matter between moderated usability tests and surveys?

  16. Question 16 of 30

    Which part of a UX research plan tells an engineer whether they need to build prototypes, set up feature flags, or add analytics instrumentation?

    Show the answer

    Answer: b · The methodology

    The methodology defines the study type—such as A/B tests, usability tests, or diary studies—which dictates whether engineering must provide prototypes, feature flags, or event instrumentation. The research problem and objectives reveal exploratory versus evaluative intent but do not specify the technical mechanisms required.

    Read the full bite: Essential UX research plan components for engineering scope

  17. Question 17 of 30

    When validating a UX feature constrained by a slow legacy API, which research approach best determines if the constrained experience is shippable?

    Show the answer

    Answer: b · Scope the study to latency-critical tasks, simulate realistic API delays with engineering stubs, and compare task success against the current baseline

    Simulating realistic API delays with stubs isolates the true friction point and benchmarking against the current baseline shows relative improvement, while testing an ideal prototype falsely validates a fantasy experience that engineering cannot ship.

    Read the full bite: How do you validate UX within hard technical constraints?

  18. Question 18 of 30

    When supplementing a two-week remote diary study with technical instrumentation, which approach best validates self-reported behavior while preserving ecological validity?

    Show the answer

    Answer: d · Log anonymized feature usage, session duration, and device switches, then correlate them with diary entries via anonymized participant IDs

    Option D is correct because it pairs passive, privacy-preserving analytics with anonymized linkage to triangulate diary claims without introducing observer bias. Option A is tempting but wrong because invasive capture like screen recording destroys the natural context that makes diary studies valuable and violates the required anonymization and consent protocols.

    Read the full bite: What technical instrumentation supplements a two-week diary study?

  19. Question 19 of 30

    Which research pairing best applies triangulation to checkout abandonment by first locating the drop-off and then explaining the human reasoning behind it?

    Show the answer

    Answer: c · Funnel analytics followed by moderated usability testing to find leaks and observe behavioral barriers

    Funnel analytics pinpoints exactly where users abandon, while moderated usability testing reveals cognitive and emotional causes like form confusion; option D is a common trap because two self-report methods only capture post-rationalized excuses, not actual behavior.

    Read the full bite: Propose two research methods to investigate checkout abandonment

  20. Question 20 of 30

    When building a recruiting pipeline for a niche developer tool, which combination of tactics addresses the three core burdens of qualification, screening, and attendance?

    Show the answer

    Answer: c · Target active practitioners in specialized communities, verify expertise with a brief technical task after the initial screener, and prepare backup candidates for no-shows

    The card emphasizes that strong recruiting targets current practitioners in specialized communities, uses layered technical verification because self-reported expertise is often inflated, and maintains backup candidates to ensure attendance. Option B exemplifies the red flag of relying on titles and a single touchpoint, while B and D fall back on generic sourcing and unverified self-reporting.

    Read the full bite: What criteria and questions ensure right users for a specialized dev tool?

  21. Question 21 of 30

    Why does a one-week lean research plan prioritize five to eight participants who match target behavior over a large demographic sample?

    Show the answer

    Answer: b · Because extreme users who match target behavior provide sufficient directional signal on the riskiest assumption

    The card states that small samples are acceptable for directional signal on high-risk assumptions and that convenience sampling should be bounded by focusing on extreme users who match target behavior, not demographics. Option D is tempting because it echoes the exact sample size, but the plan explicitly trades statistical significance for speed, using directional signal instead.

    Read the full bite: Design a one-week lean research plan for a high-risk decision

  22. Question 22 of 30

    When A/B testing a backend architecture change with shared database pools, which experimental design most rigorously isolates the architecture effect from confounders?

    Show the answer

    Answer: b · Bucket users by session ID hash for sticky routing, stratify by region, pair P99 latency with a user completion metric, and run a parallel holdback at identical traffic percentage

    Option B correctly combines sticky routing, regional stratification, paired P99 and user-completion metrics, and a parallel holdback to isolate architecture effects. Option D is tempting because it includes stickiness and P99 latency, but omitting stratification and a user-facing guardrail leaves the test vulnerable to regional confounders and silent UX regressions.

    Read the full bite: How would you structure a backend architecture A/B test and define metrics?

  23. Question 23 of 30

    When designing a screener to find mobile users who have never used Feature X, which strategy best reduces bias and improves data quality?

    Show the answer

    Answer: b · Begin with broad behavioral questions, then use an indirect description of Feature X's unique task flow to disqualify users without naming the feature.

    C is correct because broad behavioral questions verify genuine app usage, while indirect disqualifiers prevent users from misunderstanding internal feature names or faking eligibility to qualify. A is the most tempting distractor because direct questions seem efficient, but they actually increase false responses since users may not know internal names or may lie to participate.

    Read the full bite: Design a screener survey to identify non-Feature X mobile users

  24. Question 24 of 30

    A screener for a finance app study is being gamed by professional testers who memorize ideal demographic answers. Which redesign best fixes the screener itself?

    Show the answer

    Answer: b · Replace guessable questions with behavioral ones about real tasks and add exclusion criteria for frequent panelists and IT professionals

    The correct answer pairs behavioral validation (asking about specific recent tasks that are hard to fake) with explicit exclusion criteria (blocking habitual panelists and IT professionals), which structurally redesigns the screener to stop gaming. Option D is tempting because quotas and manual review feel like quality controls, but they fail to fix the screener upfront and do not validate genuine user behavior.

    Read the full bite: What two techniques mitigate professional-tester bias in screener design?

  25. Question 25 of 30

    Under the recommended design, what actually happens when a participant submits a verified GDPR deletion request?

    Show the answer

    Answer: a · The system authenticates the requester, then cascades erasure across the primary store, derived datasets, and processors, with a defined approach to backups, and logs fulfillment.

    A compliant deletion workflow authenticates the request and cascades erasure through the primary store, derived data, and processors, logging fulfillment. Option B is the one-off, single-table edit the card explicitly names as a wrong answer because it misses copies in analytics, exports, and backups.

    Read the full bite: Build a compliant participant recruitment database

  26. Question 26 of 30

    Which combination of tools and logic is most appropriate for maintaining participant engagement across a two-week diary study?

    Show the answer

    Answer: c · Calendly scheduling, cascading reminders via Zapier, and automated no-show rebooking flagged in Airtable

    A scalable diary study requires an orchestrated pipeline with self-scheduling, cascading reminders, and automatic no-show rebooking to manage longitudinal complexity. Option D is tempting because Google Forms is a common research tool, but a single static email cannot handle the repeated touchpoints and scheduling logic required for retention.

    Read the full bite: Describe a workflow to automate a 50-person diary study

  27. Question 27 of 30

    Which strategy best balances effective reach and validity when recruiting a rare user population?

    Show the answer

    Answer: d · Target niche channels, use snowball referrals, and verify with behavioral screeners plus anti-fraud checks

    The card prescribes a four-part pipeline of niche outreach, snowball sampling, behavioral screeners, and anti-fraud checks. Option B is tempting because niche communities are correct, but a demographic questionnaire relies on superficial self-report rather than behavioral verification.

    Read the full bite: Propose a strategy for finding and vetting low-incidence participants

  28. Question 28 of 30

    Which architectural choice best prevents panel fatigue while maintaining a unified view of participant consent, eligibility, and contact history?

    Show the answer

    Answer: c · Creating a canonical data model with frequency caps, eligibility rules, and two-way CRM synchronization

    A canonical data model serves as the single source of truth for consent, eligibility, and contact history, while frequency caps and CRM sync enforce communication boundaries. Using live product analytics segments alone is tempting because it offers rich targeting, but it fails to track consent state, withdrawal rights, or cumulative contact history across studies.

    Read the full bite: Outline a technical roadmap for an internal research participant panel

  29. Question 29 of 30

    When architecting a pipeline from an analytics warehouse to a recruiting tool, which step must occur immediately before user identifiers are exposed via API?

    Show the answer

    Answer: a · Check the opt-out registry and confirm privacy consent

    The card specifies that a consent and privacy gate must be inserted before any outreach, and identifiers should only surface to the recruiting tool after consent is confirmed. While cohort computation happens earlier in the warehouse and screener logic typically runs inside the recruiting tool after the API push, consent must be verified at the boundary before identifiers leave the warehouse environment.

    Read the full bite: Design a system integrating analytics data with participant recruiting

  30. Question 30 of 30

    An enterprise panel shows consistently higher satisfaction scores among internal recruits than external ones. Which guardrail directly targets this specific bias?

    Show the answer

    Answer: d · Cap internal power users and brand-loyal participants at roughly 20 percent of total studies

    The card identifies brand loyalty as a source of sampling bias where frequent internal participants provide artificially positive feedback, which is directly mitigated by capping their participation rate. Option B addresses panel fatigue rather than loyalty bias, since cooling-off periods manage burden but do not reduce the proportion of biased respondents in the sample.

    Read the full bite: Design a centralized participant management system to prevent over-contacting

Could you explain these out loud?

That is what an interview actually tests. Tezvyn gives you questions like these with what the interviewer is really checking, the answer that lands, and the mistake that ends the conversation, in the four minutes before your next meeting.

The iPhone app is on the way

We are building it. Until it lands, nothing here is held back from you: every interview card, your saved cards, streaks and the job board all work in Safari, plus hundreds of free practice quizzes of thirty questions each. Sign in and it all carries over to the app the day it arrives.

Want it as an icon? Tap Share at the bottom of Safari, then Add to Home Screen. It opens full screen and the cards you have read stay available offline.

Get it on Google PlayiPhone app coming soon