CX-310-055  Exam

Exam # of questions Description  Update
CX-310-055 60 Sun Certified Programmer for the Java Platform, St... 11/20/2008

   [Practice Test]


CX-310-055- Exam Information

Title:  Sun Certified Programmer for the Java Platform, Standard Edition 5.0 questions

Description:
The Sun Certified Programmer for the Java Platform, Standard Edition 5.0 certification exam is for programmers experienced using the Java programming language. Achieving this certification provides clear evidence that a programmer understands the basic syntax and structure of the Java programming language and can create Java technology applications that run on server and desktop systems using J2SE 5.0. 

Number of questions:  60 questions

Has explanations:  Yes

Objectives:

  1. Section 1: Declarations, Initialization and Scoping
  2. Section 2: Flow Control
  3. API Contents
  4. Section 4: Concurrency
  5. Section 5: OO Concepts
  6. Section 6: Collections / Generics
  7. Section 7: Fundamentals
  8. General Security Concepts 30%
  9. Communication Security 20%
  10. Infrastructure Security 20%
  11. Basics of Cryptography 15%
  12. Operational / Organizational Security 15%

CX-310-055-Question of the day

Given: 10. class Line { 11. public class Point { public mt x,y;} 12. public Point getPoint() { return new Point(); 13. } 14. class Triangle { 15. public Triangle() { 16. / /insert code here 17. } 18. } Which code. inserted at line 16, correctly retrieves a local instance of a Point object?

Answer(s)

  • - Point p = Line.getPoint();
  • - Line.Point p = Line.getPoint();
  • - Point p = (new Line()).getPoint();
  • - Line.Point p = (new Line()).getPoint();

Correct Answer

  • - Line.Point p = (new Line()).getPoint();