Given the following Intent object for a service, which of the following statements starts the service? Intent serviceIntent = new Intent(this, WeatherService.class);

Given the following Intent object for a service, which of the following statements starts the service?
Intent serviceIntent = new Intent(this, WeatherService.class);




Answer: startService(serviceIntent);


Learn More :