Welcome to TestSimulate

Pass Your Next Certification Exam Fast!

Everything you need to prepare, learn & pass your certification exam easily.

365 days free updates. First attempt guaranteed success.

Microsoft Implementing Analytics Solutions Using Microsoft Fabric (DP-600日本語版) (DP-600日本語) Free Practice Test

Question 1
データフローを含むMicrosoft Fabricテナントをお持ちです。
あなたは新しい意味モデルを探求しています。
Power Query では、次の図に示すように列情報を表示する必要があります。

どの3つのデータビューオプションを選択すべきですか?それぞれの正解は、解決策の一部を示しています。注:
正解ごとに1ポイントが加算されます。

Correct Answer: A,B,E
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 2
セマンティックモデルを含むFabricテナントがあります。このモデルには15個のテーブルが含まれています。
以下の要件を満たすように、末尾が「Key」で終わる各列をプログラムで変更する必要があります。
* 列を非表示にします。
* NullableをFalseに設定します。
* 集計対象を「なし」に設定する
* MDXで利用可能をFalseに設定します。
* その列をキー列としてマークする。
何を使うべきでしょうか?

Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 3
Fabricの倉庫には、SalesOrderDetailという名前のテーブルが含まれています。
SalesOrderDetailには以下の列が含まれています。
販売注文ID
製品ID
注文数量
各行は、販売注文における1つの製品を表します。
以下のT-SQLステートメントがあります。

同一の販売注文に含まれる各製品が、総注文数量に占める割合を計算する必要があります。
<回答の選択肢>にはどの節を使用すべきですか?

Correct Answer: A
Question 4
倉庫を含む Fabric テナントがあります。
一日に何度も。すべてのウェアハウス クエリのパフォーマンスが低下します。 Fabric がウェアハウスで使用されるコンピューティングを抑制しているのではないかと考えられます。
スロットルが発生しているかどうかを識別するには何を使用する必要がありますか?

Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 5
Stage.Customers という名前のテーブルを含むデータウェアハウスがあります。Stage-Customers には、顧客関係管理 (CRM) システムからのすべての顧客レコードの更新が含まれています。顧客ごとに複数の更新がある場合があります。各顧客 ID について、顧客 ID、名前、郵便番号、および最新の行の最終更新時刻を返す T-SQL クエリを作成する必要があります。
コードを完成させるにはどうすればよいでしょうか?回答するには、回答欄で適切なオプションを選択してください。注:正解ごとに1ポイントが加算されます。
Correct Answer:

Explanation:

In the ROW_NUMBER() function, choose OVER (PARTITION BY CustomerID ORDER BY LastUpdated DESC).
In the WHERE clause, choose WHERE X = 1.
To select the most recent row for each customer ID, you use the ROW_NUMBER() window function partitioned by CustomerID and ordered by LastUpdated in descending order. This will assign a row number of 1 to the most recent update for each customer. By selecting rows where the row number (X) is 1, you get the latest update per customer.
References =
Use the OVER clause to aggregate data per partition
Use window functions
Question 6
AnatyticsPOCワークスペースのデータストアに顧客データを取り込むには、どのようなツールを使用することをお勧めしますか?

Correct Answer: B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 7
Fabricテナントには、Modellという名前のセマンティックモデルが含まれています。Model!には、数百万行の出荷データを含むファクトテーブルがあります。
Modellのクエリパフォーマンスと管理性を向上させるには、パーティショニングを有効にする必要があります。この目的を達成するために使用できるツールはどれですか?正解はそれぞれ完全なソリューションを示しています。注:正解1つにつき1ポイントです。

Correct Answer: B,C
Question 8
貴社では、財務部門と営業部門が月次レポート作成に使用する Microsoft Power BI セマンティック モデルを使用しています。このセマンティック モデルには、「売上金額」と「注文数」という 2 つの明示的なメジャーと、動的なビジュアル タイトルのテキストを返す「KPI タイトル」というメジャーが含まれています。
「Time Intelligence」という名前の計算グループを作成し、「Time Calculation」という名前の列を含める必要があります。ソリューションは以下の要件を満たす必要があります。
* SELECTEDMEASURE() を使用して、両方の明示的なメジャーに時間インテリジェンスパターンを適用します。
* 前年比(yoy%)の計算項目のみをパーセンテージで表示します。
何を設定すればよいですか?回答するには、回答エリアで適切なオプションを選択してください。
注:正解ごとに1ポイント獲得できます。
Correct Answer:

Explanation:
Question 9
あなたは湖畔の家を含むFabricテナントを所有しています。
あなたはFabricノートブックを使用して、以下のコードで大きなDataFrameを保存しています。

以下の各記述について、正しい場合は「はい」を選択してください。そうでない場合は「いいえ」を選択してください。
注:正解ごとに1ポイントが加算されます。
Correct Answer:

Explanation:
The results will form a hierarchy of folders for each partition key. - Yes The resulting file partitions can be read in parallel across multiple nodes. - Yes The resulting file partitions will use file compression. - No Partitioning data by columns such as year, month, and day, as shown in the DataFrame write operation, organizes the output into a directory hierarchy that reflects the partitioning structure. This organization can improve the performance of read operations, as queries that filter by the partitioned columns can scan only the relevant directories. Moreover, partitioning facilitates parallelism because each partition can be processed independently across different nodes in a distributed system like Spark. However, the code snippet provided does not explicitly specify that file compression should be used, so we cannot assume that the output will be compressed without additional context.
References =
DataFrame write partitionBy
Apache Spark optimization with partitioning
Question 10
Fabricテナントには、lakehouse1という名前の湖畔の家が含まれています。lakehouse1には、Table1という名前のテーブルが含まれています。
新しいデータパイプラインを作成しています。
外部データをTable1にコピーする予定です。外部データのスキーマは定期的に変更されます。
コピー操作には以下の要件を満たす必要があります。
* Table1を外部データのスキーマに置き換えてください。
* Table1 のすべてのデータを外部データの行に置き換えます。
パイプラインに「データのコピー」アクティビティを追加します。この「データのコピー」アクティビティに対して、どのような設定を行うべきですか?

Correct Answer: C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 11
Fabricワークスペースには、Warehouse!という名前の倉庫が含まれています。Warehouse!には、次のデータが含まれています。

テーブルを非正規化し、結果に ContractType 属性と StartDate 属性を含める T-SQL ステートメントを作成する必要があります。ソリューションは以下の要件を満たす必要があります。
* 契約テーブルの該当する行から属性を含める。
* 従業員テーブルのすべての行が保持されていることを確認してください。
* 従業員が2人を超えるすべての契約タイプについて、契約タイプごとの従業員総数を返します。
この文をどのように完成させればよいでしょうか?回答するには、回答欄で適切な選択肢を選んでください。
注:正解ごとに1ポイントが加算されます。
Correct Answer:

Explanation:

Comprehensive Detailed Explanation
We are tasked with writing a T-SQL query to denormalize the tables Employee and Contract in a Fabric warehouse.
Requirements Breakdown
Include attributes from matching rows in the Contract table
This means we must join Employee and Contract on EmployeeID.
Ensure that all rows from the Employee table are preserved
This requires a LEFT OUTER JOIN from Employee to Contract. If an employee has no contract, we still want the employee record included.
Return the total number of employees per contract type for all contract types that have more than two employees This means we need to:
Group by ContractType
Count distinct EmployeeID
Filter groups where that count > 2.
To filter aggregated results, we use HAVING, not WHERE.
Completed Query
WITH result AS (
SELECT
e.EmployeeID,
e.EmployeeName,
e.EmployeePosition,
c.ContractType,
c.StartDate
FROM Employee AS e
LEFT OUTER JOIN Contract AS c
ON c.EmployeeID = e.EmployeeID
)
SELECT
ContractType,
COUNT(DISTINCT EmployeeID) AS TotalEmployees
FROM result
GROUP BY ContractType
HAVING COUNT(DISTINCT EmployeeID) > 2;
Why This is Correct
LEFT OUTER JOIN ensures all employees are included, regardless of contracts.
HAVING allows filtering aggregated groups by employee counts.
The query returns ContractType, StartDate (as requested in denormalization), and aggregated employee counts.
References
T-SQL JOINs in Microsoft Fabric
Aggregate functions and HAVING clause
Denormalization best practices in Fabric warehouses
Question 12
Warehouse1 という名前の Fabric ウェアハウスがあり、その中に dbo.Product という名前のテーブルがあります。dbo.Product には次の列が含まれています。

T-SQLクエリを使用して、dbo.ProductテーブルにPriceRangeという名前の列を追加する必要があります。この列は、各製品をUnitPriceに基づいて分類する必要があります。ソリューションは以下の要件を満たす必要があります。
* UnitPriceが0の場合、PriceRangeは「転売不可」となります。
* 単価が 50 未満の場合、価格帯は「50 ドル未満」となります。
* UnitPriceが50~250の場合、PriceRangeは「Under $250」となります。
* その他の場合、価格帯は「$250+」です。
クエリをどのように完了すればよいですか?回答するには、適切な値を正しいターゲットにドラッグしてください。各値は、1回、複数回、またはまったく使用しない場合があります。コンテンツを表示するには、ペイン間の分割バーをドラッグするか、スクロールする必要がある場合があります。
注:正解ごとに1ポイントが加算されます。
Correct Answer:

Explanation:

Comprehensive Detailed Explanation
We need to create a computed column PriceRange based on the UnitPrice column in the dbo.Product table.
Step 1: Requirements
If UnitPrice = 0 # " Not for resale "
If UnitPrice < 50 # " Under $50 "
If UnitPrice > = 50 AND UnitPrice < 250 # " Under $250 "
Otherwise # " $250+ "
This matches a CASE expression in T-SQL.
Step 2: CASE Expression Structure
The syntax is:
CASE
WHEN condition THEN result
WHEN condition THEN result
ELSE result
END
Step 3: Apply to Problem
SELECT
Item,
UnitPrice,
PriceRange = CASE
WHEN UnitPrice = 0 THEN ' Not for resale '
WHEN UnitPrice < 50 THEN ' Under $50 '
WHEN UnitPrice > = 50 AND UnitPrice < 250 THEN ' Under $250 '
ELSE ' $250+ '
END
FROM [Warehouse1].[dbo] .[Product];
Step 4: Why This is Correct
CASE starts the conditional evaluation.
ELSE handles the default branch ($250+).
END closes the expression.
Meets all requirements exactly.
References
CASE expression in T-SQL
Computed columns in T-SQL