Intent mylntent = new Intent(this, ActivityTwo.class); myIntent.putExtra("Valuel", "This value one for ActivityTwo "); mylntent.putExtra("Value2", "This value two ActivityTwo"); Which of following is true?

Intent mylntent = new Intent(this, ActivityTwo.class);
myIntent.putExtra("Valuel", "This value one for ActivityTwo ");
mylntent.putExtra("Value2", "This value two ActivityTwo");

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: D


Learn More :