How will you launch an Activity within you application?
Correct Answer: For launching an application, we will need to create an intent that explicitly defines the activity that we wish to start For example: Code Intent intent = new Intent(this, MyTestActivityclass); startActivity(intent);