Premium

Microsoft Certified: Azure Solutions Architect Expert Certification Questions and Answer (Dumps and Practice Questions)



Question : You manage a cloud service that utilizes data encryption.
You need to ensure that the certificate used to encrypt data can be accessed by the cloud service application. What should you do?

 : You manage a cloud service that utilizes data encryption.
1. Upload the certificate referenced in the application package.

2. Deploy the certificate as part of the application package.

3. Access Mostly Uused Products by 50000+ Subscribers

4. Use RDP to install the certificate.

Correct Answer : Get Lastest Questions and Answer :
Explanation: Adding an app setting named WEBSITE_LOAD_CERTIFICATES with its value set to the thumbprint of the certificate will make it accessible to your web application.
You can have multiple comma-separated thumbprint values or can set this value to " * " (without quotes) in which case all your certificates will be loaded to your web applications
personal certificate store.
To add this configuration for your website, go to the configure option for your website in the management portal, scroll down to the app settings section and add the setting as shown
below with the thumbprint of the certificate you uploaded in the previous step.
Sample code to access Certificate in C#
X509Store certStore = new X509Store(StoreName.My, StoreLocation.CurrentUser);
certStore.Open(OpenFlags.ReadOnly);
X509Certificate2Collection certCollection = certStore.Certificates.Find(
X509FindType.FindByThumbprint,
// Replace below with your cert's thumbprint
"E661583E8FABEF4C0BEF694CBC41C28FB81CD870",
false);
// Get the first cert with the thumbprint
if (certCollection.Count > 0)
{
X509Certificate2 cert = certCollection[0];
// Use certificate
Console.WriteLine(cert.FriendlyName);
}
certStore.Close();




Question : As you know, www.HadoopExam.com is hosted on Azure Cloud. As an administrator yor are managing the VM on which www.HadoopExam.com is hosted. You have uploaded this VM to
to Azure, You need to ensure that you are able to deploy the BGInfo and VMAccess extensions. What should you do?
 : As you know, www.HadoopExam.com is hosted on Azure Cloud. As an administrator yor are managing the VM on which www.HadoopExam.com is hosted. You have uploaded this VM to
1. Select the Install the VM Agent checkbox while provisioning a VM based on your uploaded VHD.
2. Select the Enable the VM Extensions checkbox while provisioning a VM based on your uploaded VHD.
3. Access Mostly Uused Products by 50000+ Subscribers
$vm.VM.ProvisionGuestAgent = $true
Update-AzureVM -Name $name -VM $vm.VM -ServiceName $svc
4. Install the VM Agent MSI and execute the following Power Shell commands: $vm = GetAzureVM -serviceName $svc -Name $name Set-AzureVMBGInfoExtension -VM $vm.VM
Set-AzureVM Access Extension -VM $vm.VM Update-AzureVM -Name Sname -VM $vm.VM -ServiceName $svc

Correct Answer : Get Lastest Questions and Answer : Exp: To be "able to deploy the BGInfo and VMAccess extensions", in general, we need to have Azure VM agent installed to the machine.
In the question there is no a word regarding sysprep. We installing the agent from MS, then updating the machine with info that the agent is installed

Install the VM Agent MSI and execute the following PowerShell
$vm = Get-AzureVM -serviceName $svc -Name $name
$vm.VM.ProvisionGuestAgent = $true
Update-AzureVM -Name Sname -VM $vm.VM -ServiceName $svc

Once the VM Agent is enabled on the VM, any available extension like BGInfo or VMAccess can be added to the VM





Question : You are working as a cloud Administrator for the QuickTechie Inc. and manage a cloud service that supports features hosted by two instances of an Azure virtual machine
(VM). you discover that occasional outages cause your service to fail. You need to minimize the impact of outages to your cloud service. Which two actions should you perform?

A. Deploy a third instance of the VM.
B. Configure Load Balancing on the VMs.
C. Redeploy the VMs to belong to an Affinity Group.
D. Configure the VMs to belong to an Availability Set.
 : You are working as a cloud Administrator for the QuickTechie Inc. and manage a cloud service that supports features hosted by two instances of an Azure virtual machine
1. A,B
2. B,C
3. Access Mostly Uused Products by 50000+ Subscribers
4. A,D
5. B,D

Correct Answer : Get Lastest Questions and Answer : Exp: Azure Load Balancer delivers high availability and network performance to your applications. It is a Layer 4 (TCP, UDP) load balancer that distributes incoming
traffic among healthy instances of services defined in a load-balanced set.
Azure Load Balancer configuration
It can be configured to:
" Load balance incoming Internet traffic to virtual machines. This configuration is known as Internet-facing load balancing.
" Load balance traffic between virtual machines in a virtual network, between virtual machines in cloud services, or between on-premises computers and virtual machines in a
cross-premises virtual network. This configuration is known as internal load balancing.
" Forward external traffic to a specific virtual machine.
All resources in the cloud need a public IP address to be reachable from the Internet. Within the cloud infrastructure, Microsoft Azure uses non-routable IP addresses for its
resources. Azure uses network address translation (NAT) with public IP addresses to communicate to the Internet.

Azure Resource Manager Deployment model
In the Resource Manager deployment model there is no need to create a Cloud service. The load balancer can be created, explicitly, to route traffic among virtual machines.
In the Resource Manager model, a Public IP address is its own resource that can be associated with a domain label or a DNS name. In this case, the public IP address is associated
with the load balancer resource. Load balancer rules and inbound NAT rules use the public IP address as the Internet endpoint for the resources that are receiving load-balanced
network traffic.
A private or public IP address is assigned to the network interface resource attached to a virtual machine. Once a network interface is added to a load balancer's back-end IP address
pool, the load balancer is able to send load-balanced network traffic based on the load-balanced rules that are created.



Related Questions


Question : You administer an Azure Storage account named contoso storage. The account has queue containers with logging enabled.
You need to view all log files generated during the month of July 2014. Which URL should you use to access the list?
 : You administer an Azure Storage account named contoso storage. The account has queue containers with logging enabled.
1. http://contosostorage.queue.core.windows.net/Slogs?restype=container&comp=list&prefix=queue/2014/07
2. http://contosostorage.queue.core.windows.net/Sfiles?restype=container&comp=list&prefix=queue/2014/07
3. Access Mostly Uused Products by 50000+ Subscribers
4. http://contosostorage.blob.core.windows.net/Slogs?restype=container&comp=list&prefix=blob/2014/07




Question : Your company has two physical locations configured in a geo-clustered environment that includes:
System Center Virtual Machine Manager 2012 R2 System Center Data Protection Manager 2012 R2 SQL Server 2012 Windows Server 2012 R2 Hyper-V Over 100 virtual machines
(VMs) in each physical location Your company has recently signed up for Azure. You plan to leverage your current network environment to provide a backup solution for your VMs.
You need to recommend a solution that ensures all VMs are redundant and deployable between locations. You also want the solution to minimize downtime in the event of an
outage at either physical location.

Which solution should you recommend?
 : Your company has two physical locations configured in a geo-clustered environment that includes:
1. Configure a backup vault in Azure and use Data Protection Manager to back up The
Windows Servers.
2. Use Data Protection Manager and back up the VMs in each location.
3. Access Mostly Uused Products by 50000+ Subscribers
4. Use Azure site recovery in an on-premises to on-premises protection configuration.




Question : You manage an application running on Azure Web Sites Standard tier. The application uses a substantial amount of large image files and is used by people around the
world. Users from Europe report that the load time of the site is slow. You need to implement a solution by using Azure services. What should you do?
 : You manage an application running on Azure Web Sites Standard tier. The application uses a substantial amount of large image files and is used by people around the
1. Configure Azure blob storage with a custom domain.
2. Configure Azure CDN to cache all responses from the application web endpoint.
3. Access Mostly Uused Products by 50000+ Subscribers
4. Configure Azure CDN to cache site images and content stored in Azure blob storage.




Question : You manage a set of virtual machines (VMs) deployed to the cloud service named fabrikamVM. You configure auto scaling according to the following parameters:
With an instance range of two to six instances To maintain CPU usage between 70 and 80 percent To scale up one instance at a time With a scale up wait time of 30 minutes To scale
down one instance at a time With a scale down wait time of 30 minutes You discover the following usage pattern of a specific application:
The application peaks very quickly, and the peak lasts for several hours. CPU usage stays above 90 percent for the first 1 to 1.5 hours after usage increases. After 1.5 hours, the
CPU usage falls to about 75 percent until application usage begins to decline. You need to modify the auto scaling configuration to scale up faster when usage peaks. What are two
possible ways to achieve this goal? Each correct answer presents a complete solution.

A. Decrease the scale down wait time.

B. Decrease the scale up wait time.

C. Increase the number of scale up instances.

D. Increase the scale up wait time.

E. Increase the maximum number of instances.

 : You manage a set of virtual machines (VMs) deployed to the cloud service named fabrikamVM. You configure auto scaling according to the following parameters:
1. memory
2. A,B
3. Access Mostly Uused Products by 50000+ Subscribers
4. C,D
5. A,D




Question : Your company network has two physical locations configured in a geo-clustered environment. You create a Blob storage account in Azure that contains all the data
associated with your company. You need to ensure that the data remains available in the event of a site outage. Which storage option should you enable?

 : Your company network has two physical locations configured in a geo-clustered environment. You create a Blob storage account in Azure that contains all the data
1. Locally redundant storage
2. Geo-redundant storage
3. Access Mostly Uused Products by 50000+ Subscribers
4. Read-only geo-redundant storage






Question : You develop a set of Power Shell scripts that will run when you deploy new virtual machines (VMs).
You need to ensure that the scripts are executed on new VMs. You want to achieve this goal by using the least amount of administrative effort. What should you do?

 : You develop a set of Power Shell scripts that will run when you deploy new virtual machines (VMs).
1. Create a new GPO to execute the scripts as a logon script.
2. Create a SetupComplete.cmd batch file to call the scripts after the VM starts.
3. Access Mostly Uused Products by 50000+ Subscribers
4. Load the scripts to a common file share accessible by the VMs.

5. Set the VMs to execute a custom script extension.