1Z0-850 Exam Questions
62 real 1Z0-850 exam questions with expert-verified answers and explanations. Page 2 of 2.
- Question #51
Which two are benefits of JSP technology? (Choose two.)
- Question #52
Which is an advantage of applets over HTML/JavaScript clients?
- Question #53
Given: 1. class Test { 2. public static void main(String args[]) { 3. for (int i = 1; i < 5; i++) { 4. if (i == 2) { 5. continue; 6. } 7. System.out.print(" i = " + i); 8. } 9. } 1...
- Question #54
You need to create a class Foo that will record the number of times the go() method is invoked on a particular instance of the class. Which solution correctly implements this goal?
- Question #55
What is the result of calling calc()?
- Question #56
Which of the following creates a thread group?
- Question #57
Which of the following is an appropriate description of session beans?
- Question #58
Which three classes are part of the java.io package? (Choose three.)
- Question #59
Which two keywords directly support looping? (Choose two.)
- Question #60
Why should package names in Java be unique?
- Question #61
Which two technologies are primarily focused on developing Web Services? (Choose two.)
- Question #62
Given: 1. // insert code here 2. void play(); 3. void stop(); 4. 5. // insert code here 6. public void play() { } 7. public void stop() { } 8. } Which, inserted at lines 1 and 5, a...