Intent mylntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com")); startActivity(mylntent); Which of following is true?

Intent mylntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com")); startActivity(mylntent);
Which of following is true?



A. mylntent is class Intent
B. mylntent is implicit Intent
C. mylntent is system Intent
D. mylntent is explicit Intent


Answer: B


Learn More :