Multiple choice technology platforms and products

If an activity is paused or stopped, the system can drop it from memory by calling -

  1. Calling drop() method

  2. Calling finish() method

  3. Calling release() method

  4. kill the process_id

  5. Above b or d

  6. None of above

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

When an activity is paused or stopped, the system can reclaim memory either by calling finish() or by killing the process containing the activity, making both methods valid paths for memory recovery.