AstartActivity and startActivityForResult can both be used to start a new activity from your activity class.
BOnly startActivityForResult can be used to launch a new activity from your activity class.
CstartActivity(myIntent); and startActivityForResult(myIntent, -1); have the same result.
DstartActivity(myIntent); and startActivityForResult(myIntent, 0); have the same result.
EWhen startActivity is used to launch a new activity from your activity class then your activity class gets notified when the new activity is completed.
FWhen startActivityForResult is used to launch a new activity from your activity class then your activity class gets notified when the new activity is completed.