Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to send a remote start command to the device.
SCADA systems
device.send_command('[1]')
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'stop' instead of 'start' will halt the device.
Using 'status' only checks device state, does not start it.
✗ Incorrect
The command to start the device remotely is start.
2fill in blank
mediumComplete the code to send a remote stop command to the device.
SCADA systems
device.send_command('[1]')
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' will begin operation instead of stopping.
Using 'pause' may not fully stop the device.
✗ Incorrect
The command to stop the device remotely is stop.
3fill in blank
hardFix the error in the command to restart the device remotely.
SCADA systems
device.send_command('[1]')
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'shutdown' will turn off the device without restarting.
Using 'stop' only halts the device without starting it again.
✗ Incorrect
The correct command to restart the device is restart.
4fill in blank
hardFill both blanks to check device status and then send a stop command if running.
SCADA systems
if device.get_status() == '[1]': device.send_command('[2]')
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Checking for 'stopped' status before stopping is illogical.
Sending 'start' command when device is running does not stop it.
✗ Incorrect
Check if device is running, then send stop command to halt it.
5fill in blank
hardFill all three blanks to start the device only if it is stopped and log the action.
SCADA systems
if device.get_status() == '[1]': device.send_command('[2]') logger.log('[3]')
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Starting device when it is already running wastes resources.
Not logging the action misses important audit information.
✗ Incorrect
Check if device is stopped, then start it and log the message Device started remotely.