What happens to an Activity by default when the device is rotated?
- A It is destroyed and recreated
- B It is paused only
- C Nothing changes
- D The app restarts entirely
Answer
It is destroyed and recreated
Anything held only in Activity fields is lost, which is precisely why ViewModel exists.





