The correct method to add a mouse listener to a component in Java is addMouseListener as it allows you to associate a listener with the component and respond to mouse events effectively. The Option B is correct.
In Java, in order to add a mouse listener to a component in Java, you would typically use the "addMouseListener" method. This method is part of the Java Swing library and is used to register a listener that can detect mouse events such as clicks and movements on the specified component.
When you call "addMouseListener," you provide an instance of a class that implements the "MouseListener" interface which includes methods like "mouseClicked" and "mousePressed" that allow you to define the behavior you want when mouse events occur on the component.