Briefing Android Knowledge

What does the following code achieve?

What does the following code achieve?
Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
startActivityForResult(intent);

A.
Starts a browser activity

B.
Starts a sub-activity

C.
Starts an activity service

D.
Sends results to another activity.