exam questions

Exam SC-200 All Questions

View all questions & answers for the SC-200 exam

Exam SC-200 topic 3 question 21 discussion

Actual exam question from Microsoft's SC-200
Question #: 21
Topic #: 3
[All SC-200 Questions]

You plan to create a custom Azure Sentinel query that will track anomalous Azure Active Directory (Azure AD) sign-in activity and present the activity as a time chart aggregated by day.
You need to create a query that will be used to display the time chart.
What should you include in the query?

  • A. extend
  • B. bin
  • C. makeset
  • D. workspace
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

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
werbinich
Highly Voted 2 years, 10 months ago
Grouping results can also be based on a time column, or another continuous value. Simply summarizing by TimeGenerated, though, would create groups for every single millisecond over the time range, because these are unique values. To create groups that are based on continuous values, it's best to break the range into manageable units by using bin. Thus correct answer.
upvoted 16 times
...
Murtuza
Most Recent 7 months, 2 weeks ago
Perf | where TimeGenerated > ago(7d) | where Computer == "ContosoAzADDS2" | where CounterName == "Available MBytes" | summarize avg(CounterValue) by bin(TimeGenerated, 1h)
upvoted 1 times
...
chepeerick
8 months, 3 weeks ago
Correct
upvoted 1 times
...
ACSC
1 year, 8 months ago
Selected Answer: B
https://learn.microsoft.com/en-us/azure/azure-monitor/logs/get-started-queries#summarize-by-a-time-column
upvoted 4 times
...
stromnessian
2 years, 5 months ago
Selected Answer: B
B for bin. Simples.
upvoted 3 times
...
Eltooth
2 years, 9 months ago
Correct - bin.
upvoted 2 times
...
tk3
2 years, 11 months ago
correct
upvoted 2 times
...
Task
3 years, 1 month ago
Correct Answer
upvoted 4 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 ...