Azure Webアプリとして実行されるサービスとしてのソフトウェア(SaaS)ASP.NET CoreWebサービスを実装しています。 Webサービスは、ストレージにオンプレミスのSQLServerデータベースを使用します。 Webサービスには、データの更新を処理するWebJobも含まれています。 4人の顧客がWebサービスを使用します。
* WebJobの各インスタンスは、単一の顧客のデータを処理し、シングルトンインスタンスとして実行する必要があります。
*各デプロイメントは、本番データを提供する前にデプロイメントスロットを使用してテストする必要があります。
* Azureのコストを最小限に抑える必要があります。
* Azureリソースは分離されたネットワークに配置する必要があります。
WebアプリのAppServiceプランを構成する必要があります。
App Serviceプランをどのように構成する必要がありますか?回答するには、回答領域で適切な設定を選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。

正解:

Explanation:

Number of VM instances: 4
You are not charged extra for deployment slots.
Pricing tier: Isolated
The App Service Environment (ASE) is a powerful feature offering of the Azure App Service that gives network isolation and improved scale capabilities. It is essentially a deployment of the Azure App Service into a subnet of a customer's Azure Virtual Network (VNet).
References:
https://azure.microsoft.com/sv-se/blog/announcing-app-service-isolated-more-power-scale-and-ease-of-use/