Multiple choice technology platforms and products

The activity in this state is killable by the system.

  1. onDestroy()

  2. onStop()

  3. onPause()

  4. Above a & c

  5. Above a & b

  6. Above a & b & c

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

Activities in three states are killable by the system: onDestroy() (being destroyed), onStop() (stopped), and onPause() (paused). The system may kill processes in these states to reclaim memory if resources are needed, with onPause() being the safest state (data is saved) but still technically killable in extreme memory pressure.