Question Implement the following class diagrams in Java. Print out what tasks do
ID: 3551380 • Letter: Q
Question
Question
Implement the following class diagrams in Java. Print out what tasks does an objectin the doWork() method. For example, a student object will do
Explanation / Answer
package interfaces;
public interface Displayable {
void display();
}
package interfaces;
public interface Inputable {
void getInput();
}