ExamQuestions.com

Register
Login
Data Engineering on Microsoft Azure (DP-203) Exam Questions

Microsoft

Data Engineering on Microsoft Azure (DP-203)

151 / 240

Question 151:

Your company installs solar power panels which are integrated with IoT devices. These devices send temperature data to the Azure IoT hub. You have written the following query to find the difference in temperature readings every hour in each sensor. 
<pre>SELECT PanelId,
 growth = reading -
XXXX (reading) OVER (PARTITION BY sensorId XXXX (hour, 1))
FROM input</pre>
Which of the following options can fill the unknown part respectively?

Answer options:

A.LAG, WHEN
B.LAG, LIMIT DURATION
C.LAST, LIMIT DURATION
D.LAST, WHEN