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 Posted / 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 |
Post New Answer View All Answers
What are the types of the main implementing classes in the map interfaces? : java collections
What are the types of java collections? : java collections
What is deque in the java collections framework? : java collections
What are the main classes of the list interfaces? : java collections
What is java collection? : java collections
How do I find jre path in windows?
Hi Friends, i have searched in google but not clear. can you give bank example with synchronized keyword
What are the classes in the java collection framework? : java collections
Which java collection class can be used to maintain the entries in the order in which they were last accessed?
How is hashset maintained in memory by java ?
can u draw class/object diagram for ATM
Hi Friends , am newbie to ajax. For example just consider one account registration - A form contains 8 text fields with submit button. In this form second texbox contains "username " . On right side of text box there is a label box . On clilck action i need to determine user is available or not. Is it possible on clicking label or should i click submit button.
What are the types of interface used in the java collections? : java collections
What are maps interfaces in the java collections? : java collections
Which sorting algorithm is used by collections.sort() in java ?