Question: Based on the following usage of the async pipe, and assuming the users class field is an Observable, how many subscriptions to the users Observable are being made?
- None. The async pipe does not subscribe automatically.
- None. The template syntax is not correct.
- Three. There is one for each async pipe.
- One. The async pipe caches Observables by type internally.
Answer: The correct answer of the above question is Option C:Three. There is one for each async pipe.