live chatMcAfee Secure sites help keep you safe from identity theft, credit card fraud, spyware, spam, viruses and online scams
Pass4Test 10%OFF Discount Code

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

QUESTION NO: 1
고객과 고객의 은행 계좌 잔액에 관련된 데이터가 포함된 Model1이라는 의미 모델이 있습니다.
Model1에는 다음과 같은 테이블과 열이 있습니다.

고객은 하나 이상의 계정을 가질 수 있습니다. 각 계정은 여러 고객과 연결될 수 있습니다.
사용자가 Model1을 조회하여 고객별 총 거래 금액을 확인할 수 있도록 해야 합니다.
Model1에 무엇을 추가해야 할까요?
Correct Answer: B
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 2
Workspace1이라는 이름의 Fabric 워크스페이스가 있으며, 이 워크스페이스에는 시맨틱 모델과 Report1이라는 이름의 보고서가 있습니다. Workspace 1은 Gill이라는 이름의 Git 리포지토리에 연결되어 있습니다.
개발, 테스트, 프로덕션이라는 세 단계로 구성된 배포 파이프라인이 있습니다.
Report1을 프로덕션 단계로 게시해야 합니다.
어떻게 해야 할까요?
Correct Answer: C
QUESTION NO: 3
의미 모델이 포함된 Microsoft Power BI 프로젝트가 있습니다. 버전 관리를 위해 Azure DevOps를 사용할 계획입니다.
데이터 소스의 데이터 값이 저장소로 푸시되는 것을 방지하려면 .gitignore 파일을 수정해야 합니다. 어떤 파일을 참조해야 할까요?
Correct Answer: C
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 4
Microsoft Power BI 프로젝트에 definition.pbir이라는 파일이 있습니다. definition.pbir 파일에는 다음과 같은 JSON이 포함되어 있습니다.

Correct Answer:

Explanation:
PBIR-Legacy format # No
Located in Power BI service # No
Opens in full edit mode # Yes
Comprehensive Detailed Explanation
We are analyzing a Power BI Report (PBIR) definition file in JSON format:
{
" version " : " 1.0 " ,
" byPath " : {
" path " : " ../Sales.Dataset "
}
}
}
Step 1: Is this PBIR-Legacy?
PBIR-Legacy format is used when referencing a dataset hosted in the Power BI service (cloud).
In this case, the JSON uses byPath , which references a local dataset file ( Sales.Dataset ) in the project folder , not a service dataset.
Therefore: No , it is not PBIR-Legacy.
Step 2: Where is the semantic model located?
The datasetReference points to ../Sales.Dataset .
That means the semantic model is stored locally in the project structure , not in the Power BI service.
Therefore: No , it is not located in the Power BI service.
Step 3: What happens when opening in Power BI Desktop?
Since the dataset reference is local ( byPath ), Power BI Desktop opens the semantic model in full edit mode (allowing schema, relationships, measures, etc. to be modified).
If it were PBIR-Legacy with a service model, only Live Connection mode would be available.
Therefore: Yes , Power BI Desktop opens it in full edit mode.
References
PBIR file structure in Power BI projects
Semantic model references: byPath vs byConnection
PBIR-Legacy format # No
Located in Power BI service # No
Opens in full edit mode # Yes
QUESTION NO: 5
Warehouse!라는 이름의 웨어하우스를 포함하는 Fabric 테넌트가 있습니다. Warehouse!에는 schemal과 schema2라는 두 개의 스키마와 schemal.city라는 테이블이 있습니다.
schema2에 schemal.city의 복사본을 만들어야 합니다. 데이터 복사량을 최소화하는 해결책을 제시해야 합니다.
어떤 T-SQL 문을 실행해야 할까요?
Correct Answer: A
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 6
Eventhousel이라는 Fabric 이벤트하우스가 있으며, 이 이벤트하우스에는 Weatherdata라는 테이블이 있습니다. Weatherdata 테이블의 데이터 예시는 다음 표에 나와 있습니다.

Eventhouse1의 데이터를 조작하기 위해 KQL 쿼리셋을 사용할 계획입니다. 결과 집합에는 다음 열이 포함되어야 합니다.

쿼리를 작성해야 합니다.
어떤 네 개의 KQL 문장을 순서대로 사용해야 합니까? 정답을 맞추려면 문장 목록에서 적절한 문장을 답란으로 옮기고 올바른 순서대로 배열하십시오.
Correct Answer:

Explanation:

Comprehensive Detailed Explanation
Step 1: Understanding the requirement
We need a KQL query that:
Reads data from Weatherdata .
Orders by Datetime .
Calculates Delta_temperature as the difference between the current row and the preceding row .
Returns the final columns: Datetime, Lat, Long, Temperature, Delta_temperature .
Step 2: Evaluate the provided statements
Weatherdata # Starts the query with the source table.
| sort by Datetime asc # Ensures chronological order, required for prev() to work correctly.
| extend Delta_temperature = Temperature - prev(Temperature) # Computes difference between the current row and the previous row's temperature.
| project Datetime, Lat, Long, Temperature, Delta_temperature # Selects the required output columns.
Step 3: Incorrect choices (to avoid)
next(Temperature,1) # Would calculate the difference with the next row , not the previous.
prev(Temperature,2) # Would skip one row, giving the difference with two rows back, which is not needed.
summarize ... by Datetime # Aggregates the data; not required here since we just need row-level differences.
Step 4: Final Correct Sequence
Weatherdata
| sort by Datetime asc
| extend Delta_temperature = Temperature - prev(Temperature)
| project Datetime, Lat, Long, Temperature, Delta_temperature
References
prev() function in KQL
extend operator in KQL
project operator in KQL
QUESTION NO: 7
귀하는 LH1이라는 이름의 호숫가 주택과 노트북을 포함하는 Fabric 테넌트를 보유하고 있습니다.
invoice1이라는 Parquet 파일이 있는데, 이 파일에는 타임스탬프 데이터 형식의 InvoiceDateKey라는 열이 있습니다.
PySpark 스크립트를 작성하여 invoice1을 불러오고 LH1에 fact_sale이라는 테이블을 생성해야 합니다. 이 스크립트는 다음 요구 사항을 충족해야 합니다.
* fact_sale 테이블에 Year라는 새 열을 추가해야 합니다.
* Year 필드의 값은 InvoiceDateKey 열을 사용해야 합니다.
스크립트를 어떻게 완성해야 할까요? 답하려면 답변란에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:
QUESTION NO: 8
Fabric 워크스페이스에 등록된 머신러닝 모델이 포함된 Fabric 테넌트가 있습니다. Fabric 노트북에서 predict 함수를 사용하여 해당 모델로 예측을 생성해야 합니다. 모델 스코어링을 수행하는 데 사용할 수 있는 두 가지 언어는 무엇입니까? 각 정답은 완전한 솔루션을 제공합니다. 참고:
정답 하나당 1점입니다.
Correct Answer: B,C
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 9
Workspace1이라는 이름의 Fabric 워크스페이스가 있습니다.
Group1, Group2, Group3이라는 이름의 그룹이 세 개 있습니다.
각 그룹에 작업 공간 역할을 할당해야 합니다. 솔루션은 최소 권한 원칙을 준수해야 하며 다음 요구 사항을 충족해야 합니다.
Group1은 Workspace1에 데이터를 쓸 수는 있지만 Workspace1에 멤버를 추가할 수는 없어야 합니다.
그룹2는 워크스페이스1의 설정을 구성하고 유지 관리할 수 있어야 합니다.
Group3은 Workspace1에 데이터를 쓰고 멤버를 추가할 수 있어야 하지만, Workspace1을 삭제할 수는 없어야 합니다.
각 그룹에 어떤 워크스페이스 역할을 할당해야 할까요? 정답을 맞추려면 적절한 역할을 해당 그룹으로 드래그하세요. 각 역할에는 다음과 같은 것들이 있습니다.
Correct Answer:

Explanation:

Comprehensive Detailed Explanation
Workspace Roles in Microsoft Fabric (same as Power BI workspaces):
Viewer
Can only read/view content.
Cannot create or edit.
Contributor
Can create and write data (datasets, reports, semantic models).
Cannot manage permissions or workspace settings.
Member
Can create and edit content.
Can also add/remove people to the workspace (except Admins).
Cannot delete the workspace itself.
Admin
Full control: can configure settings, add/remove members, and delete the workspace.
Step 1: Group1 Requirements
Must be able to write data .
Must NOT be able to add members.
# Contributor (can write but cannot manage membership).
Step 2: Group2 Requirements
Must be able to configure and maintain workspace settings .
# Only Admin role allows configuring workspace-level settings.
# Admin .
Step 3: Group3 Requirements
Must be able to write data .
Must be able to add members .
Must NOT be able to delete the workspace.
# This matches the Member role.
QUESTION NO: 10
AnalyticsPOC 워크스페이스에서 데이터 저장소에 대한 권한을 할당해야 합니다. 솔루션은 보안 요구 사항을 충족해야 합니다.
데이터 저장소를 공유할 때 어떤 추가 권한을 부여해야 합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:
Comprehensive Detailed Explanation
When assigning permissions to roles in a Fabric workspace for analytics workloads, you must align permissions with the responsibilities and tools typically used by each persona:
1. Data Engineers
Their primary tasks include building and transforming data pipelines, as well as making datasets usable by others.
The appropriate permission is Build Reports on the default dataset , because this allows them to create and manage reports using the curated semantic model while preparing data for analysts and scientists.
2. Data Analysts
Analysts work heavily with Apache Spark for exploratory analysis, cleansing, and shaping data.
The correct permission is Read All Apache Spark , as this grants them the ability to query and analyze Spark- based data directly without elevated permissions that are unnecessary for their role.
3. Data Scientists
Data scientists often use SQL analytics endpoints to run queries, train models, and integrate data into machine learning workflows.
The correct permission is Read All SQL analytics endpoint data , since it enables direct programmatic access to the SQL endpoint, which is needed for advanced modeling and experimentation.
Summary of Selections:
DataEngineers # Build Reports on the default dataset
DataAnalysts # Read All Apache Spark
DataScientists # Read All SQL analytics endpoint data
References (Microsoft Fabric - DP-600 exam scope):
Workspace roles and permissions in Microsoft Fabric
SQL analytics endpoint in Fabric
Apache Spark in Microsoft Fabric
QUESTION NO: 11
귀하의 Fabric 테넌트에는 Lakehouse라는 이름의 호숫가 주택이 있습니다! Lakehouse1에는 백만 개의 Parquet 파일이 포함된 Delta 테이블이 있습니다.
지난 30일 동안 테이블에서 참조되지 않은 파일을 삭제해야 합니다. 이 해결책은 트랜잭션 로그의 일관성을 유지하고 테이블의 ACID 속성을 보장해야 합니다. 어떻게 해야 할까요?
Correct Answer: D
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 12
귀하는 창고를 포함하는 Fabric 테넌트를 보유하고 있습니다.
데이터플로우를 사용하여 OneLake에서 데이터웨어하우스로 새 데이터셋을 로드합니다.
숫자 열의 최댓값을 찾으려면 Power Query 단계를 추가해야 합니다.
해당 단계에 어떤 함수를 포함시켜야 할까요?
Correct Answer: D
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 13
참고: 이 섹션에는 동일한 시나리오와 문제를 다룬 하나 이상의 질문 세트가 포함되어 있습니다. 각 질문은 문제에 대한 고유한 해결책을 제시합니다. 제시된 해결책이 목표를 충족하는지 여부를 판단해야 합니다.
주어진 해법 중 하나 이상이 문제를 해결할 수 있습니다. 또한, 주어진 해법 중 어느 것도 문제를 해결하지 못할 수도 있습니다.
이 섹션의 질문에 답변하신 후에는 뒤로 돌아갈 수 없습니다. 따라서 이 질문들은 검토 화면에 나타나지 않습니다.
네트워크에는 contoso라는 이름의 온프레미스 Active Directory Domain Services(AD DS) 도메인이 있습니다.
Microsoft Entra Connect를 사용하여 Microsoft Entra 테넌트와 동기화되는 com입니다.
시맨틱 모델을 포함하는 Fabric 테넌트가 있습니다.
모델에 동적 행 수준 보안(RLS)을 활성화하고 모델을 Fabric 서비스에 배포합니다.
username() 함수가 포함된 측정값을 쿼리했는데 결과가 비어 있습니다.
측정값이 사용자 주체 이름(UPNJ)을 반환하는지 확인해야 합니다.
해결 방법: Microsoft Entra Connect의 동기화된 개체 목록에 사용자 개체를 추가합니다.
이것이 목표를 달성합니까?
Correct Answer: A
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 14
Workspace1이라는 이름의 Fabric 작업 공간이 있고, 그 안에 Dataflow1이라는 이름의 데이터 흐름이 있습니다. Dataflow1은 500개의 행의 데이터를 반환합니다.
쿼리 결과에서 각 열의 최소값과 최대값을 확인해야 합니다.
어떤 세 가지 데이터 보기 옵션을 선택해야 할까요? 각 정답은 해결 방법의 일부를 나타냅니다.
참고: 정답 하나당 1점입니다.
Correct Answer: A,C,E
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 15
Workspace-!라는 이름의 Fabric 워크스페이스가 있고, Repol이라는 이름의 GitHub 리포지토리가 있습니다. Workspace-!를 Repol의 메인 브랜치에 연결하려면 어떤 정보를 제공해야 할까요?
Correct Answer: B