Azure App Service Flashcards

(35 cards)

1
Q

Azure App Service can host what kind of application?

A

HTTP-based apps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Can we host REST APIs in Azure App Service

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Can we host mobile back ends in Azure App Service

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Azure App Service support both Windows and Linux-based environments.

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

can we scale up/down in Azure App Service

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

can we scale out/in in Azure App Service

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is Scaling out/in?

A

Scaling out/in is the ability to increase, or decrease, the number of machine instances that are running your web app.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

can we run containerized web apps on Windows and Linux using Azure App Service

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Azure App Service also supports multi-container apps, Windows containers, and Docker Compose for orchestrating container instances

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Azure App Service can pull container images from a private Azure Container Registry or Docker Hub

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Continuous integration and deployment for containerized web apps is also supported using either Azure Container Registry or Docker Hub.

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is Deployment slots

A

Deployment slots are live apps with their own host names used for separation of UAT & PROD environment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Azure App Service support Deployment slots

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Linux command to get current runtime

A

az webapp list-runtimes –os-type linux

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Does Azure App Service in Linux support Shared pricing tier

A

no

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

B/W App Service Environment and App Service which one support dedicated environment

A

App Service Environment

17
Q

B/W App Service Environment and App Service which one support shared environment

18
Q

Do we need app service plan to run Azure App Service

19
Q

what is app service plan

A

defines a set of compute resources for a web app to run

20
Q

can we run multiple web apps on same computing resources

21
Q

When you create an App Service plan in a certain region (for example, West Europe) where does the compute resources located

A

same region as that of App Service plan

22
Q

pricing tier available for Azure App Service

A

Free, Shared, Basic, Standard, Premium, PremiumV2, PremiumV3, Isolated, IsolatedV2

23
Q

which pricing tier fall under Shared compute category

A

Free, Shared,

24
Q

which pricing tier fall under Dedicated compute category

A

Basic, Standard, Premium, PremiumV2, PremiumV3

25
which pricing tier fall under Isolated compute category
Isolated, IsolatedV2
26
which tiers are intended to be used only for development and testing purposes.
Free, Shared,
27
which tier include apps belong to other customers
Free, Shared,
28
CAN WE can't scale out In Shared Compute Tier?
NO
29
if the app service plan is configured to run five VM instances, then all apps in the plan run on how many instance?
all five instances
30
If the app service plan is configured for autoscaling, then how many apps in the plan are scaled out together based on the autoscale settings
all apps
31
how to scaled Azure App Service up and down at any time
change the pricing tier of the plan.
32
Azure supports automated deployment from which sources?
Azure DevOps Services,GitHub,Bitbucket
33
what is Sidecar containers?
let you deploy extra services and features to your container application without making them tightly coupled to your main application container. For example, you can add monitoring, logging, configuration, and networking services as sidecar containers.
34
how to add sidecar container?
You can add a sidecar container through the Deployment Center in the app's management page.
35