QUESTION:332Given:10. public class ExampleMIDlet extends MIDlet {11. //...20. public boolean hasCompleted() {21.//...30. }31. public boolean isLowOnMemory() {32.//...40. }41.public void destroyApp(boolean arg) {42.if (X) throw new MIDletStateChangeException();43. }44. //...50. }Which substitution for X conforms to the MIDP specification?
Get answer to your question and much more
QUESTION:333Which two are true about MIDlet suite provisioning? (Choose two.)
Get answer to your question and much more
QUESTION:334Given the MIDlet code:11. public void startApp() {12.Form f = new Form("hello");13.Display.getDisplay(this).setCurrent(f);14.System.gc();15.System.exit(0);152