🌍 All Study GuidesπŸ“Š DashboardπŸ“° BlogπŸ’‘ About
Coursera Microsoft Power BI Data Analyst β€’ STUDY MODE

Practice Quiz

QUESTION 1 OF 26

When a connector in Microsoft Power BI does not support DirectQuery mode, which of the following statements is true?

A
All connectors support DirectQuery mode.
B
The connector will default to Import mode.Correct Answer
C
The connector will default to Dual mode.
QUESTION 2 OF 26

At the beginning of the data analysis process, which of the following activities are important to ensuring a successful analysis outcome? Select all that apply.

A
Identifying the required data for the analysisCorrect Answer
B
Inspecting the data to ensure it meets requirementsCorrect Answer
C
Connecting to the data sourcesCorrect Answer
D
Identifying which data sources can provide the required dataCorrect Answer
QUESTION 3 OF 26

Which of the following storage modes will copy data to Microsoft Power BI? Select all that apply.

A
Dual modeCorrect Answer
B
DirectQuery mode
C
Import modeCorrect Answer
QUESTION 4 OF 26

Which of the following are the benefits of using a shared dataset? Select all that apply.

A
The dataset is accessible at high speeds.
B
The dataset acts as a single source of truth.Correct Answer
C
The dataset can scale as the organization grows.Correct Answer
D
The dataset is accessible from both office and remote locations.Correct Answer
QUESTION 5 OF 26

True or False: A shared dataset is more secure than a local dataset.

A
True
B
FalseCorrect Answer
QUESTION 6 OF 26

Which of the following categories are assessed by the Exam PL-300? Select all that apply.

A
Prepare and model the dataCorrect Answer
B
Import and visualize the data using dataflows
C
Visualize and analyze the dataCorrect Answer
D
Deploy and maintain assetsCorrect Answer
QUESTION 7 OF 26

Which of the following is considered a key responsibility of a data analyst? Select all that apply.

A
Identify which data is requiredCorrect Answer
B
Create the required data
C
Connect to the data sourcesCorrect Answer
D
Identify which data sources can provide the dataCorrect Answer
QUESTION 8 OF 26

Which of the following storage modes will store data in Microsoft Power BI? Select all that apply.

A
DirectQuery mode
B
Import modeCorrect Answer
C
Dual modeCorrect Answer
QUESTION 9 OF 26

Which of the following data profiling tools allows you to inspect the percentage of valid, error, and empty data in a column?

A
Column profile
B
Column qualityCorrect Answer
C
Column distribution
QUESTION 10 OF 26

You’re preparing a dataset for import into Microsoft Power BI and have accidentally changed a column to the wrong data type. What is the next action you can take to correct the mistake? Select all that apply.

A
Edit the Changed Type step in the Applied Steps list.Correct Answer
B
Append a new step to the Applied Steps list to change the data type.
C
Remove the step from the Applied Steps list.Correct Answer
QUESTION 11 OF 26

True or False: Column profile displays the minimum and maximum values within the first 1000 rows for a specific column.

A
TrueCorrect Answer
B
False
QUESTION 12 OF 26

You are importing a dataset of 10 rows that contains a Date type column. One of the values in the Date column is Bicycle. Which of the following statements is correct? Select all that apply.

A
Column quality will show 10% of values as Error.Correct Answer
B
You can replace the value using the Replace Values feature.
C
You can replace the value using the Replace Errors feature.Correct Answer
D
Column profile will show 10% of values as Error.
QUESTION 13 OF 26

True or False: Distinct values refer to the number of values that only occur once in the dataset.

A
True
B
FalseCorrect Answer
QUESTION 14 OF 26

In which of the following scenarios can you use parameter values? Select all that apply.

A
To filter data dynamically from a data sourceCorrect Answer
B
To dynamically add a new visualization to a report
C
To dynamically switch between a test and production data sourceCorrect Answer
D
To dynamically append a value to the dataset
QUESTION 15 OF 26

Which of the following are limitations that must be considered when using dataflows?

A
There is limited visibility of dependencies between dataflows.Correct Answer
B
To refresh more than 10 dataflows, a Premium subscription is required.Correct Answer
C
The maximum number of linked dataflows is 32.Correct Answer
D
Dataflows are limited to small volumes of data.
QUESTION 16 OF 26

You are importing a dataset containing 500 rows. Which of the following should be validated before importing the data? Select all that apply.

A
Column Distribution shows all values are unique.
B
Column Profile shows that the total rows is equal to 500.Correct Answer
C
Column Quality shows data is 100% valid.Correct Answer
D
Column Data Types are correct.Correct Answer
QUESTION 17 OF 26

Why is it important to ensure that data is good quality? Select all that apply.

A
To optimize visualizations
B
To ensure effective decision-makingCorrect Answer
C
To ensure correct column data types
D
To help ensure accurate reportingCorrect Answer
QUESTION 18 OF 26

The sales team at Adventure Works has two tables of data for tracking bicycle sales: Sales and Product. Each row in the Sales table is associated with one of the bicycles in the Product table. Which of the following cardinalities is most suitable between the Sales and the Product table?

A
Many-to-many
B
One-to-one
C
Many-to-oneCorrect Answer
QUESTION 19 OF 26

The inventory team at Adventure Works has two tables of data for tracking inventory levels: Stock and Product. If a product is not in stock, there is no row in the Stock table for the product. The team wants to merge the tables into a single table containing products that are in stock. If Stock is the left table and Product is the right table, which of the following join types will achieve the desired outcome? Select all that apply.

A
Inner JoinCorrect Answer
B
Left Outer JoinCorrect Answer
C
Right OuterJoin
D
Full Outer Join
QUESTION 20 OF 26

True or False: When performing an append query, the columns of both tables must be the same.

A
True
B
FalseCorrect Answer
QUESTION 21 OF 26

You are importing a data source containing two columns: SalePrice and Cost. You need to create a calculated column to represent the Profit. Which of the following DAX queries will achieve the desired result?

A
Profit = SalePrice / Cost
B
SalePrice / Cost
C
SalePrice – Cost
D
Profit = SalePrice – CostCorrect Answer
QUESTION 22 OF 26

True or False: Reducing columns and rows will reduce the required storage space for a table.

A
TrueCorrect Answer
B
False
QUESTION 23 OF 26

You need to create a calculated column for the tax amount per sale. The tax amount is 25% of the SalesAmount column. Which of the following DAX formulas will create the column?

A
0.25 * SalesAmount
B
TaxAmount = 0.25 * SalesAmount
C
TaxAmount = 25 * SalesAmountCorrect Answer
D
25 * SalesAmount
QUESTION 24 OF 26

You have created a duplicate query in Microsoft Power BI from a query that contained transformations. Which of the following statements is true? Select all that apply.

A
Transformations copied from the original query will execute in both queries.Correct Answer
B
Changes to transformations in the original query will not impact the duplicate query.Correct Answer
C
Changes to transformations in the original query will automatically update the duplicate query.
D
Transformations copied from the original query will execute only in the original query.
QUESTION 25 OF 26

You have a Product table as a left table and a Category table as a right table. You want to merge these tables so that you have a table containing only products and each product row containing its category name or null. Which of the following joins is most suitable?

A
Left Outer JoinCorrect Answer
B
Inner Join
C
Right Outer Join
D
Full Outer Join
QUESTION 26 OF 26

Adventure Works’ head office must keep track of employee keycards. For security reasons, each employee can only have one keycard. There are two tables: Employees and Keycards. What is the most suitable relationship for these two tables?

A
Many-to-many
B
Many-to-one (Employees to Keycards)
C
One-to-oneCorrect Answer
D
One-to-many (Employees to Keycards)
E
Google Advanced Data Analytics
F
Google Cybersecurity Professional Certificate
G
Meta Marketing Analytics Professional Certificate
H
Google Digital Marketing & E-commerce Professional Certificate
I
Google UX Design Professional Certificate
J
Meta Social Media Marketing Professional Certificate
K
Google Project Management Professional Certificate
L
Meta Front-End Developer Professional Certificate

Ready to test your recall?

When a connector in Microsoft Power BI does not support DirectQuery mode, which of the following statements is true?

A
All connectors support DirectQuery mode.
B
The connector will default to Import mode.
C
The connector will default to Dual mode.

How confident are you in this answer?