0
0
SCADA systemsdevops~10 mins

Edge computing in SCADA in SCADA systems - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to deploy an edge node in a SCADA system.

SCADA systems
deploy_edge_node --location [1] --connectivity stable
Drag options to blanks, or click blank then click option'
Acloud_data_center
Bbackup_office
Cfield_site
Dcentral_server
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing central_server or cloud_data_center as edge location.
2fill in blank
medium

Complete the code to configure data filtering on the edge device.

SCADA systems
configure_filter --device_id 101 --filter_type [1]
Drag options to blanks, or click blank then click option'
Ano_filter
Braw_data
Cfull_stream
Dthreshold
Attempts:
3 left
💡 Hint
Common Mistakes
Using raw_data or full_stream sends too much data.
3fill in blank
hard

Fix the error in the edge node update command.

SCADA systems
update_edge_node --node_id 55 --firmware_version [1]
Drag options to blanks, or click blank then click option'
Av1.2.3
B1.2.3
Cversion_1.2.3
Dupdate_latest
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'version_1.2.3' or 'update_latest' causes errors.
4fill in blank
hard

Fill both blanks to set up edge data caching with correct parameters.

SCADA systems
setup_cache --cache_size [1] --cache_expiry [2]
Drag options to blanks, or click blank then click option'
A512MB
B24h
C30m
D1GB
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing too large cache size or too long expiry time.
5fill in blank
hard

Fill all three blanks to define an edge processing rule for temperature data.

SCADA systems
define_rule --sensor [1] --condition [2] --action [3]
Drag options to blanks, or click blank then click option'
Atemp_sensor_7
B>
Csend_alert
Dhumidity_sensor_3
Attempts:
3 left
💡 Hint
Common Mistakes
Using humidity_sensor_3 or wrong condition/operator.