Solved

What Does This Code Do? Intent Intent = New Intent();

Question 36

Multiple Choice

What does this code do? Intent intent = new Intent() ; intent.setAction(Intent.ACTION_VIEW) ; intent.setData(android.net.Uri.parse("http://www.androidatc.com") ) ; startActivity(intent) ;


A) Starts a sub-activity
B) Starts a service
C) Sends results to another activity.
D) Starts an activity using an implicit intent.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions