Multiple choice technology platforms and products

Android Application typically consist of several screens where each screen is implemented by more than one activity. Choose the right answer.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The statement is false because while Android applications do have multiple screens, each screen is typically implemented by a single Activity, not multiple activities. An Activity represents a single screen with a user interface. You can have multiple activities in an app, but one activity per screen is the standard pattern.