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);