exam questions

Exam DP-100 All Questions

View all questions & answers for the DP-100 exam

Exam DP-100 topic 2 question 81 discussion

Actual exam question from Microsoft's DP-100
Question #: 81
Topic #: 2
[All DP-100 Questions]

HOTSPOT
-

You create an Azure Data Lake Storage Gen2 storage account named storage1containing a file system named fs1 and a folder named folder1.

The contents of folder1 must be accessible from jobs on compute targets in the Azure Machine Learning workspace.

You need to construct a URI to reference folder1.

How should you construct the URI? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
ajay0011
Highly Voted 1 year, 8 months ago
This is a URI (Uniform Resource Identifier) that points to a folder named "folder1" in a file system named "fs1" inside an Azure Data Lake Storage Gen2 storage account named "storage1". The URI is using the ABFSS (Azure Blob File System Service) protocol to access the storage account. abfss://<filesystem>@<storageaccount>.dfs.core.windows.net/<directory>
upvoted 9 times
PI_Team
1 year, 4 months ago
Correct. The URI abfss://<filesystem>@<storageaccount>.dfs.core.windows.net/<directory> points to a folder named folder1 in a file system named fs1 inside an Azure Data Lake Storage Gen2 storage account named storage1. The URI is using the ABFSS (Azure Blob File System Service) protocol to access the storage account. Here is a breakdown of the URI: abfss: The scheme identifier for the ABFSS protocol. <filesystem>: The name of the file system. @: The delimiter between the file system name and the storage account name. <storageaccount>: The name of the storage account. .dfs.core.windows.net: The domain name for the Azure Data Lake Storage Gen2 service. <directory>: The path to the folder.
upvoted 2 times
...
...
Kanwal001
Highly Voted 1 year, 3 months ago
On exam 28 Aug 2023
upvoted 5 times
...
evangelist
Most Recent 6 months, 2 weeks ago
Correct Selections: abfss storage1.dfs.core.windows.net/fs1/folder1 Explanation: abfss: This is the Azure Blob File System Secure (ABFSS) protocol, used for accessing data in Azure Data Lake Storage Gen2. storage1.dfs.core.windows.net: This is the domain for accessing the Data Lake Storage Gen2 account named storage1. fs1/folder1: This is the path within the file system fs1 to the folder folder1.
upvoted 1 times
...
sai384957324
8 months ago
abfss is correct
upvoted 1 times
...
damaldon
1 year, 5 months ago
correct, for ADLS Gen2: abfss://<file_system>@<account_name>.dfs.core.windows.net/<path>
upvoted 1 times
...
pranav33
1 year, 5 months ago
Correct. To construct the URI for referencing the contents of `folder1` in the Azure Data Lake Storage Gen2 storage account, you would need to combine the storage account name, file system name, and folder name in a specific format. Here's how you should construct the URI: ``` abfss://<storage-account-name>.dfs.core.windows.net/<file-system-name>/<folder-name> ``` In this case, the correct options for constructing the URI would be: - `storage-account-name`: storage1 - `file-system-name`: fs1 - `folder-name`: folder1 So the correct URI would be: ``` abfss://storage1.dfs.core.windows.net/fs1/folder1 ``` Make sure to replace `<storage-account-name>`, `<file-system-name>`, and `<folder-name>` with the actual names of your storage account, file system, and folder respectively.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...