An administrator is configuring an Azure Firewall instance named `FW-01` in a virtual network named `VNet-Prod` to control outbound traffic.
The firewall has the following rule collections configured:
* Network Rule Collection `Net-Coll01` (Priority: 200): Allows TCP traffic from source `10.0.1.0/24` to any destination on port 80.
* Network Rule Collection `Net-Coll02` (Priority: 150): Denies TCP traffic from source `10.0.1.0/24` to destination `10.0.2.0/24` on all ports.
* Application Rule Collection `App-Coll01` (Priority: 100): Allows HTTP traffic from source `10.0.1.0/24` to target FQDN `*.microsoft.com`.
A virtual machine with the IP address `10.0.1.4` attempts to establish the following outbound connections:
* Connection 1: To `http://www.example.com` (which resolves to on port 80)
* Connection 2: To a web server at `10.0.2.5` on port 80
Which of the following statements correctly describe the outcome of these connection attempts? (Select two.)
- The connection attempt to `http://www.example.com` is allowed because network rules are processed before application rules, and the traffic matches the allow rule in `Net-Coll01`.Answer
- The connection attempt to `10.0.2.5` is denied because `Net-Coll02` is processed before `Net-Coll01` due to its lower priority number.Answer
- CThe connection attempt to `http://www.example.com` is denied because application rules are processed before network rules, and `www.example.com` is not allowed by `App-Coll01`.
- DThe connection attempt to `10.0.2.5` is allowed because `Net-Coll01` has a higher priority number () than `Net-Coll02` () and allows all port 80 traffic.