0
0
SCADA systemsdevops~10 mins

Analog vs digital data points in SCADA systems - Interactive Practice

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

Complete the code to define an analog data point in a SCADA system.

SCADA systems
analog_point = {'type': '[1]', 'value': 3.3}
Drag options to blanks, or click blank then click option'
Adigital
Bboolean
Cinteger
Danalog
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'digital' instead of 'analog' for continuous data.
2fill in blank
medium

Complete the code to define a digital data point with a boolean value.

SCADA systems
digital_point = {'type': 'digital', 'value': [1]
Drag options to blanks, or click blank then click option'
ATrue
B3.3
C5
D'ON'
Attempts:
3 left
💡 Hint
Common Mistakes
Using numeric values for digital data points.
3fill in blank
hard

Fix the error in the code to correctly represent a digital data point.

SCADA systems
point = {'type': 'digital', 'value': [1]
Drag options to blanks, or click blank then click option'
A3.14
B2.7
CFalse
D'OFF'
Attempts:
3 left
💡 Hint
Common Mistakes
Using strings or numbers instead of boolean for digital points.
4fill in blank
hard

Fill both blanks to create a dictionary for an analog data point with a float value.

SCADA systems
data_point = {'type': '[1]', 'value': [2]
Drag options to blanks, or click blank then click option'
Aanalog
Bdigital
C3.7
DTrue
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing digital type with float value.
5fill in blank
hard

Fill all three blanks to create a list of mixed data points with correct types and values.

SCADA systems
points = [
  {'type': '[1]', 'value': [2],
  {'type': 'digital', 'value': [3]
]
Drag options to blanks, or click blank then click option'
Aanalog
B5.5
CFalse
Ddigital
Attempts:
3 left
💡 Hint
Common Mistakes
Assigning boolean to analog or float to digital incorrectly.