exam questions

Exam AI-102 All Questions

View all questions & answers for the AI-102 exam

Exam AI-102 topic 1 question 66 discussion

Actual exam question from Microsoft's AI-102
Question #: 66
Topic #: 1
[All AI-102 Questions]

You are developing a system that will monitor temperature data from a data stream. The system must generate an alert in response to atypical values. The solution must minimize development effort.

What should you include in the solution?

  • A. Multivariate Anomaly Detection
  • B. Azure Stream Analytics
  • C. metric alerts in Azure Monitor
  • D. Univariate Anomaly Detection
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
TT924
Highly Voted 11 months ago
Selected Answer: B
This is the similar example, I would vote for B. Use case of Stream Analytics Query: Alert to trigger a business workflow Let's make our query more detailed. For every type of sensor, we want to monitor average temperature per 30-second window and display results only if the average temperature is above 100 degrees. https://learn.microsoft.com/en-us/azure/stream-analytics/stream-analytics-get-started-with-azure-stream-analytics-to-process-data-from-iot-devices
upvoted 8 times
...
PeteColag
Highly Voted 9 months, 1 week ago
Selected Answer: C
The key requirements here are that you are doing this from a data stream and that you must limit development. Anomaly detection does not work with datastreams natively, so considerable development work would be required to integrate this functionality. As a result, the correct answer is C and not D.
upvoted 7 times
...
sonstevold
Most Recent 4 days, 1 hour ago
Selected Answer: C
Confirmed by multiple AI-services
upvoted 1 times
...
syupwsh
4 days, 12 hours ago
Selected Answer: D
https://learn.microsoft.com/en-us/azure/ai-services/anomaly-detector/overview#univariate-anomaly-detection Answer is D
upvoted 1 times
...
ceris22962
2 weeks ago
Selected Answer: C
Both ChatGPT and Copilot said.
upvoted 1 times
...
pabsinaz
2 months ago
Selected Answer: B
Azure Stream Analytics offers the most straightforward and efficient solution for real-time temperature monitoring with minimal development effort
upvoted 1 times
...
hamidai102
2 months, 1 week ago
Selected Answer: D
he correct answer is: D. Univariate Anomaly Detection Explanation: Since the system is monitoring temperature data from a data stream, and the goal is to generate alerts based on atypical values (likely unusual temperature readings), Univariate Anomaly Detection is the most suitable solution. Univariate Anomaly Detection focuses on identifying anomalies in a single time-series dataset. In this case, temperature data can be considered a univariate time-series, where the system detects unusual or atypical temperature values based on historical trends or thresholds. This minimizes development effort by using a simple approach to detect outliers in one variable (temperature) without requiring complex multi-variable or machine learning models.
upvoted 3 times
...
nmlan
2 months, 3 weeks ago
Selected Answer: A
At first read, I felt like "temperature data" refers to the broader category of any variables included to monitor temperature (such as humidity, elevation, etc). This is why I noted Multivariate Anomaly Detection. Azure Stream Analytics would require more configuration to build an anomaly detector so this doesn't sound like the best solution for "minimal development effort"
upvoted 1 times
...
3fbc31b
3 months ago
Selected Answer: D
D. Explanation: The solution involves monitoring temperature data, which is typically a single-variable or univariate data stream. The Univariate Anomaly Detection service is ideal because: Focuses on Single Variables: It is optimized to detect anomalies in data streams consisting of a single variable, such as temperature readings. Minimal Development Effort: Azure's Anomaly Detector API includes Univariate Anomaly Detection and provides pre-trained models that require minimal customization or configuration. You only need to feed the data stream into the API and analyze the results. Efficient for Time Series Data: It detects sudden spikes, dips, or trends in time series data, which aligns perfectly with monitoring temperature anomalies.
upvoted 3 times
3fbc31b
3 months ago
Why Not the Other Options? A. Multivariate Anomaly Detection: Multivariate Anomaly Detection is used for scenarios with multiple interdependent variables (e.g., temperature, pressure, and humidity). Since only temperature data is monitored here, this is unnecessary. B. Azure Stream Analytics: Stream Analytics is a powerful tool for real-time stream processing but requires more setup and custom query development. It does not provide prebuilt anomaly detection. C. Metric Alerts in Azure Monitor: Metric Alerts are for monitoring Azure resource metrics. They are not suitable for processing external or custom time series data streams, like temperature readings.
upvoted 1 times
...
...
friendlyvlad
3 months ago
Selected Answer: D
if your primary goal is to detect anomalies and generate alerts with minimal development effort, Anomaly Detection might be the better choice. However, if you need to perform more complex real-time data processing and analytics, Stream Analytics could be more suitable.
upvoted 2 times
...
AL_everyday
3 months, 2 weeks ago
Selected Answer: B
Copoilot: For a solution that monitors temperature data from a data stream and generates alerts in response to atypical values while minimizing development effort, B. Azure Stream Analytics is the most suitable option. Here's why: Azure Stream Analytics provides a fully managed service for real-time data stream processing. It can easily integrate with other Azure services, making it straightforward to set up and scale. Built-in anomaly detection functions help identify outliers in data without the need for extensive custom development.
upvoted 2 times
...
Alan_CA
3 months, 4 weeks ago
Selected Answer: B
I asked Copilot : Overall, Azure Stream Analytics offers a more comprehensive and integrated solution for your requirements, making it easier to set up, maintain, and scale. And : Starting on the 20th of September, 2023 you won’t be able to create new Anomaly Detector resources
upvoted 2 times
...
jafaca
4 months, 2 weeks ago
Selected Answer: B
Best choice for the streams
upvoted 1 times
...
Afsjoaquim
4 months, 3 weeks ago
Selected Answer: C
Option A: Multivariate Anomaly Detection: Designed for detecting anomalies across multiple correlated variables. Since you're monitoring a single variable (temperature), it's unnecessarily complex and increases development effort. Option B: Azure Stream Analytics: Requires writing custom queries and potentially developing custom anomaly detection logic, adding to development effort. It doesn't offer built-in anomaly detection for atypical values out of the box. Option D: Univariate Anomaly Detection: Involves integrating the Anomaly Detector API, which requires additional coding, configuration, and maintenance compared to the straightforward setup of metric alerts in Azure Monitor.
upvoted 1 times
...
AnnaR
5 months ago
NOT A: Multivariate is not suitable for monitoring a single variable such as temperature NOT C: Azure Monitor is mainly used for azure resources, not for monitoring data streams. NOT D: Univariate Anomaly Detection could be suitable, but it does not send an alert in response to atypical values (requires to set up alert manually, but solution should minimize development effort) --> My answer would be B.
upvoted 1 times
...
JakeCallham
6 months, 1 week ago
Selected Answer: C
Anomly does not work with streaming so therefor C is cheaper
upvoted 1 times
nmlan
2 months, 3 weeks ago
Yes, it does https://learn.microsoft.com/en-us/azure/ai-services/anomaly-detector/how-to/identify-anomalies#streaming-detection
upvoted 1 times
...
...
anto69
8 months, 3 weeks ago
Selected Answer: D
ChatGPT says D
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago