Write a interface "CarOperations" with the following
methods
void turnOnEngin()
void turnOffEngin()
void turnOnLigths()
void turnOffLights()
void turnLeft()
void turnRight()
void accelerate()
void deaccelerate()
void putBreaks()
void releaseBreaks()
Answer / lopus pmj
interface CarOperations{
void turnOnEngin();
void turnOffEngin();
void turnOnLigths();
void turnOffLights();
void turnLeft();
void turnRight();
void accelerate();
void deaccelerate();
void putBreaks();
void releaseBreaks();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
How is hashset maintained in memory by java ?
Which interface does java.util.hashtable implement?
What is difference between Application Server and Web Server?
What is the use of the list interface in the java collection? : java collections
How to implement or use the singleton class in java?
what is the IDE that you have used to write your java programs?
2 Answers Inforica, Interface Software,
what is the difference between through and throws?
How do you debug your java program?
what protocols does JNDI provide an interface to?
what debugging tool that can be used to debug the java programs?
what are advantages of HQL? what are advantages of Native SQL? what are advantages of Criteria API?
2. Write a interface "Car" with the following methods void setName(String) String getName() void setColor(String) String getColor() void setModel(long) long getModel()