Which of the following best describes the primary role of an edge gateway in an IoT system?
Think about how edge gateways reduce latency and bandwidth usage.
Edge gateways collect data from devices, perform local processing to reduce data volume, and send only necessary data to the cloud, improving efficiency.
Given the following Python snippet running on an edge gateway, what is the output?
data = [10, 25, 30, 5, 40] filtered = [x for x in data if x > 20] print(filtered)
Look at the condition inside the list comprehension.
The list comprehension filters values greater than 20, so only 25, 30, and 40 remain.
Arrange the following steps in the correct order for data processing in an edge gateway.
Think about the natural flow from raw data to cloud transmission.
Data is first collected, then filtered and aggregated locally, encrypted, and finally sent to the cloud.
An edge gateway is unable to send data to the cloud. Which of the following is the most likely cause?
Check the gateway's ability to communicate externally.
If the network interface is down, the gateway cannot send data to the cloud, causing connectivity failure.
Which option is the best practice to secure data communication between an edge gateway and the cloud?
Consider strong encryption and authentication methods.
TLS with mutual authentication ensures data is encrypted and both sides verify each other, providing strong security.