Multiple choice What is needed to stop normal service? Calling component needs to call stop service. Service can self stop. Both (1) and (2) are correct. It will stop automatically if calling component is destroyed. Reveal answer Fill a bubble to check yourself C Correct answer Explanation Normal Services can be stopped in two ways: the calling component can invoke stopService() method, or the Service can stop itself using stopSelf(). Both mechanisms are valid and commonly used in Android development depending on the use case.