This repository has been archived by the owner on Jun 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Azure_70-533_Objective_1.1.htm
124 lines (124 loc) · 6.18 KB
/
Azure_70-533_Objective_1.1.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<section class="quiz" data-title="Implement Web Apps" data-subtitle="Objective 1.1: Deploy Web Apps">
<section class="question">
<section class="text">
When creating an Azure Web App named "acme", what is the domain name that Azure automatically provisions for it?
</section>
<section class="answer">Must be done manually</section>
<section class="answer" data-correct>acme.azurewebsites.net</section>
<section class="answer">acme.azurewebapps.net</section>
<section class="answer">acme.websites.azure.net</section>
<section class="answer">acme.webapps.azure.net</section>
</section>
<section class="question">
<section class="text">
In addition to the Production deployment slot, how many additional deployment slots can you create?
</section>
<section class="answer">1</section>
<section class="answer">2</section>
<section class="answer">3</section>
<section class="answer" data-correct>4</section>
<section class="answer">5</section>
<section class="description">
You can add additional deployment slots for a total of 5 deployment slots that can be swapped with the production slot, or other non-production slots. The 4 additional slots can be used for staging and testing purposes.
</section>
</section>
<section class="question">
<section class="text">
What Mode does a Web App need to be in to configure additional Deployment Slots?
</section>
<section class="answer">Free</section>
<section class="answer" data-correct>Standard</section>
<section class="description"></section>
</section>
<section class="question">
<section class="text">
Which Azure PowerShell command is used to create a new Azure Web App Deployment Stlot?
</section>
<section class="answer">New-AzureWebsiteSlot -Location $loc -Name $name</section>
<section class="answer">New-AzureWebsiteSlot -Location $loc -Name $name -Slot $slot</section>
<section class="answer" data-correct>
New-AzureWebsite -Location $loc -Name $name -Slot $slot
</section>
<section class="answer">New-AzureWebsite -Location $loc -Name $name</section>
</section>
<section class="question">
<section class="text">
When creating a new Web App named "acme", what is the domain name Azure automatically provisions for it?
</section>
<section class="answer" data-correct>acme.azurewebsites.net</section>
<section class="answer">acme.azurewebapps.net</section>
<section class="answer">acme.webapps.azure.net</section>
<section class="answer">acme.websites.azure.net</section>
</section>
<section class="question">
<section class="text">
An Azure Web App named "acme" has been created. You create a new "staging" deployment slot.<br>
What is the domain name Azure automatically provisions for the "staging" deployment slot?
</section>
<section class="answer">acme.azurewebsites.net</section>
<section class="answer" data-correct>acme-staging.azurewebsites.net</section>
<section class="answer">staging.acme.azurewebsites.net</section>
</section>
<section class="question">
<section class="text">
Which Azure PowerShell cmdlet is used to swap deployment slots?
</section>
<section class="answer">Switch-AzureWebAppSlot</section>
<section class="answer" data-correct>Switch-AzureWebsiteSlot</section>
<section class="answer">Swap-AzureWebAppSlot</section>
<section class="answer">Swap-AzureWebsiteSlot</section>
</section>
<section class="question">
<section class="text">
What methods are supported for publishing an Azure Web App?
</section>
<section class="answer">Visual Studio</section>
<section class="answer">Git</section>
<section class="answer">Web Deploy</section>
<section class="answer">PowerShell</section>
<section class="answer">FTP</section>
<section class="answer">Continuous delivery from Source Control</section>
<section class="answer" data-correct>All of the above</section>
</section>
<section class="question">
<section class="text">
Which Azure PowerShell cmdlet is used to publish a Web App?
</section>
<section class="answer">Publish-AzureWebApp</section>
<section class="answer">Publish-AzureWebsite</section>
<section class="answer">Publish-AzureWebAppProject</section>
<section class="answer" data-correct>Publish-AzureWebsiteProject</section>
</section>
<section class="question">
<section class="text">
Which Azure PowerShell cmdlet is used to publish a WebJob?
</section>
<section class="answer">New-AzureWebJob</section>
<section class="answer">New-AzureWebAppJob</section>
<section class="answer" data-correct>New-AzureWebsiteJob</section>
</section>
<section class="question">
<section class="text">
What are the options for scheduling a WebJob?
</section>
<section class="answer" data-correct>Scheduled</section>
<section class="answer">Automatic</section>
<section class="answer" data-correct>On-Demand</section>
<section class="answer" data-correct>Continuousy Running</section>
<section class="answer">All of the above</section>
</section>
<section class="question">
<section class="text">
What file types are supported to run as a WebJob?
</section>
<section class="answer" data-correct>.exe</section>
<section class="answer" data-correct>.cmd</section>
<section class="answer" data-correct>.bat</section>
<section class="answer" data-correct>.ps1 (PowerShell)</section>
<section class="answer">.cs (.NET)</section>
<section class="answer">.vb (.NET)</section>
<section class="answer" data-correct>.js (Node)</section>
<section class="answer" data-correct>.py (Python)</section>
<section class="answer">.rb (Ruby)</section>
</section>
</section>