Which Compose function preserves state across configuration changes and process death?
- A rememberSaveable
- B remember
- C mutableStateOf alone
- D derivedStateOf
Answer
rememberSaveable
remember survives recomposition only. rememberSaveable additionally writes to the saved instance state bundle.





