Solved

Consider the Following Code Snippet: Public Class MyMouseListener

Question 46

Multiple Choice

Consider the following code snippet: public class MyMouseListener
{
Public void mousePressed(MouseEvent event)
{
Double x;
Double y;
_______
System.out.println("x: " + x + ", y: " + y) ;
}
}
Which of the following statements should be in the indicated position to print out where the mouse was pressed?


A) x = event.getXposition() ; y = event.getYposition() ;
B) x = (MouseEvent) getX() ; y = (MouseEvent) getY() ;
C) x = event.printX() ; y = event.printY() ;
D) x = event.getX() ; y = event.getY() ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions