Challenge 1: Event Data
Implement an Event class to store time, date and name attributes
Problem statement
We want to create a class to represent an Event
. Each event must have a title
, a date
and a time
. The Event
class must have a parameterized constructor that initializes the ...