Q. How do you define a service as a singleton in Angular?
β
Correct Answer: (A)
Provide it in the root injector
Explanation: To make a service singleton, use `@Injectable({ providedIn: 'root' })`.