Course Resources

Search

Search IconIcon to open search

Last updated Unknown

# Whiteboarding Question: Notification System

# Problem Statement

You are designing a notification system that sends messages through different channels. The system should support multiple types of notifications while ensuring all notifications follow a common structure.

# Requirements:


# Example Expected Usage

1
2
3
4
5
6
7
Notification email = new EmailNotification("user@example.com", "Important Update", "You've got mail!");
Notification sms = new SMSNotification("+1234567890", "New message received!");
Notification push = new PushNotification("user123", "Check your app for updates!");

email.send();
sms.send();
push.send();

# Expected Console Output

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
Sending Email to user@example.com:  
Subject: Important Update  
Body: "You've got mail!"  
Notification sent successfully.

Sending SMS to +1234567890:  
Message: "New message received!"  
Notification sent successfully.

Sending Push Notification to user123:  
Alert: "Check your app for updates!"  
Notification sent successfully.

# Task