0
0
SCADA systemsdevops~10 mins

Why data acquisition captures real-world measurements in SCADA systems - Test Your Understanding

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

Complete the code to read a sensor value using the data acquisition system.

SCADA systems
sensor_value = daq.read([1])
Drag options to blanks, or click blank then click option'
Aread_sensor
Btemperature_sensor
Csensor_id
Doutput_value
Attempts:
3 left
💡 Hint
Common Mistakes
Using a function name instead of the sensor identifier.
Using a variable that does not represent the sensor.
2fill in blank
medium

Complete the code to convert the raw data from the sensor to a real-world value.

SCADA systems
real_value = raw_data [1] calibration_factor
Drag options to blanks, or click blank then click option'
A*
B+
C-
D/
Attempts:
3 left
💡 Hint
Common Mistakes
Adding or subtracting instead of multiplying.
Dividing which would reduce the value incorrectly.
3fill in blank
hard

Fix the error in the code that reads data from the sensor and stores it.

SCADA systems
data = daq.[1](sensor_id)
Drag options to blanks, or click blank then click option'
Astore
Bwrite
Csend
Dread
Attempts:
3 left
💡 Hint
Common Mistakes
Using write or send which are for output.
Using store which is not a method to read data.
4fill in blank
hard

Fill both blanks to create a dictionary that maps sensor names to their real-world values.

SCADA systems
sensor_data = {name: [1] for name, [2] in sensors.items()}
Drag options to blanks, or click blank then click option'
Avalue * calibration
Bvalue
Ccalibration
Dsensor
Attempts:
3 left
💡 Hint
Common Mistakes
Using sensor instead of value in the loop.
Not multiplying by calibration factor.
5fill in blank
hard

Fill all three blanks to filter sensors with values above a threshold and convert them.

SCADA systems
filtered = {name: value[1]cal for name, value in data.items() if value [2] [3]
Drag options to blanks, or click blank then click option'
A*
B>
C10
D+
Attempts:
3 left
💡 Hint
Common Mistakes
Using addition instead of multiplication.
Using less than instead of greater than.
Using a wrong threshold value.