option
Cuestiones
ayuda
daypo
buscar.php

AZ-204 sept

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
AZ-204 sept

Descripción:
228 - Azure Developer Solutions

Fecha de Creación: 2022/09/15

Categoría: Otros

Número Preguntas: 31

Valoración:(0)
COMPARTE EL TEST
Nuevo ComentarioNuevo Comentario
Comentarios
NO HAY REGISTROS
Temario:

You develop an Azure web app. You monitor performance of the web app by using Application Insights. You need to ensure the cost for Application Insights does not exceed a preset budget. What should you do?. Implement ingestion sampling using the Azure portal. Implement ingestion sampling using the Application Insights SDK. Set a daily cap for the Application Insights instance. Implement adaptive sampling using the Azure portal. Implement adaptive sampling using the Application Insights SDK.

You need to Implement the retail store location Azure Function. How should you configure the solution? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Binding. Binding Direction. Trigger.

You are preparing to deploy a medical records application to an Azure virtual machine (VM). The application will be deployed by using a VHD produced by an on-premises build server. You need to ensure that both the application and related data are encrypted during and after deployment to Azure. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Encrypt the on-premises VHD by using BitLocker without a TPM. Upload the VM to Azure Storage. Encrypt the on-premises VHD by using BitLocker without a TPM. Upload the VM to Azure Storage. Run the Azure PowerShell command Set-AzureRmVMDiskEncryptionExtension. Encrypt the on-premises VHD by using BitLocker with a TPM. Upload the VM to Azure Storage. Run the Azure PowerShell command New-AzureRmvM.

You have an Azure Cosmos 06 instance that uses the Strong consistency level and 10,000 Request Units (RUs) per container. <3eo-replication is enabled. The instance stores restaurant information including location, menu items, and start. You currently store information for 1,000 restaurant locations, 500 menu items, and 10,000 staff members. You select the location id as the partition key. How many logical partitions will be created for the container?. 500. 1.100. 10.000.000. 10.000.

You are developing an Azure Function App by using Visual Studio. The app will process orders input by an Azure Web App. The web app places the order information into Azure Queue Storage. You need to review the Azure Function App code shown below. The code will log the time that the order was processed from the queue. When the ProcessOrders function fails. the function will retry up to five times for a given order, including the first try. When there a re multiple orders in the queue, a batch of orders will be retrieved from the queue and the ProccessorOrders functions will run multiple instances concurrently to process the orders. The ProcessOrders functions will output the order to an Orders table in Azure Table Storage.

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You are developing a website that will run as an Azure Web App. Users will authenticate by using their Azure Active Directory (Azure AD) credentials. You plan to assign users one of the following permission levels for the website: admin, normal, and reader. A user's Azure AD group membership must be used to determine the permission level. You need to configure authorization. Solution: * Create a new Azure AD application. In the application's manifest, define application roles that match the required permission levels for the application. * Assign the appropriate Azure AD group to each role. In the website, use the value of the roles claim from the JWT for the user to determine permissions. Does the solution meet the goal?. yes. no.

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. Margie's Travel is an international travel and bookings management service. The company is expanding into restaurant bookings. You are tasked with implementing Azure Search for the restaurants listed in their solution You create the index in Azure Search. You need to import the restaurant data into the Azure Search service by using the Azure Search NET SDK. Solution: 1 Create a SearchlndexClient object to connect to the search index 2. Create an IndexBatch that contains the documents which must be added. 3. Call the Documents.Index method of the SearchIndexClient and pass the IndexBatch. . Does the solution meet the goal?. yes. no.

you need to test the availability of the corporate website. Which two test types can you use?. Standard. Custom testing using the TrackAvailability API method. Multi-step. URL Ping.

A company is developing a gaming platform. Users can join teams to play online and see leaderboards that include player statistics. The solution includes an entity named Team. You plan to implement an Azure Redis Cache instance to improve the efficiency of data operations for entities that rarely change. You need to invalidate the cache when team data is changed. How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. increase availability. send logs.

You need to support the requirements for the Shipping Logic App. What should you use?. Azure Active Directory Application Proxy. Site-to-Site (S2S) VPN connection. On-premises Data Gateway. Point-to-Site (P2S) VPN connection.

You need to add code at line PC26 of Processing.cs to ensure that security policies are met. How should you complete the code that you will add at line PC26? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. var key = keyBundle. Key;. var key = keyBundle.Keyldentifier.Identifier;. var key = await resolver.ResolveKeyAsync("encrypt”, null);. var key = await resolver.ResolveKeyAsync(keyBundle Keyldentifier.Identifier, CancellationToken.None);. var x = keyBundle.Managed;. var x = AuthenticationScheme. SharedKey;. var x = new BlobEncryptionPolicy(key, resolver);. cloudBlobClient. AuthenticationScheme = x;. cloudBlobClient DefaultRequestOptions. EncryptionPolicy = x;. cloudBlobClient. DefaultRequestOptions.RequireEncryption = x;.

You need to ensure that network security policies are met. How should you configure network security? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. SSL certificate. Proxy type.

You need to implement the delivery service telemetry data How should you configure the solution? NOTE: Each correct selection is worth one point. API. Partition Key.

You need to secure the Azure Functions to meet the security requirements. Which two actions should you perform? Each correct answer presents part of the solution NOTE: Each correct selection is worth one point. Store the RSA-HSM key in Azure Cosmos DB. Apply the built-in policies for customer-managed Keys and allowed locations. Create a free tier Azure App Configuration instance with a new Azure AD service principal. Store the RSA-HSM key in Azure Key Vault with soft-delete and purge-protection features enabled. Store the RSA-HSM key in Azure Blob storage with an immutability policy applied to the container.

You develop and deploy an Azure App Service web app. The app is deployed to multiple regions and uses Azure Traffic Manager. Application Insights is enabled for the app. You need to analyze app uptime for each month. Which two solutions win achieve the goal? Each correct answer presents a complete solution NOTE: Each correct selection is worth one point. Azure Monitor metrics. Application Insights web tests. Azure Monitor logs. Application Insights alerts.

You develop a solution that uses Azure Virtual Machines (VMs). The VMs contain code that must access resources in an Azure resource group. You grant the VM access to the resource group in Resource Manager. You need to obtain an access token that uses the VMs system-assigned managed identity. Which two actions should you perform? Each correct answer presents part of the solution. Use PowerShell on a remote machine to make a request to the local managed identity for Azure resources endpoint. Use PowerShell on the VM to make a request to the local managed identity for Azure resources endpoint. From the code on the VM. generate a user delegation SAS token. From the code on the VM. call Azure Resource Manager using an access token. From the code on the VM. call Azure Resource Manager using a SAS token.

You are developing a back-end Azure App Service that scales based on the number of messages contained in a Service Bus queue. A rule already exists to scale up the App Service when the average queue length of unprocessed and valid queue messages is greater than 1000. You need to add a new rule that will continuously scale down the App Service as long as the scale up condition is not met. How should you configure the Scale rule? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. image: https://www.exam-tests.com/uploads/imgs/ZXhhbS10ZXN0c3xBWi0yMDQgVjE5LjI1@img_220.jpg. Storage queue. Service Bus queue. Active Message Count. Message Count. Total. Less than or equal to. Count. Increase count by. Decrease count by. Greather than or equal to.

You need to secure the Azure Functions to meet the security requirements. Which two actions should you perform? Each correct answer presents part of the solution NOTE: Each correct selection is worth one point. Store the RSA-HSM key in Azure Cosmos DB. Apply the built-in policies for customer-managed Keys and allowed locations. Create a free tier Azure App Configuration instance with a new Azure AD service principal. Create a standard tier Azure App Configuration instance with an assigned Azure AD managed identity. Store the RSA-HSM key in Azure Key Vault with soft-delete and purge-protection features enabled. Store the RSA-HSM key in Azure Blob storage with an immutability policy applied to the container.

You have an Azure Batch project that processes and converts files and stores the files in Azure storage. You are developing a function to start the batch job. You add the following parameters to the function. Parameter name | Description fileTasks | a list of tasks to be return jobId | the identifier that must be assigned to the job outputContainerSasUrl | a storage SAS URL to store successsfully converted files failedContainerSasUrl | a storage SAS URL to store copies of files that failed to convert You must ensure that converted files are placed in the container referenced by the outputContainerSasUrl parameter. Files which fail to convert are places in the container referenced by the failedContainerSasUrl parameter. You need to ensure the files are correctly processed. How should you complete the code segment? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. image: https://www.exam-tests.com/uploads/imgs/ZXhhbS10ZXN0c3xBWi0yMDQgVjE5LjI1@img_367.jpg. CloudJob = batchClient.JobOperations.__();. new OutputFileUploadOptions(OutputFileUploadCondition.____)));. new OutputFileUploadOptions(OutputFileUploadCondition, ____)));. task ______ = outputFileList;.

Your company purchases an Azure subscription and plans to migrate several on-premises virtual machines to Azure. You need to design the infrastructure required (or the Azure virtual machines solution. What should you include in the design?. the settings of the Azure virtual networks. the number of Azure Storage accounts. the number of Azure regions. the size of the virtual machines.

You are developing an app that manages users for a video game. You plan to store the region, email address, and phone number for the player. Some players may not have a phone number. The player's region will be used to load-balance data. Data for the app must be stored in Azure Table Storage. You need to develop code to retrieve data for an individual player. How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. image: https://www.exam-tests.com/uploads/imgs/ZXhhbS10ZXN0c3xBWi0yMDQgVjE5LjI1@img_620.jpg. PartitionKey =. RowKey =. async void GetPlayer(string cs, _____ table, string pk, string rk). 1 -> _____________. 2 -> _____________.

A company is implementing a publish-subscribe (Pub/Sub) messaging component by using Azure Service Bus. You are developing the first subscription application. In the Azure portal you see that messages are being sent to the subscription for each topic. You create and initialize a subscription client object by supplying the correct details, but the subscription application is still not consuming the messages. You need to ensure that the subscription client processes all messages. Which code segment should you use?. await subscriptionClient.AddRuleAsync(new RuleDescription(RuleDescription.DefaultRuleName, new TrueFilter()));. await subscriptionClient.CloseAsync();. subscriptionClient = new SubscriptionClient(ServiceBusConnectionString, TopicName, SubscriptionName); D18912E1457D5D1DDCBD40AB3BF70D5D. subscriptionClient.RegisterMessageHandler(ProcessMessagesAsync,messageHandlerOptions);.

You need to insert code at line LE03 of LoginEvent.cs to ensure that all authentication events are processed correctly. How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. id. eventType. dataVersion. metadataVersion.

All. WebHook. EventHub. subjectEndsWith. Microsoft.Storage. subjectBeginsWith. Microsoft.Storage.BlobCreated.

Debe recuperar la cadena de conexión de la base de datos. ¿Qué valores debe usar? Para responder, seleccione las opciones apropiadas en el área de respuesta. NOTA: Cada selección correcta vale un punto. cpandkeyvault. PostgreSQLConn. 80df3e46ffcd4f1cb187f79905e9a1e8. Environment. Session. ViewState. QueryString.

/health. /status. RequestTelemetry. PageViewTelemetry. ITelemetryProcessor. ITelemetryInitializer.

You have a web app named MainApp. You are developing a triggered App Service background task by using the WebJobs SDK. This task automatically invokes a function code whenever any new data is received in a queue. You need to configure the services. Which service should you use for each scenario? To answer, drag the appropriate services to the correct scenarios. Each service may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point. Logic Apps. WebJobs. Flow.

You need to update the APIs to resolve the testing error. How should you complete the Azure CLI command? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. cors. add. config. deployment. up. slot. allowed-origins. http://test-shippingapi.wideworldimporters.om. http://test.wideworldimporters.om.

https://www.exam-tests.com/uploads/AZ-204/029a79f5d979121891cb3fdd97196799.jpg. Login to the registry and push image. Create an alias of the image with a new build number. Create an alias of the image with the fully qualified path to the registry. Download the image to your local computer. Build a new application image by using dockerfilt.

Desarrolla una oferta de software como servicio (SaaS) para administrar fotografías. Los usuarios cargan fotos en un servicio web que luego almacena las fotos en el almacenamiento de Azure Storage Blob. El tipo de cuenta de almacenamiento es de uso general V2. Cuando se cargan fotos, deben procesarse para producir y guardar una versión de la imagen compatible con dispositivos móviles. El proceso para producir una versión compatible con dispositivos móviles de la imagen debe comenzar en menos de un minuto. Debe diseñar el proceso que inicia el procesamiento de la foto. Solución: active el procesamiento de fotografías desde eventos de almacenamiento de blobs. ¿La solución cumple con el objetivo?. yes. no.

You plan to create a Docker image that runs as ASP.NET Core application named ContosoApp. You have a setup script named setupScript.ps1 and a series of application files including ContosoApp.dll. You need to create a Dockerfile document that meets the following requirements: *Call setupScript.ps1 when the container is built. *Run ContosoApp.dll when the container starts. The Docker document must be created in the same folder where ContosoApp.dll and setupScript.ps1 are stored. Which four commands should you use to develop the solution? To answer, move the appropriate commands from the list of commands to the answer area and arrange them in the correct order. RUN powershell /setupScript ps1 CMD ["dotnet”, “ContosoApp.diI']. EXPOSE /ContosoApp/ /apps/ContosoApp. COPY ./. WORKDIR /apps/ContosoApp. FROM microsoft/aspnetcore:2.0. CMD powershell /setupScript.ps1 ENTRYPOINT ["dotnet", "ContosoApp.dll"].

Denunciar Test