Write an interface for a CD player. It should have the standard operations (i.e. play, stop, etc) that usual CD players have.

What will be an ideal response?


```
public interface CDPlayer {
public void play();
public void stop();
public void nextTrack();
public void previousTrack();
public void seekForward();
public void seekBackwards();
}
```

Computer Science & Information Technology

You might also like to view...

Just throwing 1s and 0s onto a communication link is enough to establish coherent communication between two nodes in a network.

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

Computer Science & Information Technology

As you move the Color Sampler Tool over an image in the Document window, the Info panel displays ____.

a. RGB values b. CMYK values c. the X and Y values d. all of the above

Computer Science & Information Technology

?

What will be an ideal response?

Computer Science & Information Technology

Which of the following is NOT an option you can select in the Record Macro dialog box?

A. Macro name B. Shortcut key C. File type D. Description

Computer Science & Information Technology