Multiple choice technology platforms and products

----------- Android application component doesn't have a visual user interface, rather runs in the background

  1. Activity

  2. Service

  3. Broadcast receiver

  4. Intent

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A Service is an Android component that runs in the background without a visual user interface, performing long-running operations or work for remote processes. Unlike Activities which have UIs, Services continue running even when the user is not interacting with the app. Broadcast Receivers respond to system-wide broadcast announcements, and Intents are messaging objects used to request actions.