Multiple choice

New Intent(Intent.ACTION_VIEW,Uri); is an _____

  1. Explicit Intent

  2. Implicit Intent

  3. Special Intent

  4. None of above

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

Using Intent.ACTION_VIEW with a URI creates an Implicit Intent because you're specifying an action and data, but not the exact component to handle it. Android resolves the component at runtime based on the registered intent filters. Explicit intents specify the component class directly (new Intent(context, MyClass.class)).