Medium
Uber

Design a Meeting Room Booking System Object-Oriented Design Interview

Design a class-level system for booking meeting rooms: register a room, book a meeting given a start time and duration, and cancel an existing meeting with correct conflict detection.

1. Problem Statement

Design a meeting room booking system: an admin can add a room to the system, any user can book a meeting in a room given a start time and duration (which must not overlap an existing booking in that room), and a booking can be cancelled to free its time slot.

2. Live Coding Format

Work in the provided coding workspace while explaining your decisions to the live interviewer. Validation may use inline tests, examples, comments, or a verbal walkthrough.

3. Key Focus Areas

  • 1
    Room/Booking entity modeling
  • 2
    Interval-overlap conflict detection
  • 3
    Efficient free-room/free-slot queries
  • 4
    Add/book/cancel API design

4. What Strong Candidates Should Demonstrate

  • Model rooms and bookings so overlap/conflict checks are correct and efficient.
  • Keep room-management and booking-conflict logic in cohesive, well-scoped classes.
  • Handle add/book/cancel as a small, clean public API.
  • Validate scheduling correctness with concrete handwritten interval examples.

Want interactive feedback?

Practice this problem in the live coding workspace while the interviewer probes your clarification, implementation, trade-offs, and validation.

Continue to Dashboard

Core Concepts

Object-Oriented DesignInterval SchedulingClass Modeling

Continue preparing

Build a complete software engineer mock interview plan

Related Object-Oriented Design

Design a Power Plant Electricity Allocator

Design a class-level system modeling a power plant that distributes electricity to multiple neighborhoods, each with a stated demand, subject to the plant's total capacity.

Related Object-Oriented Design

Design a Multi-Device Smart Home Controller

Design an application that controls multiple smart-home device types (e.g., fan, TV) supporting generic ON/OFF commands common to all devices plus device-specific commands, extensibly.

Related Object-Oriented Design

Design a Car Rental System

Design a car rental domain model covering vehicle categories and vehicles, branches, customers and drivers, a rental date range, rate-based quotes, reservations, pickup rental agreements, and return inspection with extra charges — preventing overlapping rentals of the same vehicle.

Related Object-Oriented Design

Design a Cricket Information Platform

Design a cricket scoring domain model covering teams and players, a match, innings, overs and deliveries, batting and bowling scorecards, extras and wickets, striker rotation, over completion, and match results for a configurable limited-overs format.