Complete the code to define an analog data point in a SCADA system.
analog_point = {'type': '[1]', 'value': 3.3}An analog data point represents continuous values like voltage or temperature, so the type should be 'analog'.
Complete the code to define a digital data point with a boolean value.
digital_point = {'type': 'digital', 'value': [1]Digital data points typically use boolean values like True or False to represent ON/OFF states.
Fix the error in the code to correctly represent a digital data point.
point = {'type': 'digital', 'value': [1]Digital data points should have boolean values like False, not numeric or string values.
Fill both blanks to create a dictionary for an analog data point with a float value.
data_point = {'type': '[1]', 'value': [2]The type must be 'analog' and the value a float like 3.7 for an analog data point.
Fill all three blanks to create a list of mixed data points with correct types and values.
points = [
{'type': '[1]', 'value': [2],
{'type': 'digital', 'value': [3]
]The first point is analog with a float value 5.5, the second is digital with a boolean False value.