exam questions

Exam DP-600 All Questions

View all questions & answers for the DP-600 exam

Exam DP-600 topic 1 question 14 discussion

Actual exam question from Microsoft's DP-600
Question #: 14
Topic #: 1
[All DP-600 Questions]

You have a Fabric tenant that contains a warehouse.
You use a dataflow to load a new dataset from OneLake to the warehouse.
You need to add a PowerQuery step to identify the maximum values for the numeric columns.
Which function should you include in the step?

  • A. Table.MaxN
  • B. Table.Max
  • C. Table.Range
  • D. Table.Profile
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
lengzhai
Highly Voted 1 year, 3 months ago
Selected Answer: D
D. Table.Profile https://learn.microsoft.com/en-us/powerquery-m/table-profile
upvoted 38 times
philippevandevyver
10 months ago
Not correct, will not add another step.
upvoted 2 times
...
amar5555
1 year, 1 month ago
you will get summary in that max will include but it doesn't add as power query step so i think it is option b
upvoted 9 times
PazaBIandData
1 year, 1 month ago
Table.Max provides only a row with the max value per a single column. We have multiple of columns. It's d
upvoted 7 times
...
...
...
woliveiras
Highly Voted 11 months, 3 weeks ago
Selected Answer: B
B guys, "you need to add a step..."
upvoted 10 times
woliveiras
11 months, 2 weeks ago
Sorry Guys, I changed my mind. It is the letter D.
upvoted 4 times
...
...
Vulkany
Most Recent 4 months, 1 week ago
Selected Answer: D
I initially thought that the right answer was B, but the question must be answered: “You need to add a PowerQuery step to identify the maximum values of numeric columns.” Table.Max although it can find the maximum value, it is used for a single column and returns a single row based on one column. It doesn't work for several numeric columns at once.
upvoted 2 times
...
pk07
4 months, 2 weeks ago
Selected Answer: D
D. Table.Profile
upvoted 1 times
...
pk07
4 months, 3 weeks ago
Selected Answer: B
Table.Max: The Table.Max function returns the maximum value for a specified column in a table. It is the correct function to use when you need to identify the maximum value for numeric columns.
upvoted 1 times
sajjuh
2 months, 2 weeks ago
We need to identify for multiple columns.
upvoted 1 times
...
...
pk07
4 months, 3 weeks ago
Selected Answer: B
Correct Answer: B. Table.Max Explanation: Table.Max is the appropriate function to use when you need to identify the maximum value in a specific column. You can apply this function to each numeric column in your dataset to find the maximum values. Why Other Options Are Incorrect: A. Table.MaxN: This function is used to get the top N rows, not the maximum value in a column. C. Table.Range: This function is used to select a range of rows, not to find maximum values. D. Table.Profile: While this function provides a summary of the data, including maximum values, it does not allow you to extract or use these maximum values directly in subsequent steps.
upvoted 3 times
...
51eef92
5 months ago
Selected Answer: D
Chose D as it's looking for multiple numeric columns not a single one
upvoted 1 times
...
salini
5 months ago
Selected Answer: D
D Table.Profile: This function provides a statistical summary of a table, including the maximum values for numeric columns, along with other statistics like minimum, average, and count. It is specifically designed to give an overview of the dataset, making it ideal for identifying maximum values for numeric columns. Table.MaxN: Returns the top N rows based on a specified column but does not specifically identify the maximum value across numeric columns. Table.Max: Returns a single row with the maximum value for a specified column but does not provide maximum values for all numeric columns.
upvoted 1 times
...
MuralikumarCh
6 months ago
Selected Answer: B
The correct answer is B. Table.Max. Explanation: Table.Max: This function is specifically designed to calculate the maximum value within a column of a table. It's the most suitable choice for identifying the maximum values for numeric columns in your PowerQuery step. Table.MaxN: This function returns the top N rows of a table. It's not appropriate for calculating maximum values. Table.Range: This function creates a new table containing a range of rows from an existing table. It's not relevant to finding maximum values. Table.Profile: This function provides statistical information about a table, including measures of central tendency and dispersion. While it can be useful for understanding data, it's not the most direct way to find maximum values. By using Table.Max in your PowerQuery step, you can efficiently identify the maximum values for the numeric columns in your dataset, enabling further analysis and decision-making.
upvoted 3 times
...
nappi1
6 months, 1 week ago
it says columnS, so it is D
upvoted 2 times
...
Sowwy1
6 months, 1 week ago
I think it's D.
upvoted 1 times
...
Rakesh16
6 months, 2 weeks ago
Selected Answer: D
Table.Profile
upvoted 1 times
...
semauni
6 months, 4 weeks ago
Selected Answer: D
Option D, Table.Profile, returns all kind of aggregate values for *all* columns. Including the max values. It adds a step to PowerQuery; it is written in M, you're not watching it as part of the Power BI interface. I was convinced it was B, but not that it is TABLE.Max, not List.Max. That is an important difference. This function does the following: "Returns the largest row in the table, given the comparisonCriteria." So you get one row of data, not the list of values you want. Reference: https://learn.microsoft.com/en-us/powerquery-m/table-profile https://learn.microsoft.com/en-us/powerquery-m/table-max
upvoted 2 times
...
DataSturdy
7 months, 3 weeks ago
Selected Answer: D
Table.Profile gives Min,Max,Average,StandardDeviation,Count,NullCount,DistinctCount for all columns Table.Profile(#"last step name") Table.Max gives only the maximum value for the specified column(entire row of the maximum value column) Table.Max(#"last step name","column name")
upvoted 2 times
...
nyoike
9 months, 3 weeks ago
Selected Answer: D
I vote D too. The ask is for maximum value for numeric columnS. Note plural. Table.MaxN and Table.Max will return entire row(s) with max value for a specific column (singlular) so they are out. Table.Profile returns the following stats for all columns where applicable:- minimum maximum average standard deviation count null count distinct count so that fits the bill.
upvoted 2 times
...
philippevandevyver
10 months ago
Selected Answer: B
A & C Incorrect, other logic D -> Will not add another power query step, will only display B it is
upvoted 2 times
...
Pegooli
10 months ago
Selected Answer: D
The reason why Table.Max is not the correct choice is that Table.Max returns the row in a table that contains the maximum value for a specified column, rather than providing the maximum values for all numeric columns.
upvoted 2 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 ...