Free Oracle 1Z0-869 Practice Test & Real Exam Questions
During a MIDlet suite installation, a JTWI-compliant device performs the following actions:
downloads and installs the JAD file
downloads the JAR file
fails to install the MIDlet suite
What is the correct behavior?
downloads and installs the JAD file
downloads the JAR file
fails to install the MIDlet suite
What is the correct behavior?
Correct Answer: A
Vote an answer
Which is true regarding the use of Thread objects in a CLDC 1.1 compliant virtual machine?
Correct Answer: B
Vote an answer
Given the JAD file fragment:
MIDlet-1: Calendar, calendar.png, com.example.CalendarMIDlet
MIDlet-2: Chat, chat.png, com.example.ChatMIDlet
What CalendarMIDlet code launches ChatMIDlet at the time specified by variable chatTime?
MIDlet-1: Calendar, calendar.png, com.example.CalendarMIDlet
MIDlet-2: Chat, chat.png, com.example.ChatMIDlet
What CalendarMIDlet code launches ChatMIDlet at the time specified by variable chatTime?
Correct Answer: D
Vote an answer
What is true when an enumeration applies both a RecordFilter class and
RecordComparator class on a record store?
RecordComparator class on a record store?
Correct Answer: D
Vote an answer
Given:
8 . package javax.microedition.midlet;
9 . import javax.microedition.midlet.*;
1 0. import javax.microedition.io.*;
1 1. import java.io.*;
1 2.
1 3. public class Outlet extends MIDlet {
1 4. public void startApp(){ }
1 5. public void pauseApp(){ }
1 6. public void destroyApp(boolean unconditional){ }
1 7. }
Which is true?
8 . package javax.microedition.midlet;
9 . import javax.microedition.midlet.*;
1 0. import javax.microedition.io.*;
1 1. import java.io.*;
1 2.
1 3. public class Outlet extends MIDlet {
1 4. public void startApp(){ }
1 5. public void pauseApp(){ }
1 6. public void destroyApp(boolean unconditional){ }
1 7. }
Which is true?
Correct Answer: D
Vote an answer
Which is true about the process of updating a MIDlet suite in a JTWI-compliant device?
Correct Answer: D
Vote an answer
A MIDlet suite running on a GSM phone successfully receives an SMS text message msg from another GSM phone. The suite is using a valid SMS MessageConnection object conn opened in server mode.
The suite tries to respond back using:
msg.setPayloadText("thank you!");
conn.send(msg);
Which is true?
The suite tries to respond back using:
msg.setPayloadText("thank you!");
conn.send(msg);
Which is true?
Correct Answer: C
Vote an answer
