DataDriven
LearnPracticeInterviewDiscussDailyJobs

The Exception Handler

A medium Python mock interview question on DataDriven. Practice with AI-powered feedback, real code execution, and a hire/no-hire decision.

Domain
Python
Difficulty
medium
Seniority
L3

Interview Prompt

Given a single list of [numerator, denominator] pairs, return a results list where for each pair you produce: the quotient numerator / denominator as a float on success; the string 'division by zero' when the denominator is 0; and the string 'invalid input' when either operand is not a number. Process every pair so that one bad pair never stops the rest, and return the results in the same order as the input.

Summary

Good code handles failure as gracefully as success.

How This Interview Works

  1. Read the vague prompt (just like a real interview)
  2. Ask clarifying questions to the AI interviewer
  3. Write your python solution with real code execution
  4. Get instant feedback and a hire/no-hire decision

Related

  • All Mock Interviews
  • Practice Mode (untimed)
  • Python Interview Questions
  • Data Engineering Interview Prep Guide
  • Practice Problems
  • Daily Challenge