Which of the following are primary pieces of information required to define an implicit Intent? A. An action to be performed and data to operate on.
B. An action to be performed and a category for additional information.
C. A Bundle for extra data.
D. A category of additional information and data to operate on.
The correct answer is: A. An action to be performed and data to operate on.
Explanation: An implicit Intent in Android is used to request an action from another app component without specifying which component should handle it. To define this Intent, you need to provide at least an action (like viewing or editing) and the data (like a URI) that the action will operate on. Categories and extras can enhance the intent but are not required for its basic definition.