Answer the following statements true (T) or false (F)

1. Mouse interaction with the GUI is limited to click, press, and move.
2. MouseUp and MouseDown events are used when the mouse is moved up or down.
3. The Button property is used to determine which mouse button is clicked left, middle, right or none.
4. The Clicks property of class MouseEventArgs is used to determine the number of times a mouse button was clicked.
5. Whenever the mouse moves, the system raises a MouseMove event at a rate predetermined by the operating system.


1. False, there are a variety of interactions the mouse can perform, but they can all be grouped into those three basic categories.
2. False. A MouseDown event occurs when the user presses the mouse button down and a MouseUp event occurs when the user releases the mouse button.
3. True
4. True
5. True.

Computer Science & Information Technology

You might also like to view...

Which of the following statements is false?

a. Every Java thread has a thread priority that helps determine the order in which threads are scheduled. b. Each new thread inherits the priority of the thread that created it. c. Informally, higher-priority threads are more important to a program and should be allocated processor time before lower-priority threads. d. Thread priorities guarantee the order in which threads execute.

Computer Science & Information Technology

Case-Based Critical Thinking QuestionsCase 1You have just starting working at Quantum Company. As a new programmer, you have been asked to review and correct various pseudocode.The following pseudocode is not working correctly. The code should add price and tax. What code needs to be corrected?num computeSum(num price, num tax)     Declarations        num result     result = price + taxreturn

A. Change the result calculation to result = tax + price B. Change the result calculation to result = (price + tax) C. Change the return statement to return num D. Change the return statement to return result

Computer Science & Information Technology

?The animation-list code includes the _______________ property, which is set to true by default.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Discuss online auction fraud.

What will be an ideal response?

Computer Science & Information Technology