In an activity, which of the following statements can you use to get the intent that started the activity and retrieve a string named title that has been stored in that intent?

In an activity, which of the following statements can you use to get the intent that started the activity and retrieve a string named title that has been stored in that intent?








a. Intent intent = getIntent();
String title = intent.getTitle();
b. Intent intent = getIntent();
String title = intent.getStringExtra("title");
c. Intent intent = new Intent();
String title = intent.getTitle();
d. Intent intent = new Intent();
String title = intent.getStringExtra("title");















Answer: B