Microsoft Implementing Analytics Solutions Using Microsoft Fabric (DP-600 Korean Version) - DP-600 Korean Exam Practice Test

귀하는 contoso.com이라는 이름의 Microsoft Entra 테넌트와 [email protected]이라는 이름의 외부 사용자를 보유하고 있습니다.
Workspace1이라는 Fabric 워크스페이스가 있으며, 이 워크스페이스에는 Model!이라는 시맨틱 모델과 Report 1이라는 보고서가 있습니다. [email protected]은 Report1에 대한 액세스 권한을 가지고 있습니다.
DAX Studio를 사용하여 고급 의미 모델링을 제공하려면 XML 분석(XMLA) 엔드포인트에 대한 읽기/쓰기 권한을 활성화해야 합니다.
사용자 @fabrikam.com에게 DAX Studio를 사용하여 연결할 수 있는 URL을 제공해야 합니다.
URL을 어떻게 완성해야 할까요? 정답을 선택하려면 답변란에서 적절한 옵션을 고르세요.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:
시맨틱 모델을 포함하는 Fabric 테넌트가 있습니다.
보고서 작성자가 암시적 측정값을 사용하여 시각화를 채우지 못하도록 방지해야 합니다.
목표 달성을 위해 사용할 수 있는 두 가지 도구는 무엇입니까? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답 하나당 1점입니다.

Correct Answer: B,D Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
연구 부문 의미 모델에 대한 계산 그룹을 구현하려면 무엇을 사용해야 할까요?

Correct Answer: D Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
귀하는 창고를 포함하는 Fabric 테넌트를 보유하고 있습니다.
데이터플로우를 사용하여 OneLake에서 데이터웨어하우스로 새 데이터셋을 로드합니다.
숫자 열의 최댓값을 찾으려면 Power Query 단계를 추가해야 합니다.
해당 단계에 어떤 함수를 포함시켜야 할까요?

Correct Answer: D Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
Workspace " !"라는 이름의 워크스페이스가 포함된 Fabric 테넌트가 있습니다. XMLA 엔드포인트를 사용하여 Model 1이라는 이름의 시맨틱 모델을 배포할 계획입니다.
모델 배포를 최적화해야 합니다! 솔루션은 모델 배포에 걸리는 시간을 최소화해야 합니다. Workspace1에서 무엇을 해야 할까요?

Correct Answer: B Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
DW1이라는 이름의 웨어하우스를 포함하는 Fabric 워크스페이스가 있습니다. DW1에는 다음과 같은 테이블과 열이 포함되어 있습니다.

연도별 및 제품별 주문량을 요약해야 합니다. 각 행에는 모든 제품의 연간 주문량 합계가 포함되어야 합니다.
T-SQL 문을 어떻게 완성해야 합니까? 답하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:

Comprehensive Detailed Explanation
We need to write a query that summarizes order quantities by year and product, and also include the yearly total for all products in each row.
Step 1: What the query needs
Extract the year from SalesOrderDetail.ModifiedDate.
Join with the Product table to get the product name.
Aggregate with SUM(OrderQty).
Return grouped data by year and product, with an additional subtotal row per year (all products combined).
Step 2: Evaluate the SELECT Clause
We must extract the year using:
YEAR(so.ModifiedDate) AS OrderDate
This converts the ModifiedDate column into a year value for grouping.
Step 3: Evaluate the GROUP BY options
CUBE(YEAR, P.Name) # Produces all combinations of year totals, product totals, and grand totals. Too many combinations, not required.
GROUPING SETS # Could achieve the result but requires explicitly listing the sets. Less direct.
ROLLUP(YEAR, P.Name) # Produces grouping by (Year, Product) and then a subtotal per Year. Exactly what is required.
YEAR only # Would group only by year, losing per-product breakdown.
Correct: ROLLUP(YEAR(so.ModifiedDate), P.Name)
Step 4: Completed Query
SELECT
YEAR(so.ModifiedDate) AS OrderDate,
p.Name,
SUM(so.OrderQty) AS OrderQty
FROM dbo.SalesOrderDetail so
INNER JOIN dbo.Product p
ON p.ProductID = so.ProductID
GROUP BY ROLLUP(YEAR(so.ModifiedDate), p.Name);
Why This Works
YEAR(so.ModifiedDate) extracts year for grouping.
ROLLUP(YEAR, P.Name) provides both product-level totals and yearly subtotals.
Ensures the requirement: "include the yearly sum of order quantities for all the products in each row." References GROUP BY ROLLUP in T-SQL Aggregate functions in Microsoft Fabric warehouses
Fabric 워크스페이스에 DirectQuery 시맨틱 모델이 있습니다. 이 모델은 5억 개의 행이 있는 데이터 소스를 쿼리합니다.
Report1이라는 이름의 Microsoft Power BL 보고서가 있는데, 이 보고서는 모델을 사용합니다. Report1에는 여러 페이지에 걸쳐 시각화 요소가 포함되어 있습니다.
모든 페이지의 시각화 요소에 대한 쿼리 실행 시간을 줄여야 합니다.
사용할 수 있는 두 가지 기능은 무엇입니까? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답 하나당 1점입니다.

Correct Answer: A,D Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
Workspace1과 Workspace2라는 두 개의 워크스페이스와 User1이라는 사용자가 포함된 Fabric 테넌트가 있습니다.
User1이 다음 작업을 수행할 수 있는지 확인해야 합니다.
새 도메인을 생성하세요.
subdomain1과 subdomain2라는 이름의 서브도메인을 두 개 생성하세요.
Workspace1을 subdomain1에 할당합니다.
Workspace2를 subdomain2에 할당합니다.
해결책은 최소 권한 원칙을 따라야 합니다.
User1에게 어떤 역할을 부여해야 할까요?

Correct Answer: B Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
Microsoft Power BL 시맨틱 모델에 Date라는 테이블이 있습니다. Date 테이블에는 다음과 같은 데이터가 포함되어 있습니다.

날짜 테이블을 사용하는 시각화 요소가 시간 순서대로 표시되도록 해야 합니다. 또한, 관리 부담을 최소화하는 솔루션을 제시해야 합니다.
어떻게 해야 할까요?

Correct Answer: D Vote an answer
Workspace1이라는 이름의 Fabric 작업 영역과 storage라는 이름의 Azure Data Lake Storage Gen2 계정이 있습니다. Workspace1에는 Lakehouse1이라는 이름의 레이크하우스가 있습니다.
Lakehouse1에서 저장소 바로가기를 만들어야 합니다!
어떤 연결 및 엔드포인트를 지정해야 합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:

When creating a shortcut to an Azure Data Lake Storage Gen2 account in a lakehouse, you should use the abfss (Azure Blob File System Secure) connection string and the dfs (Data Lake File System) endpoint. The abfss is used for secure access to Azure Data Lake Storage, and the dfs endpoint indicates that the Data Lake Storage Gen2 capabilities are to be used.
Workspace1이라는 이름의 Fabric 워크스페이스가 있으며, 해당 워크스페이스에는 다음과 같은 항목이 포함되어 있습니다.
Warehouse1이라는 이름의 창고
Model1이라는 이름의 의미 모델
Report1이라는 이름의 대화형 보고서
User1이라는 사용자가 Warehouse1의 특정 테이블에만 접근할 수 있도록 권한을 부여해야 합니다. 이 해결책은 최소 권한 원칙을 따라야 합니다.
무엇을 먼저 해야 할까요?

Correct Answer: B Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
귀하의 Fabric 테넌트에는 Lakehouse라는 이름의 호숫가 주택이 있습니다! Lakehouse1에는 백만 개의 Parquet 파일이 포함된 Delta 테이블이 있습니다.
지난 30일 동안 테이블에서 참조되지 않은 파일을 삭제해야 합니다. 이 해결책은 트랜잭션 로그의 일관성을 유지하고 테이블의 ACID 속성을 보장해야 합니다. 어떻게 해야 할까요?

Correct Answer: C Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
storage!라는 이름의 Azure Data Lake Storage Gen2 계정이 있으며, 이 계정에는 sales라는 이름의 Parquet 파일이 있습니다.
쪽매 세공.
Workspace1이라는 워크스페이스가 포함된 Fabric 테넌트가 있습니다.
Workspace1의 노트북을 사용하여 파일 내용을 기본 Lakehouse 탐색기에 로드해야 합니다. 이 솔루션은 Lakehouse 탐색기에서 파일 내용이 자동으로 "Sales"라는 이름의 테이블로 표시되도록 해야 합니다.
코드를 어떻게 완성해야 할까요? 정답을 선택하려면 답변란에서 적절한 옵션을 고르세요.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:

Step 1 - Read the Parquet file into a DataFrame
df = spark.read.parquet( " abfss://[email protected]/files/sales.parquet " ) This correctly loads the Parquet data into Spark.
Step 2 - Write into the Lakehouse as a managed table
If we want the result to be registered as a Lakehouse table and automatically appear in Lakehouse Explorer, we must:
Write the data in delta format (because Fabric Lakehouse tables are Delta tables).
Save the table under the tables folder, not files.
So the correct code is:
df.write.mode( " overwrite " ).format( " delta " ).saveAsTable( " tables/sales " ) Final Answer:
Format: delta
SaveAsTable Path: tables/sales
References:
Lakehouse tables in Microsoft Fabric
Save DataFrame as Delta Table in Spark
# Answer Selection:
First dropdown # delta
Second dropdown # tables/sales
Microsoft Power B1 보고서와 Direct Lake 모드를 사용하는 시맨틱 모델이 있습니다. Power Si Desktop에서 다음 그림과 같이 성능 분석기를 엽니다.

아래 그림에 제시된 정보를 바탕으로 각 문장을 완성하는 답을 드롭다운 메뉴에서 선택하세요. 참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:
The Direct Lake fallback behavior is set to: DirectQueryOnly
The query for the table visual is executed by using: DirectQuery
In the context of Microsoft Power BI, when using DirectQuery in Direct Lake mode, there is no caching of data and all queries are sent directly to the underlying data source. The Performance Analyzer tool shows the time taken for different operations, and from the options provided, it indicates that DirectQuery mode is being used for the visuals, which is consistent with the Direct Lake setting. DirectQueryOnly as the fallback behavior ensures that only DirectQuery will be used without reverting to import mode.
Lakehouse1이라는 이름의 Fabric 호숫가 주택 모델이 있으며, 해당 모델에는 다음과 같은 데이터가 포함되어 있습니다.

호주 공휴일인 날짜에 한해 주문일(OrderDate)별 총 매출액을 반환하는 T-SQL 문을 작성해야 합니다. 총 매출액은 dbo.sales 테이블의 각 행에서 수량과 가격을 곱한 값을 합산한 값이어야 합니다.
문장을 어떻게 완성해야 할까요? 답하려면 답변란에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:

Step 1: Requirement
We need to calculate total sales amount by OrderDate.
Total Sales Amount = Quantity × UnitPrice per row.
Then SUM over all rows per OrderDate.
Only include rows where the OrderDate matches a public holiday in Australia.
Step 2: Calculation Logic
If we select s.Quantity * s.UnitPrice, it only computes row-level values.
To calculate the total sales amount per OrderDate, we need:
SUM(s.Quantity * s.UnitPrice) AS TotalSalesAmt
Thus, the correct calculation: SUM(s.Quantity * s.UnitPrice)
Step 3: Join Type
We want to return only those sales that occurred on public holidays in Australia.
If we used a LEFT JOIN, we'd include all sales regardless of holiday.
A FULL OUTER JOIN would include non-matching rows, not required.
A CROSS JOIN would duplicate results unnecessarily.
A RIGHT OUTER JOIN would include holidays with no sales, which is not needed.
The correct choice is an INNER JOIN on matching dates.
Step 4: Final Query
SELECT
s.OrderDate,
SUM(s.Quantity * s.UnitPrice) AS TotalSalesAmt
FROM dbo.sales AS s
INNER JOIN dbo.publicholidays AS ph
ON s.OrderDate = ph.Date
WHERE ph.countryOrRegion = ' Australia '
GROUP BY s.OrderDate;
Why This is Correct
SUM(s.Quantity * s.UnitPrice) # ensures sales are aggregated correctly.
INNER JOIN # ensures only rows where OrderDate matches a holiday are included.
WHERE ph.countryOrRegion = ' Australia ' # filters holidays to Australia only.
References
SUM (Transact-SQL)
JOIN operations in T-SQL

Contact Us

If you have any question please leave me your email address, we will reply and send email to you in 12 hours.

Our Working Time: ( GMT 0:00-15:00 ) From Monday to Saturday

Support: Contact now 

日本語 Deutsch 繁体中文 한국어