Android Application Development (AND-401) — Question 6
Which of the following is NOT a valid usage for Intents?
Answer options
- A. Activate and Activity
- B. Activate a Service
- C. Activate a Broadcast receiver
- D. Activate a SQLite DB Connection.
Correct answer: D
Explanation
The correct answer is D because Intents are primarily used for communication between components in Android, such as Activities, Services, and Broadcast receivers. However, they are not used for directly managing database connections, which is handled by other mechanisms in Android.