최신Oracle Java Mobile Edition 1 Mobile Application Developer Certified Professional - 1Z0-869무료샘플문제
Which two methods are available only within classes of the MIDP low-level UI API?
(Choose two.)
Given
1 0. // ...
2 0. VolumeControl vc;
2 1. vc = (VolumeControl) player.getControl("VolumeControl");
2 2. vc.setLevel(4);
2 3. // ...
Which is true about the volume of audio playback from player when the code is executed?
What is the result if a call to serviceRepaints() triggers a separate thread to invoke paint()?
DRAG DROP
Click the Task button.
Place the classes and methods in the correct positions.


DRAG DROP
Click the Task button.
Place the connection strings on their corresponding connection interfaces.


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.)

What is guaranteed by the class file verifier?
Which guarantees the application can be installed without push registration conflicts?
Given
1 0. // ...
2 0. VolumeControl vc;
2 1. vc = (VolumeControl) player.getControl("VolumeControl");
2 2. vc.setLevel(4);
2 3. // ...
Which is true about the volume of audio playback from player when the code is executed?
Which creates a new record store of type javax.microedition.rms.RecordStore that can be shared between MIDlet suites?
Which are valid states for an HttpConnection?
Given:
DateField df = new DateField("Date", DateField.DATE_TIME);
Which requests the width of df to fill available screen space?
DRAG DROP
Click the Task button.
Place the connection strings on their corresponding connection interfaces.


Which three statements are true regarding the handling of wireless connections? (Choose three.)
Which two specifications are mandatory in JTWI 1.0? (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.)
What is the result if a call to serviceRepaints() triggers a separate thread to invoke paint()?
Which three APIs may untrusted MIDlets use without explicit confirmation by the user?
(Choose three.)
Which is used to retrieve the version of MIDP a device has implemented?
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?