Microsoft Azure Administrator (AZ-104 Korean Version) - AZ-104 Korean Exam Practice Test

Question 1
다음 Azure Resource Manager(ARM) 템플릿을 배포할 계획입니다.
다음 각 문항에 대해 '예'를 선택하고, 그렇지 않으면 '아니요'를 선택하십시오.
참고: 정답 하나당 1점입니다.

전시하다

전시하다
Correct Answer:

Explanation:
Detailed Explanation
ARM template variables are fixed, template-internal values computed at deployment time from their defined expressions; they cannot be supplied externally, unlike parameters (statement 3 is No because sku sits in ' variables ' , and ' parameters ' is empty). A template ' s resources are always created inside the resource group targeted by the deployment command (e.g., New-AzResourceGroupDeployment -ResourceGroupName), independent of which resource group any referenced resource (like VNET1) happens to live in, so statement 2 is No - resourceId() here only builds a string used to construct the subnet ' s id, it doesn ' t constrain deployment scope. The frontendIPConfiguration ' s subnet reference is explicitly built by concatenating the vnetId variable (VNET1) with the netname variable, so LB1 is indeed wired to a subnet identified by ' VNET1 ' + ' netname ' , making statement 1 Yes.
Official Reference
Understand the structure and syntax of ARM templates - variables - https://learn.microsoft.com/en-us/azure
/azure-resource-manager/templates/syntax#variables
Question 2
귀하는 다음 표에 표시된 그룹을 포함하는 Microsoft Entra 테넌트를 보유하고 있습니다.
해당 테넌트에는 다음 표에 표시된 사용자가 포함되어 있습니다.
어떤 사용자와 그룹을 삭제할 수 있습니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고: 정답 하나당 1점입니다.

전시하다

전시하다

전시하다
Correct Answer:

Explanation:
Detailed Explanation
Microsoft Entra ID never blocks deleting a user because that user holds a license - whether the license is assigned directly or inherited from group-based licensing - deleting the user simply releases the license back into the available pool, so every user (User1 through User4) can be deleted regardless of their license status.
Groups are different: Microsoft Entra ID explicitly prevents deleting a group that has a license assigned to it through group-based licensing - you must first remove the license assignment from the group before the group itself can be deleted. Group1 and Group3 both show " Has an assigned license: Yes " and therefore cannot be deleted until their license assignments are removed; Group2 and Group4 show " Has an assigned license: No " and can be deleted immediately. The correct selections are therefore all four users, and Group2 and Group4 only among the groups.
Official Reference
Group-based licensing in Microsoft Entra ID - https://learn.microsoft.com/en-us/entra/identity/users
/licensing-group-advanced
Question 3
10개의 Azure 구독에 연결된 Azure AD 테넌트가 있습니다.
모든 구독에서 사용자 활동을 중앙에서 모니터링해야 합니다.
무엇을 사용해야 합니까?

Correct Answer: A
Explanation: Only visible for Actualtests4sure members. You can sign-up / login (it's free).
Question 4
다음 표에 표시된 것처럼 Azure 가상 머신이 두 대 있습니다.
다음 표에 표시된 Azure DNS 영역을 생성합니다.
다음과 같은 작업을 수행합니다.
fabrikam.com에 접속하려면 vnet1에 가상 네트워크 링크를 추가하고 자동 등록을 활성화해야 합니다.
contoso.com의 경우 vm1과 vm2에 소유자 역할을 할당합니다.
다음 각 문장에 대해, 문장이 사실이면 '예'를 선택하고, 그렇지 않으면 '아니요'를 선택하십시오.
참고: 정답을 맞힐 때마다 1점을 얻습니다.

전시하다

전시하다

전시하다
Correct Answer:

Explanation:
CORRECTED ANSWER: The DNS A record for vm1 is added to contoso.com and has the IP address of
131.107.50.20: No. The DNS A record for vm1 is added to fabrikam.com and has the IP address of 10.0.1.4:
Yes. The DNS A record for vm2 is added to fabrikam.com and has the IP address of 10.0.1.5: Yes.
Detailed Explanation
Assigning the Azure RBAC Owner role on a DNS zone grants management permissions on that zone resource; it does not itself create, modify, or trigger the creation of any DNS record, and contoso.com is a public DNS zone, which has no auto-registration capability at all -- no A record for vm1 is created in contoso.
com by this action, correcting the source document ' s original ' Yes ' to No. Fabrikam.com is a Private DNS zone linked to vnet1 with auto registration enabled, which automatically creates an A record (using each VM ' s PRIVATE IP) for every VM connected to that linked virtual network, independent of OS or in-guest DNS suffix. Both vm1 and vm2 are connected to vnet1, so both receive automatic A records in fabrikam.com with their respective private IPs (10.0.1.4 and 10.0.1.5) -- the vm1/fabrikam.com statement was already correctly Yes, and the vm2/fabrikam.com statement is corrected from No to Yes.
Official Reference
Azure Private DNS zones - Autoregistration - https://learn.microsoft.com/en-us/azure/dns/private-dns- autoregistration
Question 5
Subscription1이라는 이름의 Azure 구독이 있습니다.
contosostorage라는 이름의 Azure Storage 계정을 만든 다음, data라는 이름의 파일 공유를 만듭니다.
데이터 파일 공유의 파일을 참조하는 스크립트에 어떤 UNC 경로를 포함해야 할까요? 정답을 확인하려면 해당 값을 드래그하여 올바른 위치에 놓으세요. 각 값은 한 번, 여러 번 또는 전혀 사용되지 않을 수 있습니다. 내용을 보려면 창 사이의 구분 막대를 드래그하거나 스크롤해야 할 수도 있습니다.
참고: 정답 하나당 1점입니다.

전시하다
Correct Answer:

Explanation:
Detailed Explanation
An Azure file share is addressed over SMB using the UNC pattern \\ < storage-account-name > .file.core.
windows.net\ < share-name > . The storage account name (contosostorage) forms the host label before the fixed ' file.core.windows.net ' suffix, which is the DNS endpoint for the File service (distinct from ' blob.core.
windows.net ' , used for Blob storage, and unrelated values like ' portal.azure.com ' or ' subscription1 ' , which are not storage endpoints at all). The share name created (data) becomes the final path segment after the single backslash. This yields \\contosostorage.file.core.windows.net\data, which is exactly what a script would use to mount or reference files in the share via SMB.
Official Reference
Use an Azure file share with Windows - https://learn.microsoft.com/en-us/azure/storage/files/storage-how- to-use-files-windows
Question 6
귀하의 Azure 구독에는 다음 표에 표시된 리소스가 포함되어 있습니다.
NSG1은 다음 그림과 같이 구성됩니다.
다음 각 문장에 대해, 문장이 사실이면 '예'를 선택하고, 그렇지 않으면 '아니요'를 선택하십시오.
참고: 정답 하나당 1점입니다.

전시하다

전시하다

전시하다
Correct Answer:

Explanation:
Detailed Explanation
Statement 1 is Yes: outbound rule 145 (priority evaluated before rule 150) explicitly allows VirtualNetwork- to-Storage traffic on port 443, so it matches and permits VM1 ' s traffic to storage1 before the lower-priority Block_Internet deny rule (which targets the Internet tag, not Storage) is ever evaluated. Statement 2 is Yes:
inbound rule 110 only denies traffic from the Internet tag; traffic from VM2 (within the same VNet) matches the higher-priority default AllowVnetInBound rule (65000) before reaching the DenyAllInBound catch-all, so VM2 can reach VM1 over HTTPS. Statement 3 is No: NSG1 is associated with only one subnet (subnet1, containing VM1) and zero NICs, so its rules affect only resources in subnet1 - VM2, in subnet2, is entirely unaffected by NSG1.
Official Reference
Network security groups overview - https://learn.microsoft.com/en-us/azure/virtual-network/network- security-groups-overview
Question 7
contoso.com이라는 이름의 Microsoft Entra 테넌트가 있으며, 해당 테넌트의 외부 공동 작업 설정은 다음 그림과 같습니다.
해당 테넌트에는 다음 표에 표시된 사용자가 포함되어 있습니다.
User2는 User1의 초대를 받은 손님입니다.
다음 각 문장에 대해, 문장이 사실이면 '예'를 선택하고, 그렇지 않으면 '아니오'를 선택하십시오. 정답 하나당 1점입니다.

전시하다

전시하다

전시하다
Correct Answer:

Explanation:
Detailed Explanation
The tenant ' s guest user access restriction is set to the middle, default option ( ' limited access to properties and memberships of directory objects ' ), not the most restrictive ' own directory objects only ' option, so guests retain read access to standard profile attributes -- including Manager -- of other directory objects; User2 can view User1 ' s Manager property. Guest invite restrictions are set to the most inclusive option, which would normally let User2 send invitations, but Collaboration restrictions independently enforce an allow-list containing only fabrikam.com -- northwindtraders.com is not on that list, so the invitation to [email protected] is blocked regardless of the invite-restriction setting; both settings must permit an invitation for it to succeed. Guest accounts have restricted default Microsoft Entra permissions that exclude self-service object-creation actions such as creating a Microsoft 365 group; nothing in this scenario elevates User2 ' s guest permissions, so User2 cannot create a group.
Official Reference
Configure external collaboration settings - https://learn.microsoft.com/en-us/entra/external-id/external- collaboration-settings-configure
Question 8
귀하는 storage1이라는 이름의 스토리지 계정이 포함된 Azure 구독을 보유하고 있습니다.
contained라는 이름의 Blob 컨테이너를 생성할 계획입니다.
격리된 환경에는 고객 관리 키 암호화를 사용해야 합니다.
어떤 키를 사용해야 할까요?

Correct Answer: B
Explanation: Only visible for Actualtests4sure members. You can sign-up / login (it's free).
Question 9
뉴욕 사무실 접속에 필요한 연결 조건을 충족해야 합니다.
어떻게 해야 할까요? 답변하려면 답변란에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.

전시하다
Correct Answer:

Explanation:
Detailed Explanation
" Connect over the Internet by using an encrypted connection " is the defining description of a Site-to-Site (S2S) IPsec/IKE VPN, as opposed to ExpressRoute, which is a private, non-Internet circuit and therefore does not satisfy " over the Internet. " Building an S2S VPN in Azure requires two Azure-side resources: a virtual network gateway (of type VPN) attached to VNet1, which terminates the encrypted tunnel on the Azure side, and a local network gateway, which represents the New York office ' s on-premises VPN endpoint (its public IP address and on-premises address prefixes) so Azure knows how to route traffic to it. Creating only a virtual network gateway, or only an ExpressRoute circuit, is insufficient - the local network gateway is required to define the on-premises side of an S2S connection. On the New York office side, the corresponding action is to configure a site-to-site VPN connection on their firewall/VPN device (per the case study, each office ' s firewall can act as a VPN device), establishing the matching IPsec tunnel to Azure. DirectAccess and Web Application Proxy are unrelated legacy remote-access technologies.
Official Reference
Create a Site-to-Site VPN connection - https://learn.microsoft.com/en-us/azure/vpn-gateway/tutorial-site-to- site-portal
Question 10
Subscription1이라는 이름의 Azure 구독이 있습니다.
구독1에서 share1이라는 이름의 Azure 파일 공유를 생성합니다.
다음 그림과 같이 SAS1이라는 이름의 공유 액세스 서명(SAS)을 생성합니다.
답변하려면 답변란에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.

전시하다

전시하다
Correct Answer:

Explanation:
CORRECTED ANSWER: Storage Explorer with SAS1 on Jan 2, 2025 from 193.77.134.1: will have read, write, and list access. net use with SAS1 as the password on Jan 10, 2025 from 193.77.134.50: will have no access.
Detailed Explanation
Both dates (Jan 2 and Jan 10, 2025) fall inside SAS1 ' s Jan 1 2025-Jan 1 2028 validity window, and the Allowed IP addresses field is empty, so no source-IP restriction applies to either scenario - neither
193.77.134.1 nor 193.77.134.50 is blocked on IP grounds. Storage Explorer connects over the Storage REST API using a supplied SAS URI/token, which is a fully supported, documented authentication method, so it succeeds with whatever permissions SAS1 grants (read, write, and list). The ' net use ' command, however, mounts an Azure file share over the SMB protocol, and Microsoft ' s documentation states explicitly that ' Shared access signature (SAS) tokens aren ' t currently supported for mounting Azure file shares ' - only a storage account key or identity-based (AD DS / Microsoft Entra Kerberos) authentication works for SMB.
Using SAS1 as the net use password therefore fails outright, yielding no access.
Official Reference
Use an Azure file share with Windows - SAS not supported for SMB mounting - https://learn.microsoft.com
/en-us/azure/storage/files/storage-how-to-use-files-windows
Question 11
VM1이라는 이름의 Azure 가상 머신을 백업하려고 하는데, 백업 사전 검사 상태가 경고로 표시됩니다. 경고 상태가 표시되는 원인은 무엇일까요?

Correct Answer: C
Explanation: Only visible for Actualtests4sure members. You can sign-up / login (it's free).
Question 12
귀하의 Azure 구독에는 다음 표에 표시된 공용 로드 밸런서가 포함되어 있습니다.
가상 머신 6대를 생성하고 해당 가상 머신들에 요청을 분산시키려고 합니다. 각 로드 밸런서는 가상 머신 3대에 대한 요청을 분산시킬 것입니다.
계획된 솔루션을 위해 가상 머신을 생성해야 합니다.
가상 머신은 어떻게 생성해야 합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고: 정답 하나당 1점입니다.

전시하다

전시하다
Correct Answer:

Explanation:
Detailed Explanation
Basic SKU Load Balancer ' s documented backend-pool restriction requires that member virtual machines belong to a single availability set or a single virtual machine scale set - standalone VMs outside any availability set, or VMs spread across multiple availability sets, cannot share a Basic LB ' s backend pool.
Standard SKU Load Balancer removes this constraint entirely; its only backend-pool requirement is that member VMs (or scale set instances) reside in the same virtual network as the load balancer, with no availability-set grouping needed. Because LB1 is Basic SKU, its three VMs must be built into a common availability set (or scale set); because LB2 is Standard SKU, its three VMs need only share LB2 ' s virtual network. This matches the source document ' s answer key and is consistent with the Basic/Standard SKU comparison established elsewhere in this audit.
Official Reference
Azure Load Balancer SKU comparison - backend pool requirements - https://learn.microsoft.com/en-us
/azure/load-balancer/skus
Question 13
귀하의 Azure 구독에는 다음 표에 표시된 리소스가 포함되어 있습니다.
LB1은 다음 표에 표시된 대로 구성됩니다.
다음 요구 사항을 충족하는 새로운 인바운드 NAT 규칙을 생성할 계획입니다.
포트 3389를 사용하여 인터넷에서 VM2에 원격 데스크톱으로 액세스할 수 있도록 합니다.

전시하다

전시하다

Correct Answer: B
Explanation: Only visible for Actualtests4sure members. You can sign-up / login (it's free).