Multiple choice technology embedded technologies

Every MIDlet MUST implement these three lifecycle methods.What are they?

  1. initApp,pauseApp,destroyApp

  2. initApp,pauseApp,closeApp

  3. startApp,pauseApp,destroyApp

  4. startApp,pauseApp,stopApp

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

MIDlets (Java ME mobile applications) must implement three lifecycle methods: startApp() (initialization/activation), pauseApp() (when paused/minimized), and destroyApp() (cleanup before termination). These manage the application's lifecycle states.