The analytics feature enables you to show percentiles across groups specified along a specific axis.
Example:
1. Click on the analytics tab
2. Select Percentile
3. You can choose a specific percentile along with other formatting options.
4. Drag a date or non-numeric dimension into the Axis of a column chart


Add percentile lines to monitor daily revenue

Incorrect Answers:
B, D: There are two main percentile functions in Power BI:
PERCENTILE.EXC(column, kth percentile)
PERCENTILE.INC(column, kth percentile)
The first parameter is the column which you want the percentile value for.
The second parameter is the kth percentile where k percentage of values will fall below.
Both formulas use a slightly different algorithm. The second algorithm works for any value of k between 0 and 1 (the 0th and 100th percentile). In the EXC version the data excludes both lower and upper bounds, while INC includes them.
Reference:
https://www.dash-intel.com/powerbi/statistical_functions_percentile.php