Given the following Uri object, which of the following statements creates an Intent object that you can use to view the specified URL in a web browser?
Uri uri = Uri.parse("http://www.murach.com/");
a. Intent intent = new Intent(Intent.ACTION_VIEW, uri);
b. Intent intent = new Intent(Intent.ACTION_DIAL, uri);
c. Intent intent = new Intent(Intent.ACTION_CALL, uri);
d. Intent intent = new Intent(Intent.ACTION_BROWSE, uri);
Answer: A