Your company has an Azure subscription containing a virtual network named `VNet1`. `VNet1` contains two subnets named `Subnet1` and `Subnet2`.
You have the following virtual machines and network configurations:
* `VM1` is in `Subnet1`. Its network interface `NIC1` is associated with an Application Security Group named `ASG-Web`.
* `VM2` is in `Subnet2`. Its network interface `NIC2` is associated with an Application Security Group named `ASG-Database`.
* A Network Security Group named `NSG-Subnet1` is associated with `Subnet1`.
* A Network Security Group named `NSG-NIC1` is associated with `NIC1`.
* A Network Security Group named `NSG-Subnet2` is associated with `Subnet2`.
* A Network Security Group named `NSG-NIC2` is associated with `NIC2`.
The Network Security Groups are configured with the following custom inbound rules:
| Priority | Port | Protocol | Source | Destination | Action |
|---|---|---|---|---|---|
| 100 | 80 | TCP | Any | ASG-Web | Allow |
| Priority | Port | Protocol | Source | Destination | Action |
|---|---|---|---|---|---|
| 110 | 80 | TCP | Any | Any | Deny |
| 120 | 80 | TCP | Any | ASG-Web | Allow |
| Priority | Port | Protocol | Source | Destination | Action |
|---|---|---|---|---|---|
| 130 | 1433 | TCP | ASG-Web | ASG-Database | Allow |
| Priority | Port | Protocol | Source | Destination | Action |
|---|---|---|---|---|---|
| 140 | 1433 | TCP | Any | Any | Deny |
| 150 | 1433 | TCP | ASG-Web | ASG-Database | Allow |
All other settings are at their default configurations.
A user on the internet attempts to establish an HTTP connection to `VM1` on TCP port 80. Simultaneously, `VM1` attempts to establish a SQL Server connection to `VM2` on TCP port 1433.
Which of the following describes the outcome of these connection attempts?
- Both the HTTP connection to VM1 and the SQL Server connection to VM2 are blocked.Answer
- BBoth the HTTP connection to VM1 and the SQL Server connection to VM2 are allowed.
- CThe HTTP connection to VM1 is allowed, but the SQL Server connection to VM2 is blocked.
- DThe HTTP connection to VM1 is blocked, but the SQL Server connection to VM2 is allowed.