Q. How can services be shared across all modules in Angular?
β
Correct Answer: (C)
Provide them in root injector using providedIn: 'root'
Explanation: Services with `providedIn: 'root'` are singleton and shared across the app.