Kotlin Fundamentals: Activity and Fragment lifecycles quiz Return to pathway Which of the following is not an activity lifecycle state? Started Waiting Created Destroyed Which lifecycle method is called to make an activity visible? onPause() onVisible() onStart() onDestroy() Which lifecycle method is called to give an activity focus? onResume() onVisible() onStart() onFocus() Your app contains a physics simulation that requires heavy computation to display onscreen. Then the user gets a phone call. Which of the following is true? During the phone call, you should continue computing the positions of objects in the physics simulation. During the phone call, you should stop computing the positions of objects in the physics simulation. Which lifecycle method should you override to pause the simulation when the app is not on the screen? onDestroy() onPause() onStop() onSaveInstanceState() To make a class lifecycle-aware through the Jetpack lifecycle library, which interface should the class implement? Lifecycle LifecycleOwner Lifecycle.Event LifecycleObserver Submit answers error_outline An error occurred when grading the quiz. Please try again.