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 1 year, 2 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 9 times
azuretrainer1
1 week, 3 days ago
Great for real-time stream processing, but it requires writing queries and more setup. Can complement detection, but not a minimal-effort solution for anomaly detection alone.
upvoted 1 times
...
...
PeteColag
Highly Voted 1 year 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 8 times
...
marcellov
Most Recent 1 month, 3 weeks ago
Selected Answer: B
B. Azure Stream Analytics While Univariate Anomaly Detection (D) is the concept of detecting anomalies in a single metric like temperature and is simpler than multivariate detection, the best way to minimize development effort in Azure is to use Azure Stream Analytics (B), which provides built-in univariate anomaly detection functions as part of its managed, scalable service. Stream Analytics allows you to process real-time data streams, detect anomalies with simple SQL-like queries, and integrate easily with alerting systems-all without building custom detection logic or managing infrastructure. Therefore, although univariate detection is the right approach conceptually, Azure Stream Analytics is the practical, low-effort solution to implement it end-to-end. Source: AI
upvoted 1 times
...
JituVin
3 months, 2 weeks ago
Selected Answer: B
To monitor temperature data from a data stream and generate alerts for atypical values with minimal development effort, you should include: B. Azure Stream Analytics Azure Stream Analytics allows you to process and analyze real-time data streams with minimal development effort. You can define query logic to detect anomalies and trigger alerts based on the results. This makes it an ideal solution for generating alerts in response to atypical temperature values from your data stream.
upvoted 1 times
...
Mattt
3 months, 2 weeks ago
Selected Answer: D
Because you’re dealing with a single time-series (temperature) and you want minimal development overhead for spotting anomalies, the best answer is: D. Univariate Anomaly Detection.
upvoted 3 times
...
sonstevold
3 months, 3 weeks ago
Selected Answer: C
Confirmed by multiple AI-services
upvoted 1 times
...
syupwsh
3 months, 3 weeks 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
4 months ago
Selected Answer: C
Both ChatGPT and Copilot said.
upvoted 1 times
...
pabsinaz
5 months, 3 weeks 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
5 months, 4 weeks 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 4 times
...
nmlan
6 months, 2 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
6 months, 3 weeks 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
6 months, 3 weeks 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 2 times
...
...
friendlyvlad
6 months, 3 weeks 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 3 times
...
AL_everyday
7 months, 1 week 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
7 months, 2 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
8 months, 1 week ago
Selected Answer: B
Best choice for the streams
upvoted 1 times
...
Afsjoaquim
8 months, 1 week 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
...
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 ...