LLD - Design — Hotel Booking System
Consider this code:
What will be printed?
slots = {"slot1": True, "slot2": True}
requested = "slot3"
print(slots.get(requested, True))What will be printed?
