1Z0-869 무료 덤프문제 온라인 액세스
시험코드: | 1Z0-869 |
시험이름: | Java Mobile Edition 1 Mobile Application Developer Certified Professional Exam |
인증사: | Oracle |
무료 덤프 문항수: | 340 |
업로드 날짜: | 2025-09-02 |
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?
Which three APIs may untrusted MIDlets use without explicit confirmation by the user?
(Choose three.)
Which two clarifications does the JTWI specification make regarding how devices implement the Mobile Media API? (Choose two.)
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:
1 . import javax.microedition.midlet.*;
2 . public class Foo extends MIDlet {
3 . public void go() {
4 . try {
5 . doStuff();
6 . } catch(java.lang.NoClassDefFoundError e) { }
7 . }
8 . void doStuff() { }
9 . public void destroyApp(boolean b) { }
1 0. public void pauseApp() { }
1 1. public void startApp() {go();}
1 2. }
Assuming the application is targeted for CLDC 1.1, what is the result?