Write a quick script for launching a new activity within your application.
Correct Answer: An explicit intent explicitly defines the activity the developer wishes to start Script code : Intent myIntent = new Intent(this, MyNewActivityclass); startActivity(myIntent);