For sending sms through Intent which code is correct?

For sending sms through Intent which code is correct?



A) Intent intent = new Intent();

intent.putExtra("sms_body", "Welcome at CareerRide.com");

startActivity(intent);


B) Intent intent = new Intent();

startActivity(intent);


C) Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.parse("sms:9923-----"));

intent.putExtra("sms_body", "Welcome at CareerRide.com");

startActivity(intent);


D) None of the above.




Answer: C


Learn More :