Online Access Free 1Z0-869 Exam Questions
| Exam Code: | 1Z0-869 |
| Exam Name: | Java Mobile Edition 1 Mobile Application Developer Certified Professional Exam |
| Certification Provider: | Oracle |
| Free Question Number: | 340 |
| Posted: | Aug 31, 2026 |
Given:
DataInputStream incoming
Connector.openDataInputStream("sms://+3125551234:3434");
Which is true?
Which two are true regarding error handling for classes that exist in both CLDC and J2SE?
(Choose two.)
Given:
5 0. class MyGameCanvas extends Canvas {
5 1. //...
6 0. public MyGameCanvas() {
6 1. int width1 = getWidth();
6 2. int height1 = getHeight();
6 3. //...
7 0. setFullScreenMode(true);
7 1. //...
8 0. int width2 = getWidth();
8 1. int height2 = getHeight();
8 2. //...
9 0. }
What is true about width1, height1 and width2, height2?