Multiple choice

________ service keeps running in background, even if calling component gets destroyed.

  1. Service started using startService()

  2. Service created with bindService()

  3. Both (1) and (2)

  4. Service can’t run independently

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Services started with startService() run independently of the calling component. Even if the activity that started the service is destroyed, the service continues running until explicitly stopped or the system needs resources.