Android Application Development (AND-401) — Question 41
Which of the following is true about implicit intents? (Choose two)
Answer options
- A. They do not have a component specified
- B. They have components specified to run an exact class.
- C. They must include information that allows Android system to choose the best component to run.
- D. They must contain extra information saved in a Bundle object.
Correct answer: A, C
Explanation
Option A is correct because implicit intents are designed to specify an action without defining a specific component. Option C is also correct since these intents must provide sufficient information for the Android system to determine the appropriate component to handle the request. Options B and D are incorrect as implicit intents do not specify components and do not necessarily require extra information in a Bundle.