Solved

Insert the Missing Code in the Following Code Fragment

Question 60

Multiple Choice

Insert the missing code in the following code fragment. This fragment is intended to implement a method to set the state of the object.
Public class Motor
{
Public static final STOPPED = 0;
Public static final PAUSED = 1;
Public static final RUNNING = 2;
Private int motorState;
) . .
Public void stopMotor()
{
________
}
}


A) motorState++;
B) motorState = STOPPED;
C) motorState = PAUSED;
D) motorState = RUNNING;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions