0% found this document useful (0 votes)
63 views88 pages

PL 2

Uploaded by

surobitabanerjee
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
63 views88 pages

PL 2

Uploaded by

surobitabanerjee
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 88

Question 1:

Here is an IT Spend Analysis report hosted on a shared capacity by


Obvience in partnership with Microsoft.

Some users complain that the report is slow to load. You use the
performance analyzer to examine the performance of individual report
elements. You observe that the Other tasks require an inordinate amount
of time compared to DAX query or Visual display tasks.

From the performance analyzer learnings, how would you fix this issue?
Note: The report is a .pbix file of approximately 850 MB.
Your manager asked you to create a quick measure for the weekly rolling
average to smooth out daily fluctuations.
How would you complete the quick measure?
Question 24:
This question is part of repeated scenario questions that contain the same
stem but with a different solution for each question. You need to identify if
the given solution solves a particular problem. Each set of repeated
scenario questions might contain either none, one, or many solutions.
You have a simple data model with the Product & the Sales table. You
have to compute the highest total sales value for any product each
month.
Solution: You write the below DAX formula:

1. Highest sales value for any Product =


2. MAXX (
3. 'Product',
4. SUMX ( Sales, Sales[Quantity] * Sales[Unit Price] )
5. )

Does the solution meet the stated goal? – yes / No


Solution: You write the below DAX formula:

1. Highest sales value for any Product =


2. MAXX (
3. 'Product',
4. SUMX ( RELATEDTABLE ( Sales ), Sales[Quantity] * Sales[Unit Price] )
5. )

Does the solution meet the stated goal?


Solution: You write the below DAX formula:
1. Highest sales value for any Product =
2. MAXX (
3. 'Product',
4. CALCULATE ( SUMX ( Sales, Sales[Quantity] * Sales[Unit Price] ) )
5. )

Solution: You write the below DAX formula:

1. Highest sales value for any Product =


2. MAXX ( 'Product', CALCULATE ( [Total Sales] ) )

Does the solution meet the stated goal?


Note: The measure [Total Sales] is defined as SUM ( Sales[Sales
Amount] )
Solution: You write the below DAX formula:

1. Highest sales value for any Product =


2. MAXX ( 'Product', [Total Sales] )

Does the solution meet the stated goal?

Question 29:
The HR analytics team at Canva has prepared the below New Hire
Report in Power BI.

If an HR manager selects any gender from the pie chart, the following
interactions should happen on other visuals in the report:
1. The column chart should display the new hire data of all the regions for
the selected gender.
2. The line chart shall show the nature of employment data every month
for the selected gender.
3. The clustered column chart should display a section of new hires every
month for the selected gender.
How would you configure the interactions between the visuals?

Question 31:
You have trading data that has the stock trade details across several
months. The stock deals contain data at the granularity of a minute,
captured by the DateTime column of type Date/time.

How would you o ptimize the column storage


while still retaining all the relevant information?

Question 32:
You need to create the visual below to enable analysis of last year’s sales
value across different dimensions like City, Sales Guy, Distribution, and
Vendor.
This AI visual considers all available fields for the Sales Guy Z in Chennai
city and drills down to get the lowest sales value.
Question 9:
From the AdventureWorks Data warehouse, you import the below tables
into Power BI Desktop.

You have to analyze Reseller Sales for each Sales Territory. How would
you configure the relationship between Dim Geo and Dim Territory?

Question 10:
You import the below Orders table in Power BI, which has some null
values in the Order Value column.

Question 11:
Sugar Paper LA sells stationery items for its US customers. Their sales
managers have to visualize how the percentage of units sold for each of
the four products (Eraser, Highlighter, Paper clip, & Stapler) contribute to
the total units sold by the company in the last seven days.
Question 14:
You have a Sales table that has sales transactions.

You have to find the percentage of transactions performed by non-unique


customers. Which data preview tool in Power Query is the most suitable
choice?
Question 15:
You import a Customer Purchases JSON file into Power BI Desktop. Below is
the structure of the JSON file, with some customers purchasing a different
number of products.

When you import this JSON file into Power BI, the Source step is a List of
Records.

Rearrange the remaining order of steps to flatten out the JSON file into a
Power BI table.
Question 16:
The users in an organization access the company’s financial dashboard in
Power BI from the web.
The users accessing data from a mobile device should view all the
dashboard tiles except those on sales/profits. Select and order three steps
you would perform to create a mobile dashboard layout that displays the
information in the best possible way.
Question 17:
You create the below Power BI KPI visual to compare this year’s sales to
the previous year’s sales and to analyze the company's sales
performance. The fields used for Indicator, Trend axis, and Target
goals are shown in the representation below.

where Total Sales and Sales Last Year are measures defined by the
following DAX formulas:

1. Total Sales =
2. CALCULATE ( SUM ( Sales[Sales Amount] ) )
1. Sales Last Year =
2. CALCULATE ( [Total Sales], PREVIOUSYEAR ( 'Date'[Date] ) )

Why do you think the goal value is blank?

Question 18:
You have a Power BI column chart that displays sales across different
countries based on a transactional data store.
When a user places the cursor on any individual column in the column
chart, the visual should display additional data points like Average Units
Sold, Highest discount offered.
How would you achieve this objective?

Question 19:
You import the below data that displays the number of units sold of
various products across different branches.

You need to apply Power Query transformation steps and shape the data
in the below format:
Select the steps you would apply in the correct order.
Question 24:
You have a transactional Sales table with data of orders fulfilled by a
company for several vendors on a single day (with the below schema).

Note: Vendor information is confidential.

In the Power BI model, you have to load the product and the number
of Units Sold of the biggest order in each product category.
To answer, move the appropriate actions from the list of actions to the
answer area and arrange them in the correct order.
Question 25:
This question is part of repeated scenario questions that contain the same
stem but with a different solution for each question. You need to identify if
the given solution solves a particular problem. Each set of repeated
scenario questions might contain either none, one, or many solutions.
You have to calculate the Quarter-to-date sales values from
the Sales table. Below is the given data model.
Solution: You perform the following steps:
a. Create a relationship between the Date column in the Date table and
the Order Date column in the Sales table
b. Mark the Date table as a date table.
c. You create the measure Sales QTD = CALCULATE([Sales Amount],
DATESQTD('Date'[Date]))

Do the above steps help you to calculate the QTD sales values? Yes/No
Question 26
Solution: You perform the following steps:
a. Create a relationship between the date column in the Date table and
the Order Date column in the Sales table
b. You do not Mark the Date table as a date table.
c. You create the measure Sales QTD = CALCULATE([Sales Amount],
DATESQTD('Date'[Date]))
Do the above steps help you to calculate the QTD sales values?

Question 27
Solution: You perform the following steps:
a. Create a relationship between the Date Key column in the Date table
and the Order Date Keycolumn in the Sales table
b. Mark the Date table as a date table.
c. You create the measure Sales QTD = CALCULATE([Sales Amount],
DATESQTD('Date'[Date]))

Do the above steps help you to calculate the QTD sales values?
Question 28
Solution: You perform the following steps:
a. Create a relationship between the Date Key column in the Date table
and the Order Date Keycolumn in the Sales table
b. You do not Mark the Date table as a date table.
c. You create the measure Sales QTD = CALCULATE([Sales Amount],
DATESQTD('Date'[Date]))

Do the above steps help you to calculate the QTD sales values?
Question 29:
This question is part of repeated scenario questions that contain the same
stem but with a different solution for each question. You need to identify if
the given solution solves a particular problem. Each set of repeated
scenario questions might contain either none, one, or many solutions.
You have to calculate the Quarter-to-date sales values from
the Sales table. Below is the given data model.

Solution: You perform the following steps:


a. Create a relationship between the Date Key column in the Date table
and the Order Date Keycolumn in the Sales table
b. You do not mark the Date table as a date table.
c. You create the measure

1. Sales QTD =
2. CALCULATE (
3. [Sales Amount],
4. DATESQTD ( 'Date'[Date] ),
5. REMOVEFILTERS ( 'Date' )
6. )

Do the above steps help you to calculate the QTD sales values? Yes / No
Question 31:
Below is the Key influencer chart for customer feedback provided by
Microsoft.
What does 2.57x in the green circle indicate?

Question 32:
You create the below data model in Power BI.
The Permissions table defines the Account Types that individual
employees can access.

Select and order the actions you need to perform to ensure that dynamic
row-level security works for users logged into Power BI.
Note: A security role is created on the Permissions table with the DAX
expression: [User Name] = USERPRINCIPALNAME ()

Question 33:
You have a US population dataset with two columns: US State and
Population.
You need to create the below word cloud in Power BI Desktop with highly
populated states appearing bigger in the text.

What would you use in the Values well for the visual?

Some of the names of the US states are not displayed correctly. For
example, instead of the state of New York, the visual displays New, and
York separately. What would you do to fix this problem?
Question 34:
Sam creates Power BI courses on Udemy. He floats a registration form and
invites his students to fill up their details (City, State, Power BI work exp.,
Certification status, workshop interest) for the upcoming workshops across
India. From the data, he creates the below Power BI report.

For the live workshops, he travels across India. Whenever he lands in any
Indian state, his Power BI mobile app should display only the records of all
cities in the state.
Which of the following should he create in the Power BI report?
Question 3:
You have a dataset on the bulk orders your company received from across
India via different Sales Channels.
You have to create a transformation query for the No of bulk orders
received from each City and Sales channel. Which of the following
options would you choose?

Question 4:
This question is part of repeated scenario questions that contain the same
stem but with a different solution for each question. You need to identify if
the given solution solves a particular problem. Each set of repeated
scenario questions might contain either none, one, or many solutions.
You have a data model with the Date table related to the Offline
Sales table by columns of date data type (Date[Date] -> 'Offline
Sales'[Order Date]). The Date table is marked as a date table.
Goal: You have to use the appropriate date field to create a quick
measure for calculating the Month-over-month change of the Sales
Amount.

Solution: You use the Date column from the Date table in the Date field.

Does the solution meet the stated goal? Yes /No


Solution: You use the Order Date column from the Offline Sales table in
the Date field.
Does the solution meet the stated goal? Yes/ No
Solution: You use the Due Date column from the Offline Sales table in the
Date field.
Does the solution meet the stated goal? Yes/ no
Question 12:
You work with a lite version of the IT Spend Analysis report with just three
visuals created by Obvience.

Some users complain that the visual Var Plan by Country/Region is


slow to load. You use the performance analyzer to examine the
performance of the visual. You observe that the Other tasks require an
inordinate amount of time compared to DAX query or Visual display tasks.
Question 13:
Your colleague works with a data model to analyze the performance of the
company’s offline stores.
So, he creates a KPI visual to compare how the revenue in the current
quarter compares to the revenue from the previous quarter.
The below representation shows the measures/fields used to build the KPI
visual.

But there is something off with the visual. The KPI displays a much higher
value (33859) than the goal (Revenue Last Quarter). But you cannot
observe this behavior in the trend chart in the background (which is
continuously decreasing each quarter).
To debug the issue, you check the underlying data for the visual.
What could be wrong with the visual?

Note:
1. Offline Store Revenue table contains historical (at least four years)
revenue data for the company’s offline stores.
2.
1. Revenue Last Quarter =
2. IF (ISBLANK([Total Revenue]), BLANK(), CALCULATE ( [Total
Revenue], PREVIOUSQUARTER( 'Date'[Date] ) ) )

Question 14:
You have a Sales table that has sales transactions.
You have to find the percentage of transactions with empty Product
ID values. Which data previewtool in Power Query is the most suitable
choice?
Question 17:
Here is a sample data model.

You create the below Power BI report.


You need to design the Sales Value measure used in the table visual. This
measure:
1. Should display empty values only if the report is filtered by
the Date field from the Dates table.
2. Should honor any other filter and display [Total Sales] values if the
report is filtered/sliced by other fields in the model.

How would you complete box 1, box 2, and box 3 respectively for
the Sales Value measure?
Question 19:
For their new product line, the company Johnson & Johnson has created a
Power BI model with a City (only US cities) and an Order table. They have
not created any relationship between the two tables.
The company can receive orders from multiple clients in a city. You need
to display the below information in a Power BI report:

Requirement 1: The count of cities where at least an order is placed for


each State Province in January 2015.
Requirement 2: The all-time percentage contribution of a State
Province to the total quantities ordered in the US.

How would you configure the relationship from the Order table to
the City table?
Question 20:
Sister’s Restaurant is a fine dining restaurant in India. They connect to
multiple data sources to develop a Power BI dashboard for analyzing the
restaurant’s performance.
Below is the data lineage diagram for the dashboard.
Based on the above representation, Choose Yes if the statement is correct.
Else, choose No.
Question 21:
You have a Work Orders dataset that contains details of past work orders
serviced by a company across different districts. Below is a matrix visual
displaying district-wise sales information.

In this visual, you have to add a measure to display the sales for the North
district only, while leaving the sales of other districts a blank value. Which
DAX formula would you use? Select two options.
Note:
1. Total Sales =
2. SUM ( 'Work Orders'[Sales] )

Question 22:
I host a website ravikirans that provides certification study guides for
different Microsoft, AWS & GCP certifications. I have daily data on the
number of hits (pageviews) for each study guide in the first week of the
year 2022.

Below is a Power BI table showing the aggregation (SUM) of pageviews for


each study guide.
In the above table, you have to format/color the Study Guide (column)
whose average pageviews are greater than 80. How would you configure
the conditional formatting settings?
Question 23:
You are a project manager, and you have to track planned vs. actual hours
for the project deliverables each sprint. How would you set up the KPI
visual?

Assumption 1: Time overrun leads to cost overrun for the client and is
not desirable.

Note 1: A sprint runs for one week; the project is six months in duration.

Question 24:
Read the below information and answer the questions that are part of the
case study.
Below is the sample data of a popular affiliate marketer from India. The
dataset contains information on the traffic (Clicks) and Affiliate Income
(Sales Amount) he generates from different advertisers via his blog.

You have created two report pages in Power BI Desktop.


The report Clicks by Advertiser has a column chart displaying the number
of clicks for each Advertiser. There is also an Affiliate channel slicer in this
report.
The report Sales by Advertiser has a bar chart displaying the Sales
Amount for each Advertiser. There is also a Date slicer in this report.

You have to ensure that when a business user filters the first report page
by any Affiliate channel, the same filters apply to the second report page
as well. Which of the following options would you choose?
Question 25:
Read the below information and answer the questions that are part of the
case study.
Below is the sample data of a popular affiliate marketer from India. The
dataset contains information on the traffic (Clicks) and Affiliate Income
(Sales Amount) he generates from different advertisers via his blog.

You have created two report pages in Power BI Desktop.


The report Clicks by Advertiser has a column chart displaying the number
of clicks for each Advertiser. There is also an Affiliate channel slicer in this
report.
The report Sales by Advertiser has a bar chart displaying the Sales
Amount for each Advertiser. There is also a Date slicer in this report.

Some records in the dataset have unknown values in the Affiliate


Channel column [Observe the (blank) value in the Affiliate Channel slicer
above].
So, you apply a visual-level filter to filter out the blank value in the slicer.
You have to ensure that the Date slicer (on the second report page)
displays only the dates that do not have any blank values for Affiliate
Channel.
What two actions would you do?
Note: You have already synced both the slicers.

Question 26:
Read the below information and answer the questions that are part of the
case study.
Below is the sample data of a popular affiliate marketer from India. The
dataset contains information on the traffic (Clicks) and Affiliate Income
(Sales Amount) he generates from different advertisers via his blog.
You have created two report pages in Power BI Desktop.
The report Clicks by Advertiser has a column chart displaying the number
of clicks for each Advertiser. There is also an Affiliate channel slicer in this
report.
The report Sales by Advertiser has a bar chart displaying the Sales
Amount for each Advertiser. There is also a Date slicer in this report.

You receive a new request from a stakeholder to display Year values on


slicers in both the report pages. You have already replaced the Date
values on the 2nd slicer with Year values.
What two actions would you perform to ensure that the other slicer
automatically updates with Year values?
Note: You have already synced both the slicers.

Question 27:
Read the below information and answer the questions that are part of the
case study.
Below is the sample data of a popular affiliate marketer from India. The
dataset contains information on the traffic (Clicks) and Affiliate Income
(Sales Amount) he generates from different advertisers via his blog.

You have created two report pages in Power BI Desktop.


The report Clicks by Advertiser has:
· A column chart displaying the number of clicks for each Advertiser.
· An Affiliate Channel slicer.
· In addition, you added a Line chart that displays Clicks by Year
The report Sales by Advertiser has a bar chart displaying the Sales
Amount for each Advertiser. There is also a Date slicer in this report.

What two actions would you perform to ensure that if a business user
selects any date in the Date slicer, all visuals on the first report page,
except the Line chart, are filtered?
Note: You have NOT synced both the slicers yet.
Question 28:
Read the below information and answer the questions that are part of the
case study.
Below is the sample data of a popular affiliate marketer from India. The
dataset contains information on the traffic (Clicks) and Affiliate Income
(Sales Amount) he generates from different advertisers via his blog.

You have created two report pages in Power BI Desktop.


The report Clicks by Advertiser has:
· A column chart displaying the number of clicks for each Advertiser.
· An Affiliate Channel slicer.
· In addition, you added a Line chart that displays Clicks by Year
The report Sales by Advertiser has a bar chart displaying the Sales
Amount for each Advertiser. There is also a Date slicer in this report.

What two actions would you perform to ensure that if a business user
selects any date in the Date slicer, all visuals on the first report page,
except the Line chart, are filtered?
Note: You have synced both the slicers.
Question 30:
You import data into Power BI to perform market basket analysis for
analyzing products commonly purchased in the same order. Below is the
dataset schema.
Based on the dataset and the problem, answer the following statements. If
the given statement is correct, choose Yes. Else choose No.

Note 1. An order can have multiple transactions.


3. Some column names like Sales Order Number and Sales Order Line
Number have the same semantics as that in the familiar
AdventureWorks data warehouse.

Question 31:
An employee works with a data model with tables and relationships
defined below.

He creates a 2-column calculated table [Product subcategory, Average


Sales] that returns only the product subcategories whose average sales
are higher than the average sales of all the products. He has to complete
the below DAX expression:
Fill in the given boxes with the most appropriate choices.

Question 32:
Given below is an organization’s sales report for the last financial year.
Which of the following actions would you take to point out sales trends
and highlight key takeaways from the entire report? You should be able to
slice and dice the resulting information from any existing report visual.

Question 33:
You have a table imported into Power BI Desktop that contains the
columns as shown below:

Select a DAX formula that:


a. Creates a summary table (a calculated table) of the given columns.
b. Includes one grand total row of sales for all Continents, Countries, and
Colors.

Question 34:
You create a report in Power BI Desktop and publish it to the Power BI
service. What export data settings should you use in Power BI Desktop
and Power BI service to ensure that users cannot export data from any
visual on the report in Power BI service?

Power BI Desktop export data settings:

Power BI Service export data settings:


Select two possible options.

You might also like