Premium

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



Question : You are working on a website named QuickTechie.com , which is hosted on Azure . Now you created a job which erase the logs. Name of the the job is EraseLogs.cmd
EraseLogs.cmd will be executed manually, twice or thrice a week. Now wanted to deploy this JOb. Select the correct folder in which this jobs needs to be deployed.
 : You are working on a website named QuickTechie.com , which is hosted on Azure . Now you created a job which erase the logs. Name of the the job is EraseLogs.cmd
1. ./App_Code/jobs/triggered/cleanLogs/EraseLogs.cmd

2. ./App_Data/jobs/triggered/cleanLogs/EraseLogs.cmd

3. Access Mostly Uused Products by 50000+ Subscribers

4. ./App_Data/jobs/continuous/cleanLogs/EraseLogs.cmd

Correct Answer : Get Lastest Questions and Answer :
Explanation: Where is your WebJobs stored?
A WebJob is stored under the following directory in your site:

site\wwwroot\App_Data\jobs\{job type}\{job name}

Where {job type} can be either continuous for a job that is always running or triggered for a job that starts from an external trigger (on demand / scheduler).

And {job name} is your WebJob's name.

So a continuous WebJob called myjob will be located at:

site\wwwroot\App_Data\jobs\continuous\myjob

What should be inside a WebJob directory?
The WebJob directory can contain 1 to as much as you'd like files but at the least it should contain the script that starts the WebJob's process, this script can currently be: batch
(.exe/.cmd/.bat), bash (.sh), javascript (.js as node.js), php (.php) or python (.py).

The script to be run is automatically detected using the following logic:

First look for a file called run.{supported extension} (first one found wins).
If not found look for any file with a supported extension.
If not found, this is not a runnable WebJob




Question : Your company network includes an On-Premises Windows Active Directory (AD) that has a DNS domain named contoso.local and an email domain named contoso.com. You plan to
migrate from On-Premises Exchange to Office 365. You configure DirSync and set all Azure Active Directory {Azure AD) usernames as %username%@contoso.onmicrosoft.com.

You need to ensure that each user is able to log on by using the email domain as the username. Which two actions should you perform? Each correct answer presents part of the
solution.

A. Verify the email domain in Azure AD domains.
B. Run the Set-MsolUserPnncipalName -UserPnncipalName %username%@co
ntoso.onmicrosoft.com -NewUserPrincipalName %usemame %@contoso.com Power Shell cmdlet.
C. Edit the ProxyAddress attribute on the On-Premises Windows AD user account.
D. Verify the Windows AD DNS domain in Azure AD domains.
E. Update the On-Premises Windows AD user account UPN to match the email address.
 : Your company network includes an On-Premises Windows Active Directory (AD) that has a DNS domain named contoso.local and an email domain named contoso.com. You plan to
1. A,B
2. B,C
3. Access Mostly Uused Products by 50000+ Subscribers
4. D,E
5. A,E

Correct Answer : Get Lastest Questions and Answer :
Explanation: The proxy address only effect exchange and not login office 365 login accounts. The office 365 looks at UPN for credentials. This rules C out as the answer.

The user can also have multiple email address assigned to the same account, so that rules D out.

When you sign upto office 365 you verify your DNS domain.
Azure needs to have the verified email domain otherwise it won't change the user to that domain.





Question : You develop a Windows Store application that has a web service backend. You plan to use the Azure Active Directory Authentication Library to authenticate users to
Azure Active Directory (Azure AD) and access directory data on behalf of the user. You need to ensure that users can log in to the application by using their Azure AD
credentials. Which two actions should you perform? Each correct answer presents part of the solution.

A. Create a native client application in Azure AD.
B. Configure directory integration.
C. Create a web application in Azure AD.
D. Enable workspace join.
E. Configure an Access Control namespace.
 :  You develop a Windows Store application that has a web service backend. You plan to use the Azure Active Directory Authentication Library to authenticate users to
1. A,B
2. B,C
3. Access Mostly Uused Products by 50000+ Subscribers
4. D,E
5. A,E

Correct Answer : Get Lastest Questions and Answer :
Explanation: Answer A and B is correct for the following reasons

1. It must be integrated with Azure AD
2. Its a Windows Store Application (definition of a windows store app is here http://channel9.msdn.com/Blogs/One-Dev-Minute/What-is-a-Windows-Store-app)
According to https://msdn.microsoft.com/en-us/library/dn132599.aspx , the windows store application is a native client application

"On the Tell us about your application page, you must specify a name for your application as well as indicate the type of application you are registering with Azure AD. You can
choose from a web application and/or web API (default) or native client application which represents an application that is installed on a device such as a phone or computer."
Because question is talking about window store App which either runs on mobile or Window App




Related Questions


Question : You are managing a virtual macine 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). You need to ensure that the VM sends notification in the event that avaerage response time for the web service exceeds 10 mins (Pre-defined). Select the
steps from below which you need to accomplish in sequence.

A. From the Configuration page, add a monitoring endpoint for the virtual machine
B. From the Monitor page add a Metric for response time for endpoint
C. From monitoring page, add a rule for the response time of the end point
D. From the Dashboard page, add a rule for the endpoint status.
E. From the Configuration page, add a rule for the response time of the endpoint.
 : You are managing a virtual macine on Azure Cloud Service, name of the VM is QuickVM. You have created an application which help user to quickly upload the files
1. A,B,C
2. B,C,D
3. Access Mostly Uused Products by 50000+ Subscribers
4. A,D,E
5. A,C,E


Question : You are managing a virtual machine on Azure Cloud Service, name of the VM is QuickVM inside QuickCloudService.
By looking at the logs you found unauthorized traffic to QuickVM. You need to Create a rule to limit access to QuickVM,
Also make sure that the new rule has the highest precedence. Which Azure Power Shell cmdlets and values should you use?

A. acl1 = New-AzureAclConfig Set-AzureAclConfig -AddRule -ACL $acl1 -Order 0 -Action permit -RemoteSubnet "192.168.11.0/24" -Description "Remote Desktop ACL config"
B. acl1 = New-AzureAclConfig Set-AzureAclConfig -AddRule -ACL $acl1 -Order 100 -Action permit -RemoteSubnet "192.168.11.0/24" -Description "Remote Desktop ACL config"
C. acl1 = New-AzureAclConfig Set-AzureAclConfig -AddRule -ACL $acl1 -Order 300 -Action permit -RemoteSubnet "192.168.11.0/24" -Description "Remote Desktop ACL config"
D. acl1 = New-AzureAclConfig Set-AzureAclConfig -AddRule -ACL $acl1 -Order 0 -Action allow -RemoteSubnet "192.168.11.0/24" -Description "Remote Desktop ACL config"
 : You are managing a virtual machine on Azure Cloud Service, name of the VM is QuickVM inside QuickCloudService.
1. acl1 = New-AzureAclConfig Set-AzureAclConfig -AddRule -ACL $acl1 -Order 0 -Action permit -RemoteSubnet "192.168.11.0/24" -Description "Remote Desktop ACL config"

2. acl1 = New-AzureAclConfig Set-AzureAclConfig -AddRule -ACL $acl1 -Order 100 -Action permit -RemoteSubnet "192.168.11.0/24" -Description "Remote Desktop ACL config"

3. Access Mostly Uused Products by 50000+ Subscribers

4. acl1 = New-AzureAclConfig Set-AzureAclConfig -AddRule -ACL $acl1 -Order 0 -Action allow -RemoteSubnet "192.168.11.0/24" -Description "Remote Desktop ACL config"


Question : Recently below two compnies got merged

Acmeshell Inc. (Mumbai)
QuickTechie Inc. (Banglore)

Both have their virtual machine hosted in Azure cloud. You have been given to maintain virtual networks as well azure environment. Now you are done with network merge and related
stuff. Now some of the employees do work from remote location as well as from public locations. All users required from both companies require to access virtual networks. Select
which
secure cross premise connectivity option is needed for each type of user.


 : Recently below two compnies got merged
1. Backoffice User : Site to Site, Remote Users : Point to Site

2. Backoffice User : Multi Site, Remote Users : Point to Site

3. Access Mostly Uused Products by 50000+ Subscribers

4. Backoffice User : Multi Site, Remote Users : Multi Site


Question : You have created a Virtual Network in Azure named QuickNet,
You design the virtual network to include two subnets, one named Quick1-subnet and one named Quick2-subnet.

Quick1-subnet : (Starting IP : 10.0.0.0, CIDR Address Count : /27(32) , Usable Address Range : 10.0.0.0-10.0.0.31)
Quick2-subnet : (Starting IP : 10.0.0.32, CIDR Address Count : /29(8) , Usable Address Range : 10.0.0.32-10.0.0.39)

identify the number of IP addresses that will be available for virtual machines (VMs) or cloud services in each subnet.
 : You have created a Virtual Network in Azure named QuickNet,
1. 3 for Quick1-subnet and 3 for Quick2-subnet

2. 3 for Quick1-subnet and 27 for Quick2-subnet

3. Access Mostly Uused Products by 50000+ Subscribers

4. 31 for Quick1-subnet and 3 for Quick2-subnet

5. 27 for Quick1-subnet and 3 for Quick2-subnet


Question : You administer an Azure solution that uses a virtual network named QuickVNet. QuickVNet has a single subnet named QuickSubnet-.
You discover a high volume of network traffic among four virtual machines (VMs) that are part of QuickSubnet-1.
You need to isolate the network traffic among the four VMs. You want to achieve this goal with the least amount of downtime and impact on users.
What should you do?
 : You administer an Azure solution that uses a virtual network named QuickVNet. QuickVNet has a single subnet named QuickSubnet-.
1. Create a new subnet in the existing virtual network and move the four VMs to the new subnet.

2. Create a site-to-site virtual network and move the four VMs to your datacenter.

3. Access Mostly Uused Products by 50000+ Subscribers

4. Create an availability set and associate the four VMs with that availability set.



Question : You maintain a virtual network named QuickVMNet , now you want to deploy a virtual machine and make sure that it is part of QuickVMNet , how can you do that?
 : You maintain a virtual network named QuickVMNet , now you want to deploy a virtual machine and make sure that it is part of QuickVMNet , how can you do that?
1. Run the New-AzureVM Power Shell cmdlet.

2. Run the New-AzureQuickVM Power Shell cmdlet.

3. Access Mostly Uused Products by 50000+ Subscribers

4. Update fabrikamVNet's existing Availability Set.