Multiple choice technology platforms and products

Activities are basic objects, describing things a user can see or do and they can subscribe for intents.

  1. True

  2. False

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

Activities represent individual screens or UI interactions in Android apps. They are one of the four fundamental app components. However, Activities themselves do NOT 'subscribe for intents' - that's the role of Broadcast Receivers. Activities can be started by intents (via startActivity()) but they don't actively subscribe to or listen for intent broadcasts.