Q2 Single choice Mark for later What is a correct part of an Implicit Intent for sharing data implementation? A Intent sendIntent = new Intent(this, UploadService.class)sendIntent.putExtra(Intent.EXTRA_TEXT, textMessage); B Intent sendIntent = new Intent();sendIntent.setType(Intent.ACTION_SEND); C Intent sendIntent = new Intent(this, UploadService.class)sendIntent.setData(Uri.parse(fileUrl)); D Intent sendIntent = new Intent();sendIntent.setAction(Intent.ACTION_SEND); Correct answer