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:

Verified
Correct Answer:
Verified
Q41: Which of the following statements about a
Q42: A/an _ is used to capture mouse
Q43: What role does an interface play when
Q44: Which of the following is an event
Q45: Which of the following statements about a
Q47: Consider the following declarations: public interface Encryptable<br>{<br>Void
Q48: Which of the following statements about an
Q49: Consider the following code snippet: public class
Q50: A method that has no implementation is
Q51: Which of the following is a good