In an Android application, which of the following callback methods is called when activity interaction with the user is started? A. onStart
B. onStop
C. onResume
D. onDestroy
In an Android application, which of the following callback methods is called when activity interaction with the user is started? A. onStart
B. onStop
C. onResume
D. onDestroy
The correct answer is C. onResume.
Explanation: The `onResume` callback method is called when an activity comes into the foreground and starts interacting with the user. This method is part of the activity lifecycle and indicates that the activity is now active and able to receive user input.