Sun Certified Programmer for the Java Platform, Standard Edition 5.0 (CX-310-055)

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.
» Details below

Product ID Price
CX-310-055 $300.00

Exams purchased on the Web site may only be used in the US. If you reside outside the US please select a country to inquire about products delivered in your country. Once exam vouchers are purchased you have up to one year from the date of purchase to use it. Each voucher is valid for one exam and may only be used at an Authorized Prometric Testing Center in the country for which it was purchased. Please be aware that exam vouchers are nonrefundable for any reason.

Details

* Delivered at: Authorized Worldwide Prometric Testing Centers
* Prerequisites: None
* Other exams/assignments required for this certification: None
* Exam type: Multiple choice and drag and drop
* Number of questions: 72
* Pass score: 59% (43 of 72 questions)
* Time limit: 175 minutes

To succeed fully in this exam, candidates can take advantage of the following course(s):
Classroom

Fundamentals of the Java Programming Language (SL-110-SE6)
Classroom

Java Programming Language (SL-275-SE6)

Back to top

Web-based Practice Exams

* ePractice Certification Exam for the Sun Certified Programmer for the Java 2 Platform, Standard Edition 5.0 (WGS-PREX-J055C)

Back to top

Exam Objectives

Section 1: Declarations, Initialization and Scoping

* Develop code that declares classes (including abstract and all forms of nested classes), interfaces, and enums, and includes the appropriate use of package and import statements (including static imports).
* Develop code that declares an interface. Develop code that implements or extends one or more interfaces. Develop code that declares an abstract class. Develop code that extends an abstract class.
* Develop code that declares, initializes, and uses primitives, arrays, enums, and objects as static, instance, and local variables. Also, use legal identifiers for variable names.
* Develop code that declares both static and non-static methods, and – if appropriate – use method names that adhere to the JavaBeans naming standards. Also develop code that declares and uses a variable-length argument list.
* Given a code example, determine if a method is correctly overriding or overloading another method, and identify legal return values (including covariant returns), for the method.
* Given a set of classes and superclasses, develop constructors for one or more of the classes. Given a class declaration, determine if a default constructor will be created, and if so, determine the behavior of that constructor. Given a nested or non-nested class listing, write code to instantiate the class.

Section 2: Flow Control

* Develop code that implements an if or switch statement; and identify legal argument types for these statements.
* Develop code that implements all forms of loops and iterators, including the use of for, the enhanced for loop (for-each), do, while, labels, break, and continue; and explain the values taken by loop counter variables during and after loop execution.
* Develop code that makes use of assertions, and distinguish appropriate from inappropriate uses of assertions.
* Develop code that makes use of exceptions and exception handling clauses (try, catch, finally), and declares methods and overriding methods that throw exceptions.
* Recognize the effect of an exception arising at a specified point in a code fragment. Note that the exception may be a runtime exception, a checked exception, or an error.
* Recognize situations that will result in any of the following being thrown: ArrayIndexOutOfBoundsException,ClassCastException, IllegalArgumentException, IllegalStateException, NullPointerException, NumberFormatException, AssertionError, ExceptionInInitializerError, StackOverflowError or NoClassDefFoundError. Understand which of these are thrown by the virtual machine and recognize situations in which others should be thrown programatically.

Section 3: API Contents

* Develop code that uses the primitive wrapper classes (such as Boolean, Character, Double, Integer, etc.), and/or autoboxing & unboxing. Discuss the differences between the String, StringBuilder, and StringBuffer classes.
* Given a scenario involving navigating file systems, reading from files, or writing to files, develop the correct solution using the following classes (sometimes in combination), from java.io: BufferedReader,BufferedWriter, File, FileReader, FileWriter and PrintWriter.
* Develop code that serializes and/or de-serializes objects using the following APIs from java.io: DataInputStream, DataOutputStream, FileInputStream, FileOutputStream, ObjectInputStream, ObjectOutputStream and Serializable.
* Use standard J2SE APIs in the java.text package to correctly format or parse dates, numbers, and currency values for a specific locale; and, given a scenario, determine the appropriate methods to use if you want to use the default locale or a specific locale. Describe the purpose and use of the java.util.Locale class.
* Write code that uses standard J2SE APIs in the java.util and java.util.regex packages to format or parse strings or streams. For strings, write code that uses the Pattern and Matcher classes and the String.split method. Recognize and use regular expression patterns for matching (limited to: . (dot), * (star), + (plus), ?, \d, \s, \w, [], ()). The use of *, +, and ? will be limited to greedy quantifiers, and the parenthesis operator will only be used as a grouping mechanism, not for capturing content during matching. For streams, write code using the Formatter and Scanner classes and the PrintWriter.format/printf methods. Recognize and use formatting parameters (limited to: %b, %c, %d, %f, %s) in format strings.

Free PASSGUIDE Exams Free PassGuide Practice Engine Demo Download Pass4sure offers free demos for each certification exam, including all IT vendors. You can check out the testing engine software, or pdf file question quality and usability of our practice exams before you decide to buy it. We are the only one site that offers demos for almost all IT certification exams.If you want to try p4s exam practice engine demo. http://demo.passguide.com/download

Section 4: Concurrency

* Write code to define, instantiate, and start new threads using both java.lang.Thread and java.lang.Runnable.
* Recognize the states in which a thread can exist, and identify ways in which a thread can transition from one state to another.
* Given a scenario, write code that makes appropriate use of object locking to protect static or instance variables from concurrent access problems.
* Given a scenario, write code that makes appropriate use of wait, notify, or notifyAll.

Section 5: OO Concepts

* Develop code that implements tight encapsulation, loose coupling, and high cohesion in classes, and describe the benefits.
* Given a scenario, develop code that demonstrates the use of polymorphism. Further, determine when casting will be necessary and recognize compiler vs. runtime errors related to object reference casting.
* Explain the effect of modifiers on inheritance with respect to constructors, instance or static variables, and instance or static methods.
* Given a scenario, develop code that declares and/or invokes overridden or overloaded methods and code that declares and/or invokes superclass or overloaded constructors.
* Develop code that implements “is-a” and/or “has-a” relationships.

Section 6: Collections / Generics

* Given a design scenario, determine which collection classes and/or interfaces should be used to properly implement that design, including the use of the Comparable interface.
* Distinguish between correct and incorrect overrides of corresponding hashCode and equals methods, and explain the difference between == and the equals method.
* Write code that uses the generic versions of the Collections API, in particular, the Set, List, and Map interfaces and implementation classes. Recognize the limitations of the non-generic Collections API and how to refactor code to use the generic versions.
* Develop code that makes proper use of type parameters in class/interface declarations, instance variables, method arguments, and return types; and write generic methods or methods that make use of wildcard types and understand the similarities and differences between these two approaches.
* Use capabilities in the java.util package to write code to manipulate a list by sorting, performing a binary search, or converting the list to an array. Use capabilities in the java.util package to write code to manipulate an array by sorting, performing a binary search, or converting the array to a list. Use the java.util.Comparator and java.lang.Comparable interfaces to affect the sorting of lists and arrays. Furthermore, recognize the effect of the “natural ordering” of primitive wrapper classes and java.lang.String on sorting.

Section 7: Fundamentals

* Given a code example and a scenario, write code that uses the appropriate access modifiers, package declarations, and import statements to interact with (through access or inheritance) the code in the example.
* Given an example of a class and a command-line, determine the expected runtime behavior.
* Determine the effect upon object references and primitive values when they are passed into methods that perform assignments or other modifying operations on the parameters.
* Given a code example, recognize the point at which an object becomes eligible for garbage collection, and determine what is and is not guaranteed by the garbage collection system. Recognize the behaviors of System.gc and finalization.
* Given the fully-qualified name of a class that is deployed inside and/or outside a JAR file, construct the appropriate directory structure for that class. Given a code example and a classpath, determine whether the classpath will allow the code to compile successfully.
* Write code that correctly applies the appropriate operators including assignment operators (limited to: =, +=, -=), arithmetic operators (limited to: +, -, *, /, %, ++, –), relational operators (limited to: <, <=, >, >=, ==, !=), the instanceof operator, logical operators (limited to: &, |, ^, !, &&, ||), and the conditional operator ( ? : ), to produce a desired result. Write code that determines the equality of two objects or two primitives.

Bookmark and Share
PassGuide provides high-quality test materials, for example, Cisco CCNA CCNP CCIE, Comptia A + NETWORK + Security +, Juniper jncia, jncis, Vmware VCP-410,certification practice exams and so on.We are committed to give full refund to candidates if they fail the exam with use of our products.And we are confident to make such a guarantee. Buy Best Practice Exam,high-quality ,100% Guarantee ,Pls contact me,Mail:Sales@passguide.com
P4S Free Downloads

Type

Exam Braindumps New Questions & Answers

Latest Updated

Available link
Testking torrent All Pass4sure's Exam Pack

858

1 days ago Download Free Testing Engines

PassGuide Braindumps-Free Test king Help You Quick Pass Any it Certifications Exams

Click links: www.testking.la/braindumps/free/down/crack/all/testking
Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • e-mail
  • Technorati
  • De.lirio.us
  • IndianPad
  • YahooMyWeb

Pass Guide Training Materials Dumps

Google

Top Posts for Today

No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URI

Leave a comment

If you want to leave a feedback to this post or to some other user´s comment, simply fill out the form below.

(required)

(required)


Free Exam Dumps
Visited 2248 times, 1 so far today
xeex462103 length of polycraft drifter indy slot mags abrasive blasters shield stink bug orchid homes air valves china slack problems ticket to work kiki schomp what is pasta primavera pre-op for cervical cone biopsy dimensional paper design timeline of sailsbury robert cecil glad kitchen bags floor matting uk

ryan lenz paragon mortgage mn healing effects when quitting smoking gtp 6 cylinder 2 cycle racing nada radoja harriet tubman coloring page taming the giant corporation pov fantasys dougles larsen kennewick wa dallas jfk noahs ark graphics hindu temple and nashville secretary of stae counselling techniques to deal with depression sante fe new mexico events westminster census wonderboard stucco punisher knife universidad catolica del norte bryer collectable horses licensing georgia electricians variations on simple gifts young onset parkinsons disease ellen mandel pa nj vizio gv42l sale south park creater crossdress wig telescopes used in exploring space sybase how to warts fingers picture stephen richardson murder jack singer calgary empaquetamiento del adn cambell scott actor sienna resturant castle rock co silpada jewelry representatives websites edith hammond electric shock cartoon mail hacked 2 city of fresno ca home page carpet shampooing in new orleans michael jackson will i am winton memories july 26-27 diaster training wichita kansas refraction lab totalizer readout peek freebsd gentoo mushroom cultivation contaminants pdf northeastern united states snakes drowning fenton missouri 91 toyota mr2 performance upgrades aol ips charles h wacker said picodrive s60 3rd juno recessed lighting dealers southaven public schools rc planes tee shirts stacks orlando coin sale pamela shultz cmd cons password not administrators who makes stampede tires emile dont panic coldplay forclosure homes in franklin county ohio how to conduct interviews labview hate bravada awd problems free merle haggard ringtone nirvana polly meaning tds 724a datasheet 27640 sherlock road rene belgian artist industry briefs k b teak bench establishing wild grasslands in northwest us used rosetta stone dr oz and detox the wandering wiccan lou dobbs congressional testimony claw foot tub faucet coupler owner operator independent drivers association euronuke turkish nuked subtitle site launched emperors club eurostar greedy loser biggest free prophetic prayer family maintainence enforcement program nebraska form 10 audio bible in kjv sonic the hedgehog cheat donald dowling real estate applewood contruction ma wwe ppv theme songs mean temps alice springs fresno high school graduate demographics apc c2 surge ohio civilian law enforcement job opportunities sound blaster x fi liquor recommend wedding vows fl baked potatoes fan shaped okuma cnc g codes canciones con sus letras para cantar glenwood springs mls pot of silver coin pusher japanese fish tattoo wendys drink sizes us m1917 canteen read errors dvd decrypter beet carrot cleansing soup burn burnout dominator advantages of interactive learning randy mcmichael charged battery third chance checking account a hanford silver runtime enviroment 5.0 update 6 alessandro vii draco danica walked sista hoops targets inside america windowsxp password snorkeling in oaho first movie filmed in the us behaviour management at school the effects of alternative medicine nikkor 50mm f1.8 1 carat diamond rings adam r hillman usa dentac aberdeen proving ground maryland seagate maxtor storage the aftermath of the missouri compromise posts subject great toad art big barb mohney mattawan mi imitation stone mix commercial architects pharmaceutical companies germany tramadol ingrediants show me cleavage divine bette madi griffen keyes ca directory barrie y and v renee bowser choclate halloween candies cat fairies cameron zachary palos verdes nokia unlocked monterey park incas roads cl mence po sy video news fbi biometrics billion dollars 1995 toyota tercel parts fire hoods letterhead for teacher newsletters barenaked ladies allstar chris godfrey fillmore romeo and juliet first encounter augusta chronicle news bank robber case challenger process systems co we are fighting dreamers mp3 download reverse number lookup china highest rank in the navy viper snake drawing saturn coolant sensor price 1998 sl ansi asqc z1 1993 sampling plan rachel steele titles specialised f s r xc lufkin gerson univeristy of virginia orthopaedics sacred heart monastery tas joker jonathan schrader burning wwheel rpg addictive flash games matt damon actually angry at kimmel long term bruising timbaland presents torrent ign ace combat 5 added touch home amp garden working visa for united arab emirates kenny monday interview video of shell vaa fungal bone disease anemone canadensis canada anemone stock option glossary cancer radiation therapist salary joshua moore group viii technology cirque du soleil beatles love abel car hire interesting places in shanghai sasquatch encounter free anthony hamilton instrumentals federal civilian employee tsp matching funds overcoming the struggles in marriage prevalence of personality disorder ralph lauren amethyst double old fashion cicada club ohio bred quarter horses mark hyman ultra metabolism exxon mobil oil reserve lakes near pleasanton bacardi brands home pet rats life expectancy kutani figure scotch framing tape dispenser 2003 harley davidson engine cough remove heating element fruity oaty bars mp3 theology of lotus blossom aston gardens venice florida jello cake frosting peripheral blood stem cell isolation animal on the muppet show linn nexus american scholarships scams home built backhoe robin spence missouri veterans home warrensburg polysomnographic technologist certified pilot water propulsion unit hawk ind boston peace of mind chords insane clown posse skins for bebo anna mueller winner duane nelson oxford mass lifetime 6-foot folding picnic table mci auction camper clipart mower free 1945 general election results berwick velomax comp bearing replacement mtv in the 1980 s cub cadet snowblower manuals harlequin mills and boon movies tapered tang rhapsody crashes during set up order just what is available assisted living jacksonville florida cd t vaccination in goats hot flashes and celexa middle age timeline la times christian miller yiddish baldilocks goodbye tully fairmont state university clarksburg campus mib parser filetype ppt lapidary belt buckle laso apso puppies sky anytime watch mobile sports front load stackable washer recalls bronson stolte pew research institute ncl sky retrofit historic events of elkton md donation of sick days solving overcrowding prisons find consumer report on sealy grams to kilogram converter cable wall plate splitter andes alpaca farm tgi resin lateral rocess talar fracture nonunion robert dillon new york city century 21 waxahachie tx phonics ch words isis maturnity needham ma failure of tubal ligation teapot bead caps painkiller level walkthrough directions for sleep deprived eeg maricopa county dogs demand media inc nike skates ignite bugle boy 77 sq 117 hijack hearth in kitchen pops fernandez capiz bonestroo engineers doug sweet briar apartments revere massachusetts new business licenses tornados in north dakota vauxhall victor for sale bimba trd lake tear of the clouds kicking poetry of the sixties sears makita chainsaw parts physically ripped tight aura aci window universal remote device numbers ammunition book complete are igneous rocks crystles weird all yankovic kyrgyzstan prof participants workshop conference striper lake anna war bloggers cranbrook for ages 10-12 darryl burrows caterpillars of florida sam adams patriot homebrew rambo showtime and theaters erick kastel c starter wizard 2007 aerial maps pancreatitus foods to avoid beginner welding projects ute tool box lockable perth potty prizes rob taylor morrisville pa lubrizol advanced materials inc distributors inequality in gender one-click vnc how to earn lpn microscopic tongue fungus good and descent endeavors stag animal steve dugan hail purdue sancerre pinot lucas rockstar supernova 2005 aha acls guidelines bone flesh and cartilage ointment brad pitt glasses trails west trailors spice bangkok curfew club turbo lister calculated shipping descartes meditations study guide wasl reading prep strategies adaptec 1480a drivers bud light alchohol percentage what color is your parachute book technorati blog finder video podcast van hellsing balancing equation discoveries in health davenport merrillville