Free Oracle 1Z0-869 Practice Test & Real Exam Questions

  • Exam Code/Number: 1Z0-869
  • Exam Name/Title: Java Mobile Edition 1 Mobile Application Developer Certified Professional Exam
  • Certification Provider: Oracle
  • Corresponding Certification: Java Technology
  • Exam Questions: 340
  • Updated On: Aug 25, 2026
Which two are true? (Choose two.)
Correct Answer: A,B Vote an answer
Which two are true about JTWI devices using SMS? (Choose two.)
Correct Answer: C,D Vote an answer
Which two are true about sockets and datagrams? (Choose two.)
Correct Answer: B,C Vote an answer
A JTWI application sends a text message using the code:
message.setPayloadText("hello world!");
conn.send(message);
What exception will this code throw if a timeout occurs while trying to send the message?
Correct Answer: B Vote an answer
Which two are true when deleting a record store? (Choose two.)
Correct Answer: B,C Vote an answer
Given the MIDlet code:
11. try {
1 2. while (true) {
1 3. ServerSocketConnection server = (ServerSocketConnection)
1 4. Connector.open("socket://:444", Connector.READ, true);
1 5. SocketConnection conn= (SocketConnection)
1 6. server.acceptAndOpen();
1 7. InputStream is = conn.openInputStream();
1 8. StringBuffer buffer = new StringBuffer();
1 9. for (int ch = -1; (ch = is.read()) != -1; ){
2 0. buffer.append((char)ch);
2 1. }
2 2. System.out.println(buffer);
2 3. }
2 4. } catch (IOException x) {}
Which two are true? (Choose two.)
Correct Answer: A,B Vote an answer
Which is true when using multiple threads to access a record store?
Correct Answer: D Vote an answer
What is the result when a user tries to update a signed, installed MIDlet suite with an unsigned MIDlet suite with the same MIDlet-Name?
Correct Answer: A Vote an answer
Which is true about PushRegistry.registerAlarm()?
Correct Answer: B Vote an answer