Premium

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



Question : You are managing an Azure website, in Standard mode at the following addres acmeshell.azurewebsites.net. Now Acmeshell Inc has a new domain for the siite that
needs to be accessible by SSL. You need to be able to add a custom domain to the Azure Web Site and assign an SSL certificate. Which three steps should you perform next in sequence?

A. Create a CNAME record from www.Acmeshell.com to acmesheel.azurewebsite.net
B. Add www.Acmeshell.com to the list of domain names as a custom domain.
C. Add A record in your DNS for www.Acmeshell.com to point to the Azure web site IP
D. Add SSL binding for the www.Acmeshell.com domain with the IP-based SSL option selected.
E. Add SSL binding for the www.Acmeshell.com domain with the Server Name indication (SNI) SSL option selected.
F. Create a new file that will redirect the site to the new URL and upload it to the Azure Website.
 : You are managing an Azure website, in Standard mode at the following addres acmeshell.azurewebsites.net. Now Acmeshell Inc has a new domain for the siite that
1. A,B,C
2. C,D,E
3. Access Mostly Uused Products by 50000+ Subscribers
4. A,B,E
5. A,C,F

Correct Answer : Get Lastest Questions and Answer : Exp: Root domain - the domain name that you reserved with the domain registrar (represented by the @ host record, typically). For example, contoso.com.

Subdomain - any domain that's under your root domain. For example, http://www.contoso.com (represented by the www host record). You can map different subdomains of the same root
domain to different apps in Azure.

The advantage of CNAME is that it persists across IP address changes. If you delete and recreate your app, or change from a higher pricing tier back to the Shared tier, your app's
virtual IP address may change. Through such a change, a CNAME record is still valid, whereas an A record requires an update.

IP based SSL associates a certificate with a domain name by mapping the dedicated public IP address of the server to the domain name. This requires each domain name (contoso.com,
fabricam.com, etc.) associated with your service to have a dedicated IP address. This is the traditional method of associating SSL certificates with a web server. o SNI based SSL is
an extension to SSL and Transport Layer Security (TLS) that allows multiple domains to share the same IP address, with separate security certificates for each domain. Most modern
browsers (including Internet Explorer, Chrome, Firefox and Opera) support SNI, however older browsers may not support SNI. For more information on SNI, see the Server Name Indication
article on Wikipedia.





Question : You are working in Acmeshell Inc and managing a website named AcmeWeb and logging is enabled for this website (Assume it is hosted on Azure).
You need to view only errors from your log files in a continuous stream as they occur. Which Windows Power Shell command should you execute?

 : You are working in Acmeshell Inc and managing a website named AcmeWeb  and logging is enabled for this website (Assume it is hosted on Azure).
1. Get-AzureWebSiteLog -Name AcmeWeb -OutBuffer Error

2. Save-AzureWebSiteLog -Name AcmeWeb -Output Errors

3. Access Mostly Uused Products by 50000+ Subscribers

4. Get-Azure WebSiteLog -Name AcmeWeb -Message Error

Correct Answer : Get Lastest Questions and Answer : Exp: Streaming with Azure PowerShell

To stream logging information, start a new instance of Azure PowerShell and use the following command:


Get-AzureWebSiteLog -Name webappname -Tail
This will connect to the web app specified by the -Name parameter and begin streaming information to the PowerShell window as log events occur on the web app. Any information written
to files ending in .txt, .log, or .htm that are stored in the /LogFiles directory (d:/home/logfiles) will be streamed to the local console.

To filter specific events, such as errors, use the -Message parameter. For example:


Get-AzureWebSiteLog -Name webappname -Tail -Message Error
To filter specific log types, such as HTTP, use the -Path parameter. For example:


Get-AzureWebSiteLog -Name webappname -Tail -Path http
To see a list of available paths, use the -ListPath parameter.




Question : You are working in Acmeshell Inc., which has two websites (AcmeShell.com and AcmeWeb.com) hosted on internal servers. However recently they are facing some issues
related to performance due to heavy traffic. You planned to migrate the sites to Azure Websites. Sites respective configuration is as below.
AcmeShell.com
Purpose: Public-facing forum for clients and customers to interact.

Its Characteristics
- Developed Using Node.js
- Contains 11GB data
- Deployed to two instances

AcmeWeb.com
Purpose : Public-facing portal for users to access their customer records
Its Characteristics
- Developed in ASP.NET 4.0
- Contains 9GB Data
- Deployed on 3 instances.

Select correct web hosting plan for websites
 : You are working in Acmeshell Inc., which has two websites (AcmeShell.com and AcmeWeb.com) hosted on internal servers. However recently they are facing some issues
1. Acmeshell.com : Free AcmeWeb.com : Standard

2. Acmeshell.com : Standard AcmeWeb.com : Shared

3. Access Mostly Uused Products by 50000+ Subscribers

4. Acmeshell.com : Basic AcmeWeb.com : Standard

5. Acmeshell.com : Standard AcmeWeb.com : Basic

Correct Answer : Get Lastest Questions and Answer : Exp: Free Shared (Preview) Basic Standard Premium (Preview)
Storage 1 GB 1 GB 10 GB 50 GB 500 GB


Related Questions


Question : You are an administrator of a Cloud service named as 'QuickTechieService' And for various purposes there are three different virtual machines have been created
QVM1, QVM2,QVM3 . Now your team want you to provision new VM in same service 'QuickTechieService' . You need to use the latest gallery image to create a new Windows Server 2012 R2 VM
that has a target IOPS of 500 for any provisioned disks. Which PowerShell command should you use?

 : You are an administrator of a Cloud service named as 'QuickTechieService' And for various purposes there are three different virtual machines have been created
1. $VirtualMachine = New-AzureRVMConfig -VMName "VirtualMachine07" -VMSize "Standard_A1" -AvailabilitySetID $AvailabilitySet.Id

2. $VirtualMachine = New-AzureRVMConfig -VMName "VirtualMachine07" -VMSize "Basic_A1" -AvailabilitySetID $AvailabilitySet.Id

3. Access Mostly Uused Products by 50000+ Subscribers

4. 1 and 3

5. 2 and 3


Question : You are managing a Azure VM named as QuickServer in a service name QuickService. Because you have configured log level to trace, which causes VM storage issues. You have
to create a new 256 GB disk and
attach it to the server. Select the correct Powershell command for this.
 : You are managing a Azure VM named as QuickServer in a service name QuickService. Because you have configured log level to trace, which causes VM storage issues. You have
1. Get-AzureVM "QuickService" -Name "QuickServer" | Add-AzureDataDisk -createnew -disksizeInGB 256 -DiskLabel "data1" -LUN 1 | Update-AzureVM

2. Get-AzureVM "QuickService" -Name "QuickServer" | Join-AzureDataDisk -join -disksizeInGB 256 -DiskLabel "data1" -LUN 1 | Join-AzureVM

3. Access Mostly Uused Products by 50000+ Subscribers

4. Get-AzureVM "QuickService" -Name "QuickServer" | Update-AzureDataDisk -update -disksizeInGB 256 -DiskLabel "data1" -LUN 1 | Update-AzureVM



Question : QuickTechie.com is hosted in Azure Cloud in a VM. You are located in the India and have a worldwide user base.
Developers in US report that they experience significant delays when they execute the services.
You need to verify application performance from different locations. Which type of monitoring should you configure?
 : QuickTechie.com is hosted in Azure Cloud in a VM. You are located in the India and have a worldwide user base.
1. Disk Read

2. Endpoint

3. Access Mostly Uused Products by 50000+ Subscribers

4. CPU

5. Average Response Time


Question : We have two different cloud services for each hosting

www.QuickTechie.com (QuickCloudService)
www.Training4Exam.com (TrainingCloudService)

You have created a virtual machine, named TrainingVM in TrainingCloudService.
Now make sure that developer from QuickCloudService will able to access the TrainingVM using port 8080. How it can be enabled?



 : We have two different cloud services for each hosting
1. Create a firewall rule.

2. Configure load balancing.

3. Access Mostly Uused Products by 50000+ Subscribers

4. Configure port forwarding.

5. Create an end point.



Question : You are developing an application which will be deployed in Azure Cloud. Now you have three different subscription for Azure Dev, Test and Prod. Your Azure Power Shell
profile is configured with the Dev subscription as the default. You need to create a new virtual machine in the Test subscription by using the least administrative effort. Which
Power Shell command should you use?

 : You are developing an application which will be deployed in Azure Cloud. Now you have three different subscription for Azure Dev, Test and Prod. Your Azure Power Shell
1. Select-AzureSubscription -SubscriptionName "Test"

2. Select-AzureSubscription -SubscriptionName "Test" -Defualt

3. Access Mostly Uused Products by 50000+ Subscribers

4. Select-AzureSubscription -SubscriptionName "Test" -NoCurrent


Question : You are managing a virtual machine on Azure Cloud Service, name of the VM is QuickVM . You have created an application which help user to quickly upload the files
(Similar to Google Drive). However, your application became quite popular and application usage has increased many fold. However, your application supports only file upload less than 10 MB
Now you wanted to improve disk performance of your QuickVM, select the correct Powershell command ?
 : You are managing a virtual machine on Azure Cloud Service, name of the VM is QuickVM . You have created an application which help user to quickly upload the files
1. Get-AzureVM "AppService" -Name "QuickVM" | Set-AzureDataDisk -LUN 3 -HostCaching ReadWrite | Update-AzureVM.

2. Get-AzureVM "AppService" -Name "QuickVM" | Set-AzureDataDisk -LUN 3 -HostCaching ReadOnly | Update-AzureVM.

3. Access Mostly Uused Products by 50000+ Subscribers

4. A Get-AzureVM "AppService" -Name "QuickVM" | Set-AzureDataDisk -LUN 3 | Update-AzureVM.