Welcome to TestSimulate

Pass Your Next Certification Exam Fast!

Everything you need to prepare, learn & pass your certification exam easily.

365 days free updates. First attempt guaranteed success.

Oracle Java Standard Edition 5 and 6, Certified Associate (1Z0-850) Free Practice Test

Question 1
Which two are valid? (Choose two.)

Correct Answer: A,D
Question 2
Which two are true? (Choose two.)

Correct Answer: A,B
Question 3
Which type of primitive can be assigned a new value within a conditional expression?

Correct Answer: B
Question 4
Which J2EE technology is used to generate dynamic content for web-based applications?

Correct Answer: E
Question 5
Which package contains the classes used to create a socket?

Correct Answer: D
Question 6
Which two are true about HTML? (Choose two.)

Correct Answer: B,D
Question 7
Given:
2 . class Test {
3 . public static void main(String args[]) {
4 . for (int i = 1; i < 5; i++) {
5 . if (i == 2) {
6 . continue;
7 . }
8 . System.out.print(" i = " + i);
9 . }
1 0. }
1 1. }
What is the result?

Correct Answer: G
Question 8
What is true about JavaScript clients?

Correct Answer: A
Question 9
Which two are associated with the business tier in a J2EE web-based application? (Choose two.)

Correct Answer: B,C
Question 10
Given:
3 . int calc() {
4 . long x = 40L;
5 . int i = 30;
6 . i = x;
7 . System.out.println("result is: " + i);
8 . }
What is the result of calling calc()?

Correct Answer: D
Question 11
Which is NOT a characteristic of Swing?

Correct Answer: B
Question 12
Which two are represented in a UML class diagram? (Choose two.)

Correct Answer: B,D