Online Access Free 1Z0-869 Practice Test
Exam Code: | 1Z0-869 |
Exam Name: | Java Mobile Edition 1 Mobile Application Developer Certified Professional Exam |
Certification Provider: | Oracle |
Free Question Number: | 340 |
Posted: | Sep 01, 2025 |
A mobile application developer is trying to increase the performance of a game using the MIDP Game API. Which two are legal, valid approaches that fulfill the developer's goal?
(Choose two.)
Given: 10. MessageConnection connection;
1 1.
1 2. public void startApp() {
1 3. //...
1 4. connection
1 5. = (MessageConnection) Connector.open("sms://:6222");
1 6. connection.setMessageListener(this);
1 7. // ...
2 8. }
2 9.
3 0. public void notifyIncomingMessage(MessageConnection conn) {
3 1. //...
4 0. }
4 1.
4 2. public void run() {
4 3. Message msg = conn.receive();
4 4. //...
6 0. }
Which two security permissions must this application request to be able to receive messages? (Choose two.)