Create an interface called VCR that has methods that represent the standard operations on a video cassette recorder (play, stop, etc.). Define the method signatures any way you desire. Describe how a class might implement this interface.
What will be an ideal response?
```
public interface VCR
{
public String play();
public String stop();
public String record(int start, int end);
public String pause();
}
```
A class implementing VCR would include an implements clause in the class header, such as:
public class MyVCR implements VCR
The class would contain, among other things, four methods with signatures that match those specified in the interface.
You might also like to view...
In an expression containing values of the types int and double, the ________ values are ________ to ________ values for use in the expression.
a. int, promoted, double. b. int, demoted, double. c. double, promoted, int. d. double, demoted, int.
The _________ is software that presents a consistent API to the upper layers and maps upper-layer operations onto a specific hardware platform.
A) HAL ? B) GPIO C) SPI? D) I 2 C
Method shuffle is a member of __________.
a. class Arrays. b. class Collections. c. interface Collection. d. Interface List.
The Cassandra Query Language is the primary language for communicating with Neo4j databases.
a. true b. false