Multiple choice technology embedded technologies

Every MIDlet must have implement these three methods.They are

  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

MIDlet lifecycle is defined by three mandatory methods that must be implemented. The correct methods are startApp() for initialization, pauseApp() for pausing, and destroyApp() for cleanup. Options A and B incorrectly use initApp instead of startApp, while option D incorrectly uses stopApp instead of destroyApp.