Question 82:
You operate an IoT solution for a plant manufacturing ceramic filter inserts for the automotive industry. The critical part of the technology where the products are being baked in high-temperature ovens. A large number of temperature data is collected from several ovens by sensors. It is important when the average temperature exceeds a certain threshold, an alarm has to be triggered and a reset command to the alert output if the average machine temperature in a 30-second window reaches 200 degrees. <pre class="brush:java;">SELECT `reset` AS command INTO alert FROM temperature TIMESTAMP BY timeCreated GROUP BY TumblingWindow(second,30) HAVING Avg(machine.temperature) > 200 </pre> Will this code fit your purpose?
Answer options:
A.Yes B.No