Grokking the Object Oriented Design Interview

Learn how to prepare for object oriented design interviews and practice common object oriented design interview questions.

Level:
Beginner
Study Time:
35h
Lessons:
49
Playgrounds:
156
Assessments:
123
Updated
Last month
4.2
(10,939 ratings)
60,422 learners
Arslan Ahmad
Created byArslan Ahmad
Ex FAANG Manager, Expert Behind Grokking the Object Oriented Design Interview

Course Overview

Object-oriented design has always been a critical part of the software engineering interview process. Most of the engineers struggle with the object-oriented design interviews (OODI), partly because of their lack of experience in laying down the design of a complex system, and partly because of the unstructured nature of OODI. Even engineers, who have some sort of experience in building such systems are not comfortable with these interviews. It is mainly because of the open-ended nature of the design problems that don't have a standard answer. This course is a complete guide to master the OODI. It is created by Design Gurus who are a team of hiring managers from Google, Facebook, Microsoft, and Amazon. It not only has 22 carefully handpicked case studies, which have been repeatedly asked at the top tech companies but also provides a thorough experience to handle different object-oriented design scenarios. The course teaches the method first, then applies it: a dedicated chapter walks through how to bound the requirements, find the classes, connect them, and check the result, and every case study then follows those same steps. Complete implementations in Python, Java and C++ are provided throughout, and each one compiles and runs. Eight adaptive...

Grokking the Object Oriented Design Interview Image
Best value
Lifetime access to this course
One-time payment. Yours forever.
$75
Discussions
Certificate
Free updates
Want all 40+ courses?
Grokking the Object Oriented Design Interview Image
Best value
Lifetime access to this course
One-time payment. Yours forever.
$75
Discussions
Certificate
Free updates
Want all 40+ courses?

What you'll learn in Grokking Object Oriented Design Interview

  • A repeatable way to answer any object oriented design question: requirements, actors and use cases, class diagram, then code.
  • Object oriented fundamentals applied rather than defined: encapsulation, abstraction, inheritance, and polymorphism, used inside real designs.
  • How to turn a one-line question into a clear list of requirements and actors, where most candidates lose this interview.
  • 22 complete case studies with more than 250 diagrams, each taken from requirements through to working code.
  • Larger product designs: Amazon, Stack Overflow, LinkedIn, Facebook, an airline system, a car rental system, and a stock brokerage.
  • Working implementations in Python, Java, and C++, so every design ends in code you can read.
  • Seven adaptive assessments, 210 questions, after the two teaching chapters and each family of case studies.
  • A dedicated chapter on the method itself: a time budget, the tests that turn nouns into classes, and the six design patterns worth knowing by name.
  • The four UML diagrams worth drawing at a whiteboard: use case, class, activity, and sequence, and when to draw each.
  • How to identify classes and their relationships: association, aggregation, composition, and inheritance, shown correctly in UML.
  • The classic questions: a parking lot, an elevator, a vending machine, a library, an ATM, chess, blackjack, a hotel, a restaurant, and a movie ticket booking system.
  • Designs built around one pattern: Splitwise, ride sharing, an in-memory cache, and a notification service.
  • Activity and sequence diagrams for the main flows, so you can walk an interviewer through each step.
  • A 60 question final exam over the whole course, with a written explanation on every option, right or wrong.

Course Content

Chapters • 49 Lessons
1.

Introduction

4 lessons

What This Course Covers

5.

Final Exam

1 lessons
6.

Appendix

2 lessons

What people say about our courses

MO JAFRI avatar
MO JAFRI
Software Engineer
The courses which have "grokking" before them, are exceptionally well put together! These courses magically condense 3 years of CS in short bite-size courses and lectures (I have tried Grokking System Design Interview, OODI, and Coding patterns). The Grokking courses are godsent, to be honest.
ABHISHEK GUPTA avatar
ABHISHEK GUPTA
Software Engineer
My offer from the top tech company would not have been possible without Grokking System Design. Many thanks!!
KAUSHIK JONNADULA avatar
KAUSHIK JONNADULA
Software Engineer
Thanks for a great resource! You guys are a lifesaver. I struggled a lot in design interviews, and Grokking System Design gave me an organized process to handle a design problem. Please keep adding more questions.
AHMET HANIF avatar
AHMET HANIF
Software Engineer
Whoever put this together, you folks are life savers. Thank you :)

About the Author

Arslan Ahmad

Arslan Ahmad

Design Gurus Founder
Ex-FAANG Manager
Meta
Microsoft
Google
Amazon
Uber

Industry Expertise & Leadership

Arslan Ahmad is the lead author of Grokking the Object Oriented Design Interview. As the founder of Design Gurus and a former FAANG hiring manager, he has worked at industry giants like Facebook (now Meta) and Microsoft.

He has conducted hundreds of system design interviews, giving him unique insight into what top tech companies look for in candidates.

The course also incorporates expertise from senior engineers at Google, Meta, Amazon, Microsoft, and Uber, ensuring you learn system design best practices from professionals who have built and scaled real-world systems.

500+

Interviews Conducted

10k+

Students Taught

Related Courses

Grokking the System Design Interview
The original system design interview course from DesignGurus. Master scalable systems, critical trade-offs, and 15+ real-world design problems with a repeatable interview framework.
4.7
186K learners
Discounted price for Your Region

$148

New
System Design Patterns: From Fundamentals to Real Systems
Learn the 60+ patterns behind every scalable system: from caching and sharding to AI-era infrastructure: through real incidents, everyday analogies, and honest trade-offs.
4.8
5.9K learners
Discounted price for Your Region

$123

Grokking SOLID Design Principles
Master SOLID design principles with practical examples to build robust, maintainable software and enhance your system design skills.
4.4
15K learners
Discounted price for Your Region

$50

FAQs

It is a course on answering object oriented design questions, the round where you are asked to design something like a parking lot or a chess game and produce classes, relationships, and code rather than servers and databases. It covers the object oriented and UML groundwork first, teaches a repeatable method for answering these questions, then works through 22 complete case studies, each one going from requirements to a use case diagram, a class diagram, activity diagrams, and finally a working implementation.

Software engineers preparing for an object oriented design or low level design round, at any level from new graduate upward. It also suits engineers who write code every day but have never had to defend a class design out loud, and anyone who can produce a working solution but freezes when asked to draw the model behind it.

A system design interview asks how a product scales: services, databases, caches, queues, and the trade-offs between them. An object oriented design interview zooms all the way in on one application and asks how it is modelled: which classes exist, what each one is responsible for, how they relate, and what the code looks like. Same product, very different altitude, and preparing for one does not prepare you for the other.

Yes. Object oriented design, OOD, low level design, and LLD are different names companies use for the same round, and machine coding rounds are usually this interview with a working program required at the end. The material here applies to all of them.

The 22 case studies are the classic low level design questions: a parking lot, a library management system, an ATM, an elevator system, a vending machine, a movie ticket booking system, a hotel management system, a car rental system, a restaurant management system, an airline management system, blackjack and a deck of cards, chess, Stack Overflow, Cricinfo, LinkedIn, Facebook, the Amazon online shopping system, an online stock brokerage system, Splitwise, a notification service, an in-memory cache, and a ride sharing service.

Python, Java, and C++. The design work itself is language independent, so you can follow along in any object oriented language, but the implementations are given in those three.

Yes. The method chapter has a dedicated lesson on the design patterns that come up in this round, and twelve case studies end with a short section naming the patterns used in that design: Strategy, State, Template Method, Observer, Decorator, and Singleton. Each pattern appears inside a design you have just worked through, not as an isolated definition.

No. The course teaches the UML it uses before any of the case studies rely on it, with dedicated lessons on use case diagrams, class diagrams, activity diagrams, and sequence diagrams. You need to be comfortable writing object oriented code, but you do not need to have drawn a diagram before.

It opens with a short introduction: what this round is, one complete answer worked end to end before any theory, and a study plan for the time you actually have. Then 7 lessons on object oriented fundamentals and the UML notation you will use, each of the four principles shown with a diagram and running code. Then comes the method: 6 lessons on how to answer one of these questions, covering how to bound the requirements, how to find the classes, how to choose the relationship between two of them, how to check the result against the SOLID principles, and which design patterns come up in this round. The rest is 22 case studies that all follow the same five steps: system requirements, use case diagram, class diagram, activity diagrams, and code. The UML chapter and the method chapter each close with an assessment, the case studies carry five more, and a final exam draws on the whole course. Because every case study runs in the same order, the process becomes something you can repeat under pressure rather than something you have to remember.

There are eight assessments holding 270 questions in total: one closing the UML chapter, one closing the method chapter, five across the case studies grouped by family, and a final exam over the whole course. They are adaptive, so a chapter assessment draws 14 questions from a bank of 30 at your level as you go, and the final exam draws 25 from a bank of 60. Almost none of them ask you to recall a definition. Each one puts you inside a decision, such as which class should own a fact or which relationship belongs on a line, and every option carries a written explanation, including the ones you did not choose.

Text-based, with more than 250 diagrams and code you can read in place. That suits design work better than video, because you will spend most of your time comparing a class diagram against its implementation, and going back and forth between the two is far easier on a page than in a timeline.

Yes. Design Gurus issues a certificate once you have completed the course, and you can share the link directly or add it to your LinkedIn profile.

Design Gurus logo
One-Stop Portal For Tech Interviews.
Copyright © 2026 Design Gurus, LLC. All rights reserved.