Microsoft Developing Solutions for Microsoft Azure (AZ-203 Korean Version) - AZ-203 Korean Exam Practice Test
솔루션이 정책 서비스의 확장 요구 사항을 충족 할 수 있는지 확인해야합니다. 어떤 Azure Application Insights 데이터 모델을 사용해야합니까?
Correct Answer: B
Explanation: Only visible for TrainingDump members. You can sign-up / login (it's free).
재해 복구 요구 사항이 충족되는지 확인해야합니다.
PC16 라인에 어떤 코드를 추가해야합니까?
대답하려면 해당 코드 조각을 올바른 위치로 드래그하십시오. 각 코드 조각은 한 번, 한 번 이상 또는 전혀 사용되지 않을 수 있습니다. 분할 창을 분할 창간에 드래그하거나 스크롤하여 컨텐츠를 볼 수 있습니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

PC16 라인에 어떤 코드를 추가해야합니까?
대답하려면 해당 코드 조각을 올바른 위치로 드래그하십시오. 각 코드 조각은 한 번, 한 번 이상 또는 전혀 사용되지 않을 수 있습니다. 분할 창을 분할 창간에 드래그하거나 스크롤하여 컨텐츠를 볼 수 있습니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

Correct Answer:

Explanation

Scenario, Disaster recovery: Regional outage must not impact application availability. All DR operations must not be dependent on application running and must ensure that data in the DR region is up to date.
Box 1: DirectoryTransferContext
We transfer all files in the directory.
Note: The TransferContext object comes in two forms: SingleTransferContext and DirectoryTransferContext.
The former is for transferring a single file and the latter is for transferring a directory of files.
Box 2: ShouldTransferCallbackAsync
The DirectoryTransferContext.ShouldTransferCallbackAsync delegate callback is invoked to tell whether a transfer should be done.
Box 3: False
If you want to use the retry policy in Copy, and want the copy can be resume if break in the middle, you can use SyncCopy (isServiceCopy = false).
Note that if you choose to use service side copy ('isServiceCopy' set to true), Azure (currently) doesn't provide SLA for that. Setting 'isServiceCopy' to false will download the source blob loca References:
https://docs.microsoft.com/en-us/azure/storage/common/storage-use-data-movement-library
https://docs.microsoft.com/en-us/dotnet/api/microsoft.windowsazure.storage.datamovement.directorytransfercon
Azure Application Insights를 사용하여 성능을 모니터링하고 이벤트를 추적하는 ASP.NET Core Web API 웹 서비스를 개발 중입니다.
로깅을 활성화하고 Application Insights에서 추적 한 이벤트와 로그 메시지를 상호 연관시킬 수 있는지 확인해야합니다.
코드를 어떻게 작성해야합니까? 대답하려면 해당 코드 세그먼트를 올바른 위치로 드래그하십시오. 각 코드 세그먼트는 한 번, 두 번 이상 또는 전혀 사용되지 않을 수 있습니다. 분할 창을 분할 창간에 드래그하거나 스크롤하여 컨텐츠를 볼 수 있습니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

로깅을 활성화하고 Application Insights에서 추적 한 이벤트와 로그 메시지를 상호 연관시킬 수 있는지 확인해야합니다.
코드를 어떻게 작성해야합니까? 대답하려면 해당 코드 세그먼트를 올바른 위치로 드래그하십시오. 각 코드 세그먼트는 한 번, 두 번 이상 또는 전혀 사용되지 않을 수 있습니다. 분할 창을 분할 창간에 드래그하거나 스크롤하여 컨텐츠를 볼 수 있습니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

Correct Answer:

Explanation

Box 1: ApplicationInsightsLoggerOptions
If you want to include the EventId and EventName properties, then add the following to the ConfigureServices method:
services
AddOptions<ApplicationInsightsLoggerOptions>()
Configure(o => o.IncludeEventId = true);
Box 2: IncludeEventID
Box 3: ApplicationServices
In Asp.Net core apps it turns out that trace logs do not show up in Application Insights out of the box. We need to add the following code snippet to our Configure method in Startup.cs:
loggerFactory.AddApplicationInsights(app.ApplicationServices, logLevel); References:
https://blog.computedcloud.com/enabling-application-insights-trace-logging-in-asp-net-core/
배송 논리 앱의 요구 사항을 지원해야합니다.
무엇을 사용해야합니까?
무엇을 사용해야합니까?
Correct Answer: B
Explanation: Only visible for TrainingDump members. You can sign-up / login (it's free).
Azure Web App으로 실행될 SaaS (Software as a Service) ASP.NET Core 웹 서비스를 구현하고 있습니다. 웹 서비스는 온-프레미스 SQL Server 데이터베이스를 사용하여 저장합니다. 웹 서비스에는 데이터 업데이트를 처리하는 WebJob도 포함되어 있습니다. 4 명의 고객이 웹 서비스를 사용합니다.
* WebJob의 각 인스턴스는 단일 고객에 대한 데이터를 처리하며 단일 인스턴스로 실행해야합니다.
* 각 배포는 프로덕션 데이터를 제공하기 전에 배포 슬롯을 사용하여 테스트해야합니다.
* Azure 비용을 최소화해야합니다.
* Azure 리소스는 격리 된 네트워크에 있어야합니다.
웹앱에 대한 앱 서비스 계획을 구성해야합니다.
앱 서비스 계획을 어떻게 구성해야합니까? 답변하려면 답변 영역에서 적절한 설정을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

* WebJob의 각 인스턴스는 단일 고객에 대한 데이터를 처리하며 단일 인스턴스로 실행해야합니다.
* 각 배포는 프로덕션 데이터를 제공하기 전에 배포 슬롯을 사용하여 테스트해야합니다.
* Azure 비용을 최소화해야합니다.
* Azure 리소스는 격리 된 네트워크에 있어야합니다.
웹앱에 대한 앱 서비스 계획을 구성해야합니다.
앱 서비스 계획을 어떻게 구성해야합니까? 답변하려면 답변 영역에서 적절한 설정을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

Correct Answer:

Explanation

Number of VM instances: 4
You are not charged extra for deployment slots.
Pricing tier: Isolated
The App Service Environment (ASE) is a powerful feature offering of the Azure App Service that gives network isolation and improved scale capabilities. It is essentially a deployment of the Azure App Service into a subnet of a customer's Azure Virtual Network (VNet).
References:
https://azure.microsoft.com/sv-se/blog/announcing-app-service-isolated-more-power-scale-and-ease-of-use/
Azure Cosmos DB를 구성해야합니다.
어떤 설정을 사용해야합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

어떤 설정을 사용해야합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

Correct Answer:

Explanation

Box 1: Strong
When the consistency level is set to strong, the staleness window is equivalent to zero, and the clients are guaranteed to read the latest committed value of the write operation.
Scenario: Changes to the Order data must reflect immediately across all partitions. All reads to the Order data must fetch the most recent writes.
Note: You can choose from five well-defined models on the consistency spectrum. From strongest to weakest, the models are: Strong, Bounded staleness, Session, Consistent prefix, Eventual Box 2: SQL Scenario: You identify the following requirements for data management and manipulation:
Order data is stored as nonrelational JSON and must be queried using Structured Query Language (SQL).
테스트 오류를 해결하려면 API를 업데이트해야합니다.
Azure CLI 명령을 어떻게 완료해야합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

Azure CLI 명령을 어떻게 완료해야합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

Correct Answer:

Explanation

Enable Cross-Origin Resource Sharing (CORS) on your Azure App Service Web App.
Enter the full URL of the site you want to allow to access your WEB API or * to allow all domains.
Box 1: cors
Box 2: add
Box 3: allowed-origins
Box
4: http://testwideworldimporters.com/
References:
http://donovanbrown.com/post/How-to-clear-No-Access-Control-Allow-Origin-header-error-wit h-Azure-App-Service
Azure Web App을 개발 중입니다. 웹앱에 대한 TLS 상호 인증을 구성합니다.
웹앱에서 클라이언트 인증서의 유효성을 검사해야합니다. 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

웹앱에서 클라이언트 인증서의 유효성을 검사해야합니다. 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

Correct Answer:

Explanation

Accessing the client certificate from App Service.
If you are using ASP.NET and configure your app to use client certificate authentication, the certificate will be available through the HttpRequest.ClientCertificate property. For other application stacks, the client cert will be available in your app through a base64 encoded value in the "X-ARR-ClientCert" request header. Your application can create a certificate from this value and then use it for authentication and authorization purposes in your application.
References:
https://docs.microsoft.com/en-us/azure/app-service/app-service-web-configure-tls-mutual-auth
새 버전의 LabelMaker 응용 프로그램을 배포해야합니다.
어떤 세 가지 작업을 순서대로 수행해야합니까? 응답하려면 적절한 조치를 조치 목록에서 응답 영역으로 이동하고 올바른 순서로 정렬하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

어떤 세 가지 작업을 순서대로 수행해야합니까? 응답하려면 적절한 조치를 조치 목록에서 응답 영역으로 이동하고 올바른 순서로 정렬하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

Correct Answer:

Explanation

Step 1: Build a new application image by using dockerfile
Step 2: Create an alias if the image with the fully qualified path to the registry Before you can push the image to a private registry, you've to ensure a proper image name. This can be achieved using the docker tag command. For demonstration purpose, we'll use Docker's hello world image, rename it and push it to ACR.
# pulls hello-world from the public docker hub
$ docker pull hello-world
# tag the image in order to be able to push it to a private registry
$ docker tag hello-word <REGISTRY_NAME>/hello-world
# push the image
$ docker push <REGISTRY_NAME>/hello-world
Step 3: Log in to the registry and push image
In order to push images to the newly created ACR instance, you need to login to ACR form the Docker CLI.
Once logged in, you can push any existing docker image to your ACR instance.
Scenario:
Coho Winery plans to move the application to Azure and continue to support label creation.
LabelMaker app
Azure Monitor Container Health must be used to monitor the performance of workloads that are deployed to Kubernetes environments and hosted on Azure Kubernetes Service (AKS).
You must use Azure Container Registry to publish images that support the AKS deployment.
References:
https://thorsten-hans.com/how-to-use-a-private-azure-container-registry-with-kubernetes-9b86e67b93b6
https://docs.microsoft.com/en-us/azure/container-registry/container-registry-tutorial-quick-task
회 사용 모바일 인스턴트 메시징 앱을 개발 중입니다.
모바일 앱은 다음 요구 사항을 충족해야합니다.
* 오프라인 데이터 동기화를 지원합니다.
* 정상적인 동기화주기 동안 최신 메시지를 업데이트하십시오.
오프라인 데이터 동기화를 구현해야합니다.
어떤 두 가지 작업을 수행해야합니까? 내가 대답하는 각 콘은 솔루션의 일부를 나타냅니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.
모바일 앱은 다음 요구 사항을 충족해야합니다.
* 오프라인 데이터 동기화를 지원합니다.
* 정상적인 동기화주기 동안 최신 메시지를 업데이트하십시오.
오프라인 데이터 동기화를 구현해야합니다.
어떤 두 가지 작업을 수행해야합니까? 내가 대답하는 각 콘은 솔루션의 일부를 나타냅니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.
Correct Answer: D,E
Explanation: Only visible for TrainingDump members. You can sign-up / login (it's free).
오디오 및 시각 경보를 시작 및 중지하는 단일 신호 서버가있는 위험 알림 시스템을 작성 중입니다.
경보를 게시하기 위해 Azure Service Bus를 구현합니다. 각 알람 컨트롤러는 Azure Service Bus를 사용하여 트랜잭션의 일부로 알람 신호를받습니다. 감사 목적으로 경보 이벤트를 기록해야합니다. 각 트랜잭션 레코드에는 활성화 된 알람 유형에 대한 정보가 포함되어야합니다.
회신 추적 감사 솔루션을 구현해야합니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.
경보를 게시하기 위해 Azure Service Bus를 구현합니다. 각 알람 컨트롤러는 Azure Service Bus를 사용하여 트랜잭션의 일부로 알람 신호를받습니다. 감사 목적으로 경보 이벤트를 기록해야합니다. 각 트랜잭션 레코드에는 활성화 된 알람 유형에 대한 정보가 포함되어야합니다.
회신 추적 감사 솔루션을 구현해야합니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.
Correct Answer: C,D
Explanation: Only visible for TrainingDump members. You can sign-up / login (it's free).
사용자가 로그인 할 때 인사를하려면 챗봇을 업데이트해야합니다.
어떤 두 가지 리치 카드 형식을 사용할 수 있습니까? 각 정답은 완전한 솔루션을 제시합니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다
어떤 두 가지 리치 카드 형식을 사용할 수 있습니까? 각 정답은 완전한 솔루션을 제시합니다.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다
Correct Answer: A,B
Explanation: Only visible for TrainingDump members. You can sign-up / login (it's free).
참고 :이 질문은 동일한 시나리오를 나타내는 일련의 질문 중 일부입니다. 시리즈의 각 질문에는 명시된 목표를 달성 할 수있는 고유 한 솔루션이 포함되어 있습니다. 일부 질문 세트에는 둘 이상의 올바른 솔루션이있을 수 있지만 다른 질문 세트에는 올바른 솔루션이 없을 수 있습니다.
이 질문에 대한 질문에 답변 한 후에는 질문으로 돌아올 수 없습니다. 결과적으로 이러한 질문은 검토 화면에 나타나지 않습니다.
Azure Web App으로 실행될 웹 사이트를 개발 중입니다. 사용자는 Azure AD (Azure Active Directory) 자격 증명을 사용하여 인증합니다.
웹 사이트에 대해 관리자, 일반 및 독자 권한 수준 중 하나를 사용자에게 할당하려고합니다. 사용자의 Azure AD 그룹 구성원 자격을 사용하여 권한 수준을 결정해야합니다. 권한을 구성해야합니다.
솔루션 : 인증 된 요청 만 허용하고 Azure AD 로그온이 필요하도록 웹 사이트에 대해 Azure Web App을 구성하십시오.
솔루션이 목표를 달성합니까?
이 질문에 대한 질문에 답변 한 후에는 질문으로 돌아올 수 없습니다. 결과적으로 이러한 질문은 검토 화면에 나타나지 않습니다.
Azure Web App으로 실행될 웹 사이트를 개발 중입니다. 사용자는 Azure AD (Azure Active Directory) 자격 증명을 사용하여 인증합니다.
웹 사이트에 대해 관리자, 일반 및 독자 권한 수준 중 하나를 사용자에게 할당하려고합니다. 사용자의 Azure AD 그룹 구성원 자격을 사용하여 권한 수준을 결정해야합니다. 권한을 구성해야합니다.
솔루션 : 인증 된 요청 만 허용하고 Azure AD 로그온이 필요하도록 웹 사이트에 대해 Azure Web App을 구성하십시오.
솔루션이 목표를 달성합니까?
Correct Answer: A
Explanation: Only visible for TrainingDump members. You can sign-up / login (it's free).
회사에서 Node.js 웹앱을 개발 중입니다. 웹앱 코드는 https://github.com/TailSpinToys/weapp에있는 GitHub 리포지토리에서 호스팅됩니다.
웹 앱은 프로덕션으로 이동하기 전에 검토해야합니다. 초기 코드 릴리스를 review라는 배포 슬롯에 배포해야합니다.
웹앱을 생성하고 코드를 배포해야합니다.
명령을 어떻게 완료해야합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

웹 앱은 프로덕션으로 이동하기 전에 검토해야합니다. 초기 코드 릴리스를 review라는 배포 슬롯에 배포해야합니다.
웹앱을 생성하고 코드를 배포해야합니다.
명령을 어떻게 완료해야합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고 : 각각의 올바른 선택은 1 포인트의 가치가 있습니다.

Correct Answer:

Explanation

The New-AzResourceGroup cmdlet creates an Azure resource group.
The New-AzAppServicePlan cmdlet creates an Azure App Service plan in a given location The New-AzWebApp cmdlet creates an Azure Web App in a given a resource group The New-AzWebAppSlot cmdlet creates an Azure Web App slot.
References:
https://docs.microsoft.com/en-us/powershell/module/az.resources/new-azresourcegroup?view=azps-2.3.2
https://docs.microsoft.com/en-us/powershell/module/az.websites/new-azappserviceplan?view=azps-2.3.2
https://docs.microsoft.com/en-us/powershell/module/az.websites/new-azwebapp?view=azps-2.3.2
https://docs.microsoft.com/en-us/powershell/module/az.websites/new-azwebappslot?view=azps-2.3.2
직원이 중요한 데이터를 볼 수있는 내부 웹 사이트를 개발 중입니다. 웹 사이트는 인증을 위해 Azure AD (Azure Active Directory)를 사용합니다. 웹 사이트에 대한 다단계 인증을 구현해야합니다.
어떻게해야합니까? 각 정답은 솔루션의 일부를 나타냅니다.
노트; 각각의 올바른 선택은 1 포인트의 가치가 있습니다.
어떻게해야합니까? 각 정답은 솔루션의 일부를 나타냅니다.
노트; 각각의 올바른 선택은 1 포인트의 가치가 있습니다.
Correct Answer: A,D
Explanation: Only visible for TrainingDump members. You can sign-up / login (it's free).