최신Oracle Java Mobile Edition 1 Mobile Application Developer Certified Professional - 1Z0-869무료샘플문제
Click the Exhibit button.
Given a MIDlet suite with the JAD and the manifest files, what is the behavior of a JTWI- compliant device that tries to download the MIDlet suite?

Due to possible performance consequences, the MIDP 2.0 specification urges caution when creating certain types of record store enumerations. Which is identified in the specification as having the greatest probability of resulting in poor response time?
Given the push connection string:
MIDlet-Push-1: socket://:79, com.sun.example.SampleChat, 192.3?.?.*
Which two addresses are allowed to push connection notifications to the application?
(Choose two.)
DRAG DROP
Click the Task button.
Place the API label (high-level or low-level) on the code snippet to indicate whether or not the code is from the high-level or low-level API. Assume that all variable names reflect the object type used in the code.


An open record store, rs, contains five records with record IDs 1, 2, 3, 4, and 5.
1 . byte[] data = new byte[10];
2 .
3 . for (int i = 1; i <= rs.getNumRecords(); i++)
4 . {
5 . if (rs.getRecordSize(i) > data.length)
6 . data = new byte[rs.getRecordSize(i)];
7 . rs.getRecord(i, data, 0);
8 . System.out.println(new String(data));
9 . }
If record ID 3 is deleted, and the code is run, what is the result?
Given:
1 . import javax.microedition.midlet.*;
2 . public class Foo extends MIDlet {
3 . public void go() {
4 . ThreadGroup x = Thread.currentThread().getThreadGroup();
5 . int numThreads = x.activeCount();
6 . Thread[] threads = null;
7 . x.enumerate(threads);
8 . }
9 . public void destroyApp(boolean b) { }
1 0. public void pauseApp() { }
1 1. public void startApp() { }
1 2. }
What is the result?
DRAG DROP
Click the Task button.
Place the classes and methods in the correct positions.


Click the Exhibit button.
The method in the Exhibit must create an HTTP GET connection that works reading both of the following HTTP server response cases:
HTTP server response headers n.1
1 . HTTP/1.1 200 OK
2 . Server: MyServer/1.3.0
3 . Content-Length: 3245
4 . Content-Type: text/html
HTTP server response headers n.2
1 . HTTP/1.1 200 OK
2 . Server: MyServer/1.3.0
3 . Content-Type: text/html
Which two can be used in the fragment of code starting at line 12? (Choose two.)

Given:
12. canvas.repaint(x1,y1,wd,ht);
13. canvas.repaint(x2,y2,wd,ht);
14. canvas.serviceRepaints();
Which two are true? (Choose two.)
Which three are basic interface types addressed by the Generic Connection Framework?
(Choose three.)
Given:
1 0. Player p = Manager.createPlayer(Manager.TONE_DEVICE_LOCATOR);
1 1. VolumeControl vc = p.getVolumeControl();
1 2. vc.setLevel(42);
1 3. vc.setMute(true);
1 4. System.out.println(vc.getLevel());
Which is printed to the console?