If not, what is their difference?
The Event Handler is the method that gets called to handle the Event.
The Event Listener is the mechanism that listens for the Event to happen. It then calls the Event Handlers.
Event Registration is the process by which an Event Handler gets registered with an Event Listener so that the handler is called when the Event Listener fires the event.
Event handlers and event listeners both mean functions that respond to events.
In Java, an event listener is a (frequently anonymous) class which implements a Listener interface to handle an event)
Event registration is the process of registering handlers to handle events.
The listener is the object that receives notification, the handler is the method that actually handles the notification. Registration means to register a new listener to the event source.