0
0
SCADA systemsdevops~20 mins

Trend charts and historical data in SCADA systems - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Trend Data Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Data Sampling Rate in Trend Charts

In a SCADA system, trend charts display historical data points collected over time. What is the main effect of increasing the data sampling rate on the trend chart?

AIt decreases the number of data points, making the chart less detailed and faster to load.
BIt increases the number of data points, making the chart more detailed but potentially heavier to load.
CIt removes older data points to keep the chart size constant.
DIt changes the color scheme of the trend chart automatically.
Attempts:
2 left
💡 Hint

Think about what happens when you collect data more often.

💻 Command Output
intermediate
1:30remaining
Output of Historical Data Query Command

Given the SCADA command to retrieve temperature data for the last hour:

get_trend_data --tag temperature --duration 1h

Which output correctly shows the expected result format?

A[{"timestamp": "2024-06-01T10:00:00Z", "value": 22.5}, {"timestamp": "2024-06-01T10:05:00Z", "value": 22.7}]
B{"temperature": [22.5, 22.7], "time": ["10:00", "10:05"]}
CError: Command not found
D[22.5, 22.7, 23.0]
Attempts:
2 left
💡 Hint

Look for a list of timestamped values in JSON format.

Configuration
advanced
2:00remaining
Configuring Data Retention Period for Historical Data

Which configuration snippet correctly sets the data retention period to 30 days in a SCADA system's trend data storage?

Aretention_period = "30d"
Bhistory.retention = 30
Cdata_retention_days = 30
Dtrend_data.retention_days = 30
Attempts:
2 left
💡 Hint

Look for a configuration that uses a string with a time unit.

Troubleshoot
advanced
2:00remaining
Troubleshooting Missing Data Points in Trend Charts

A user reports that the trend chart for pressure data shows large gaps with missing data points. Which is the most likely cause?

AThe chart color scheme is set to hide certain data points.
BThe trend chart is configured to show only the last 5 minutes of data.
CThe SCADA system's clock is set to the wrong timezone.
DThe data sampling rate is too low, causing infrequent data collection.
Attempts:
2 left
💡 Hint

Think about what causes gaps in data over time.

🔀 Workflow
expert
2:30remaining
Steps to Export Historical Trend Data for Analysis

Arrange the correct order of steps to export historical trend data from a SCADA system for external analysis.

A1,3,2,4
B2,1,3,4
C1,2,3,4
D3,1,2,4
Attempts:
2 left
💡 Hint

Think about the logical order from accessing the tool to saving the file.