Final answer:
The correct statement to send a broadcast Intent in Android programming is 'A. sendBroadcast(intent);' which is a method in the Context class used to broadcast an Intent to interested BroadcastReceivers.
Step-by-step explanation:
The question relates to sending a broadcast Intent in the context of Android programming. The correct statement to send a broadcast Intent in Android programming is 'A. sendBroadcast(intent);' which is a method in the Context class used to broadcast an Intent to interested BroadcastReceivers. To send an intent for a broadcast action, the correct statement to use is:
A. sendBroadcast(intent);
This is a method provided by the Context class in Android, which is used to send an intent to all interested BroadcastReceivers. It allows you to broadcast an Intent to all components that have indicated an interest in receiving the specific action defined in that Intent.