AZ-203 Korean試験無料問題集「Microsoft Developing Solutions for Microsoft Azure (AZ-203 Korean Version) 認定」

회사는 스마트 냉장고가 온도 정보를 중앙 위치로 보낼 수있는 솔루션을 개발 중입니다.
솔루션은 메시지를 처리 ​​할 수있을 때까지 메시지를 받고 저장해야합니다. 이름, 요금 계층, 구독, 리소스 그룹 및 위치를 제공하여 Azure Service Bus 인스턴스를 만듭니다.
구성을 완료해야합니다.
어떤 Azure CLI 또는 PowerShell 명령을 실행해야합니까?

解説: (GoShiken メンバーにのみ表示されます)
파일을 처리 및 변환하고 파일을 Azure 저장소에 저장하는 Azure Batch 프로젝트가 있습니다. 배치 작업을 시작하는 기능을 개발 중입니다.
다음 매개 변수를 함수에 추가하십시오.

outputContainerSasUrl 매개 변수가 참조하는 컨테이너에 변환 된 파일이 있는지 확인해야합니다. 변환에 실패한 파일은 failedContainerSasUrl 매개 변수가 참조하는 컨테이너의 위치입니다.
파일이 올바르게 처리되었는지 확인해야합니다.
코드 세그먼트를 어떻게 완성해야합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.
正解:

Explanation


Box 1: CreateJob
Box 2: TaskSuccess
TaskSuccess: Upload the file(s) only after the task process exits with an exit code of 0.
Incorrect: TaskCompletion: Upload the file(s) after the task process exits, no matter what the exit code was.
Box 3: TaskFailure
TaskFailure:Upload the file(s) only after the task process exits with a nonzero exit code.
Box 4: OutputFiles
To specify output files for a task, create a collection of OutputFile objects and assign it to the CloudTask.OutputFiles property when you create the task.
References:
https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.batch.protocol.models.outputfileuploadcondition
https://docs.microsoft.com/en-us/azure/batch/batch-task-output-files
기본 제공 인증 및 권한 부여 기능을 사용하는 Azure API 앱을 구현하고 있습니다.
모든 앱 작업은 현재 사용자에 대한 정보와 연결되어야합니다.
현재 사용자에 대한 정보를 검색해야합니다.
목표를 달성하는 두 가지 가능한 방법은 무엇입니까? 각 정답은 완전한 솔루션을 제시합니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

解説: (GoShiken メンバーにのみ表示されます)
Java RESTful API를 개발하고 Azure App Service에 배포합니다.
브라우저를 열고 API의 URL로 이동하십시오. 다음과 같은 오류 메시지가 나타납니다.

오류를 해결해야합니다.
어떻게해야합니까?

解説: (GoShiken メンバーにのみ表示されます)
모바일 제공 서비스를위한 소프트웨어 솔루션을 개발합니다. 사용자가 해당 지역의 식당에서 주문하는 데 사용할 수있는 모바일 앱을 개발 중입니다. 앱은 다음 워크 플로를 사용합니다.
1. 운전자가 주문을 배달 할 식당을 선택합니다.
2. 주문은 해당 지역의 모든 이용 가능한 운전자에게 발송됩니다.
3. 선택한 식당의 주문 만 운전자에게 표시됩니다.
4. 주문을 수락 한 첫 번째 드라이버는 사용 가능한 주문 목록에서 주문을 제거합니다.
Azure Service Bus 솔루션을 구현해야합니다.
어떤 세 가지 작업을 순서대로 수행해야합니까? 응답하려면 적절한 조치를 조치 목록에서 응답 영역으로 이동하고 올바른 순서로 정렬하십시오.
正解:

Explanation

Box 1: Create a single Service Bus Namespace
To begin using Service Bus messaging entities in Azure, you must first create a namespace with a name that is unique across Azure. A namespace provides a scoping container for addressing Service Bus resources within your application.
Box 2: Create a Service Bus Topic for each restaurant for which a driver can receive messages.
Create topics.
Box 3: Create a Service Bus subscription for each restaurant for which a driver can receive orders.
Topics can have multiple, independent subscriptions.
References:
https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-messaging-overview
의료 레코드 응용 프로그램을 Azure 가상 컴퓨터 (VM)에 배포하려고합니다. 온-프레미스 빌드 서버에서 생성 한 VHD를 사용하여 응용 프로그램을 배포합니다.
Azure에 배포하는 동안 및 배포 한 후에 응용 프로그램 및 관련 데이터가 모두 암호화되어 있는지 확인해야합니다.
어떤 세 가지 작업을 순서대로 수행해야합니까? 응답하려면 적절한 조치를 조치 목록에서 응답 영역으로 이동하고 올바른 순서로 정렬하십시오.
正解:

Explanation

Step 1: Encrypt the on-premises VHD by using BitLocker without a TPM. Upload the VM to Azure Storage Step 2: Run the Azure PowerShell command Set-AzureRMVMOSDisk To use an existing disk instead of creating a new disk you can use the Set-AzureRMVMOSDisk command.
Example:
$osDiskName = $vmname+'_osDisk'
$osDiskCaching = 'ReadWrite'
$osDiskVhdUri = "https://$stoname.blob.core.windows.net/vhds/"+$vmname+"_os.vhd"
$vm = Set-AzureRmVMOSDisk -VM $vm -VhdUri $osDiskVhdUri -name $osDiskName -Create Step 3: Run the Azure PowerShell command Set-AzureRmVMDiskEncryptionExtension Use the Set-AzVMDiskEncryptionExtension cmdlet to enable encryption on a running IaaS virtual machine in Azure.
Incorrect:
Not TPM: BitLocker can work with or without a TPM. A TPM is a tamper resistant security chip on the system board that will hold the keys for encryption and check the integrity of the boot sequence and allows the most secure BitLocker implementation. A VM does not have a TPM.
References:
https://www.itprotoday.com/iaaspaas/use-existing-vhd-azurerm-vm
Azure Blob Storage 컨테이너에 저장된 사진을 관리하는 데 사용할 수있는 ASP.NET Core 웹 사이트를 개발 중입니다.
웹 사이트 사용자는 Azure AD (Azure Active Directory) 자격 증명을 사용하여 인증합니다.
사진을 저장하는 컨테이너에 RBAC (역할 기반 액세스 제어) 역할 권한을 구현합니다. RBAC 역할에 사용자를 지정합니다.
사용자의 권한을 Azure Blob 컨테이너와 함께 사용할 수 있도록 웹 사이트의 Azure AD 응용 프로그램을 구성해야합니다.
응용 프로그램을 어떻게 구성해야합니까? 응답하려면 적절한 설정을 올바른 위치로 드래그하십시오. 각 설정은 한 번, 한 번 이상 또는 전혀 사용되지 않을 수 있습니다. 분할 창을 분할 창간에 드래그하거나 스크롤하여 컨텐츠를 볼 수 있습니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.
正解:

Explanation

Box 1: user_impersonation
Box 2: delegated
Example:
* Select the API permissions section
* Click the Add a permission button and then:Ensure that the My APIs tab is selected
* In the list of APIs, select the API TodoListService-aspnetcore.
* In the Delegated permissions section, ensure that the right permissions are checked: user_impersonation.
* Select the Add permissions button.
Box 3: delegated
Example
* Select the API permissions section
* Click the Add a permission button and then,Ensure that the Microsoft APIs tab is selected
* In the Commonly used Microsoft APIs section, click on Microsoft Graph
* In the Delegated permissions section, ensure that the right permissions are checked: User.Read. Use the search box if necessary.
* Select the Add permissions button
References:
https://docs.microsoft.com/en-us/samples/azure-samples/active-directory-dotnet-webapp-webapi-openidconnect-
사용자 경험에 영향을 미치지 않고 Database 클래스의 LoadUserDetails 함수에서 재 시도를 구성해야합니다.
DB07 라인에 어떤 코드를 삽입해야합니까?
답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.
正解:

Explanation

Box 1: Policy
RetryPolicy retry = Policy
Handle<HttpRequestException>()
Retry(3);
The above example will create a retry policy which will retry up to three times if an action fails with an exception handled by the Policy.
Box 2: WaitAndRetryAsync(3,i => TimeSpan.FromMilliseconds(100* Math.Pow(2,i-1))); A common retry strategy is exponential backoff: this allows for retries to be made initially quickly, but then at progressively longer intervals, to avoid hitting a subsystem with repeated frequent calls if the subsystem may be struggling.
Example:
Policy
Handle<SomeExceptionType>()
WaitAndRetry(3, retryAttempt =>
TimeSpan.FromSeconds(Math.Pow(2, retryAttempt))
);
References:
https://github.com/App-vNext/Polly/wiki/Retry
알림 대기 시간 문제를 해결해야합니다.
어떤 두 가지 작업을 수행해야합니까? 각 정답은 솔루션의 일부를 나타냅니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다

解説: (GoShiken メンバーにのみ表示されます)
전달 API 오류를 해결해야합니다. 어떻게해야합니까?

解説: (GoShiken メンバーにのみ表示されます)