Multiple choice onCreate() method of Service gets called when service is started through activity service binds with any component Both (1) and (2) None of these Reveal answer Fill a bubble to check yourself C Correct answer Explanation Service onCreate() is called whether the service is started via startService() or bound via bindService(). It's the initialization callback that runs once per service instance, unlike onStartCommand() which can run multiple times.