Comprehensive Questions
(Frequently Tested) with
Verified Answers Graded A+
You are building a traffic monitoring system that monitors traffic along six highways. The system
produces time series analysis-based reports for each highway. Data from traffic sensors are
stored in Azure Event Hub. Traffic data is consumed by four departments. Each department has
an Azure Web App that displays the time series-based reports and contains a WebJob that
processes the incoming data from Event Hub. All Web Apps run on App Service Plans with three
instances. Data throughput must be maximized. Latency must be minimized. You need to
implement the Azure Event Hub. Which settings should you use? Select appropriate answers
from below.
Number of partitions: 3, 4, 6, or 12.
Partition Key: Highway, Department, Timestamp, or VM name. - Answer: 6 & Highway.
There are 6 highways.
Note: number of partition is specified at creation and must be between 2 and 32.
1. You have two Hyper-V hosts name Host1 and Host2. Host1 has an Azure virtual machine
named VM1 that was deployed by using custom AZURE RESOURCE MANAGER template. You
need to move VM1 to Host2. What should you do? - Answer: From Redeploy blade, Click
Redeploy.
,When you redeploy a VM, it moves the VM to a new node within the Azure infrastructure and
then powers it back on, retaining all your configuration options and associated resources.
2.You have downloaded an Azure Resource Manager template to deploy numerous virtual
machines. The template is based on a current virtual machine, but must be adapted to
reference an administrative password
You need to make sure that the password is not stored in plain text
You are preparing to create the necessary components to achieve your goal.
Which of the following should you create to achieve your goal? - Answer: An Azure Key Vault
An Access Policy
3. Your company has an Azure Kubernetes Service (AKS) cluster that you manage from an Azure
AD-joined Device. The cluster is located in a resource group. Developers have created an
application named MyApp. MyApp was packaged into a container image. You need to deploy
the YAML manifest file for the application.
Solution: You install the Azure CLI on the device and run the kubectl apply -if myapp.yaml
command.
Does this meet the goal? - Answer: Yes
- kubectl apply -f myapp.yaml applies a configuration change to a resource from a file or stdin
4. Your company has an Azure Kubernetes Service (AKS) cluster that you manage from an Azure
AD-joined Device. The cluster is located in a resource group. Developers have created an
application named MyApp. MyApp was packaged into a container image. You need to deploy
the YAML manifest file for the application.
,Solution: You install the docker client on the device and run the docker run -it microsoft/azure-
cli:0.10.17 command.
Does this meet the goal? - Answer: No
5. Your company has a web app named WebApp1.
You use the WebJobs SDK to design a triggered App Service background task that automatically
invokes a function in the code every time new data is received in a queue.
You are preparing to configure the service processes a queue data item.
Which of the following is the service you should use? - Answer: WebJobs
6. Your company has an Azure subscription
You need to deploy a number of Azure virtual machines to the subscription by using Azure
Resource Manager (ARM) templates. The virtual machines will be included in a single availability
set.
You need to ensure that the ARM templates allows for as many virtual machines as possible to
remain accessible in the event of fabric failure or maintenance.
Which of the following is the value that you should configure for the platformFaultDomainCount
property?
A.10
B.20
C.MIN Value
D.Max Value - Answer: Max Value
, - The number of fault domains for managed availability sets varies by region - either two or
three per region
7. Your company has an Azure subscription
You need to deploy a number of Azure virtual machines to the subscription by using Azure
Resource Manager (ARM) templates. The virtual machines will be included in a single availability
set.
You need to ensure that the ARM templates allows for as many virtual machines as possible to
remain accessible in the event of fabric failure or maintenance.
Which of the following is the value that you should configure for the platformFaultDomainCount
property?
A.10
B.20
C.30
D.40 - Answer: 40
Each virtual machine in your availability set is assigned an update domain and a fault domain by
the underlying Azure platform. For a given availability set, 5 non-user-configurable update
domains are assigned by default (Resource Manager deployments can then be increased to
provide up to 20 update domains) to indicate groups of virtual machines and underlying
physical hardware that can be rebooted at the same time.
8. You are creating an Azure Cosmos DB account that makes use of the SQL API. Data will be
added to the account every day by a web application.
You need to ensure that an email notification is sent when information is received from IoT
devices, and that compute cost is reduced.
You decide to deploy a function app.