exam questions

Exam SC-300 All Questions

View all questions & answers for the SC-300 exam

Exam SC-300 topic 4 question 51 discussion

Actual exam question from Microsoft's SC-300
Question #: 51
Topic #: 4
[All SC-300 Questions]

HOTSPOT
-

You have an Azure subscription.

Azure AD logs are sent to a Log Analytics workspace.

You need to query the logs and graphically display the number of sign-ins per user.

How should you complete the query? To answer, select the appropriate options in the answer area,

NOTE: Each correct selection is worth one point.

Show Suggested Answer Hide Answer
Suggested Answer:

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
penatuna
Highly Voted 9 months, 3 weeks ago
SigninLogs | where ResultType == 0 | summarize login_count = count() by Identity | render columnchart To view and query the logs, you will need to open Log Analytics, click on your workspace and then click on the Logs page. Logs are queried using a language called Kusto Query Language (KQL). Kusto Query Language (KQL) is a powerful tool to explore your data and discover patterns, identify anomalies and outliers, create statistical modeling, and more. The query uses schema entities that are organized in a hierarchy similar to SQLs: databases, tables, and columns. ResultType - The result of the sign-in operation can be 0 for success or an error code for failure. In this question it shows successful logins. The summarize operator is essential to performing aggregations over your data. The summarize operator groups together rows based on the by clause and then uses the provided aggregation function to combine each group in a single row. Find the number of events by Identity using summarize with the count aggregation function. Render operator instructs the user agent to render a visualization of the query results. In this question, it uses column chart.
upvoted 7 times
...
nils241
Highly Voted 1 year, 2 months ago
SigninLogs |where ResultType == 0 |summarize login_count = count() by Identity |render columnchart Test in my lab.
upvoted 5 times
...
Navros
Most Recent 2 months, 2 weeks ago
this question was in exam SigninLogs | where ResultType == 0 | summarize login_count = count() by Identity | render columnchart
upvoted 2 times
...
AK_1234
1 year ago
- Summarize - Render
upvoted 1 times
...
kanag1
1 year, 2 months ago
Correct SigninLogs | where ResultType == 0 | summarize login_count = count() by Identity | render columnchart
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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago