Which of the following is incorrect about intents?
Which of the following is incorrect about intents?
Intents cannot be used to directly perform database insertion. An intent is a messaging object used to request an action from another app component, such as starting an Activity, starting a Service, or delivering a Broadcast. To perform database insertion, one would typically use ContentProvider, SQLite, or another database interaction method within the app, but not an intent.
C. They can be used to start database insertion