Hybrid connectivity is one of the friendliest topics on the AZ-900: there are really only two ways to connect your own datacenter to an Azure virtual network (VNet), and the exam mostly tests whether you can tell them apart. The diagram above lays it out — an on-premises network on the left, an Azure VNet on the right, and two lines between them: a VPN over the public internet, and ExpressRoute as a private circuit. Learn those two paths and their trade-offs and this cluster of questions turns into free points.
VPN: an encrypted tunnel over the internet
A VPN connects you to a VNet with an encrypted tunnel that runs over the ordinary public internet. On the Azure side, the tunnel terminates at a VPN Gateway — a resource that lives inside the VNet, in its own gateway subnet. There are two flavours:
- Site-to-Site (S2S) VPN — connects a whole on-premises network to the VNet. Your office and Azure behave like one connected network. Think “Site” = a whole site.
- Point-to-Site (P2S) VPN — connects a single client device (a laptop) to the VNet. Perfect for one remote worker. Think “Point” = one point/device.
Both are encrypted, both use the internet, and both are cheaper and faster to set up than a private circuit — which is exactly why the exam frames a VPN as the budget-friendly choice.
ExpressRoute: a private, dedicated circuit
ExpressRoute is the other path. Instead of the public internet, it gives you a private, dedicated connection to Microsoft Azure arranged through a connectivity provider (a partner). Because it never touches the public internet, it delivers higher bandwidth, lower latency, and more predictable performance — and it is the answer whenever a scenario stresses privacy or compliance (“traffic must not cross the internet”).
The catch is cost and setup: ExpressRoute is a premium service that you provision with a provider, so it is not the quick, cheap option a VPN is.
VPN vs ExpressRoute — the one-line verdict
This is the comparison the exam loves:
- Pick a VPN when cost and simplicity matter and you accept internet-based traffic.
- Pick ExpressRoute when you need privacy, bandwidth, and predictable performance, and you can pay for a dedicated circuit.
VNet-to-VNet: connecting two virtual networks
One more connection type to know: a VNet-to-VNet connection links two Azure virtual networks together through their VPN gateways, so resources in each can communicate privately. It is a sibling of the Site-to-Site VPN — same gateway technology, but both ends are Azure VNets rather than one end being on-premises.
The real exam mixes multiple-choice, true/false, and drag-and-drop formats; the seven questions below are standard multiple-choice, and every explanation carries a “why not the others” so the wrong options teach you as much as the right one.
Updated for AZ-900 (July 2026). The sample questions above are our own work
in the style of the exam — not real exam items. The exam itself is set and marked
by the certification body.