Google News
logo
Android - Quiz(MCQ)
Which method is used to initiate a service or deliver new instructions to an ongoing service?
A)
Context.startActivity()
B)
Context.sendBroadcast()
C)
Context.startService()
D)
None of the above

Correct Answer :   Context.startService()


Explanation : Context.startService() : The Intent object is passed to this method to initiate a service or deliver new instructions to an ongoing service.

Advertisement