What is the main difference between an explicit and an implicit Intent?
- A An explicit Intent names the exact component; an implicit Intent declares an action for the system to resolve
- B Implicit Intents are faster
- C Explicit Intents work across apps only
- D They are the same
Answer
An explicit Intent names the exact component; an implicit Intent declares an action for the system to resolve
Implicit Intents must handle ActivityNotFoundException, and sensitive data must never be sent in one since any matching app can receive it.





