Answer the following statements true (T) or false (F)
1. The delay parameter in the Timer constructor is the amount of time between action events, measured in microseconds.
2. The following getAudioClip() method returns an object that will load the sound file and assign the location of that file to clip which can then be used to call methods that may play the sound file one or more times:
```
Audioclip clip = getAudioClip(getDocumentBase(), "mysound.wav");```
3. A label's preferred size is determined only by calling the setPreferredSize method.
4. When you write a change listener class method for a slider, it must implement the ChangeListener interface which is in the javax.swing.event package.
1. FALSE
2. TRUE
3. FALSE
4. TRUE
You might also like to view...
A ________ displays information about what keys you can press to access each Ribbon tab and most commands on each tab
A) Live Preview B) hyperlink C) KeyTip D) ScreenTip
The ____________ method can be used to convert a string to an integer.
a. Try.Parse.int b. int.Parse c. int.TryParse d. TryParse.int