Multiple choice technology embedded technologies Every MIDlet MUST implement these three lifecycle methods.What are they? initApp,pauseApp,destroyApp initApp,pauseApp,closeApp startApp,pauseApp,destroyApp 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.