Android Application Development (AND-401) — Question 82
Which of the following is incorrect about intents?
Answer options
- A. They can be used to start an Activity
- B. They can be used to start a service
- C. They can be used to start database insertion
- D. They can be used to start a dialog-themed activity.
Correct answer: C
Explanation
The correct answer is C because intents are not used for direct database insertion; they are designed to facilitate communication between components. Options A, B, and D are accurate as intents can start activities, services, and dialog-themed activities.