Tag Archive 'EXAM'


Aug 18 2008

Sun Certified Programmer for the Java Platform, Standard Edition (310-065)

Published by mac0002 under 310-065

Product Description

Sun Certified Programmer for the Java Platform, Standard Edition 6

The Sun Certified Programmer for Java Platform, Standard Edition 6 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 Java SE 6.








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: Delivered at: Authorized Worldwide Prometric Testing Centers
  • Prerequisites: None
  • Other exams/assignments required for this certification: Other exams/assignments required for this certification: None
  • Exam type: Exam type: Multiple choice and drag and drop
  • Number of questions: 72
  • Pass score: 65% (47 of 72 questions)
  • Time limit: 210 minutes

Assignment Objectives



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, writing to files, or interacting with the user, develop the correct solution using the following classes (sometimes in combination), from java.io: BufferedReader, BufferedWriter, File, FileReader, FileWriter, PrintWriter, and Console.
  • 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.






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. Write code that uses the NavigableSet and NavigableMap interfaces.
  • 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, determine what is and is not guaranteed by the garbage collection system, and recognize the behaviors of the Object.finalize() method.
  • 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.

Pass4side Sun Certified Web Component Developer for the Java Platform, Enterprise Edition 5 310-065

More certification info visit:

www.pass4side.com

 

 

No responses yet

Aug 08 2008

Free Latest MCP Exam Certification

Published by mac0002 under MCP

Microsoftcert offers the most successful and shortest path for Microsoft Certifications including all important Microsoft Partner Competency Certification. This success path includes Microsoft Partner Competency Certification exam questions, easy to understand study guides and simple practice labs to help candidates pass the tests and increase their competence level.

All of our products are well researched and have been tested for their accuracy by our Microsoft Partner Competency Certification trainers and experts. Countless individuals have passed their Microsoft Partner Competency Certifications using our resources and are also enjoying the benefits of being more skillful. For 90 days, Microsoft Partner Competency Certification candidates are also covered for free updates that will keep them abreast with the ever changing IT industry. We guarantee success in your efforts once you trust our products with the help of most reliable resources offered in the industry.

There are several sources (and resources) available for study out there. The only question is how many of them really help you achieve success, let alone guarantee it.Killtest Microsoft Partner Competency exam online tests offer you the best tests possible.

What’s so special about these tests that make them the best tests available? The tests come with a set of comprehensive questions that correspond to the actual tests. These Microsoft Partner Competency exam practice exams are offered along with complete details and verified answers that are provided by experienced experts in the field so that you get an opportunity to see where you stand and know the correct answers.

That is not the only feature that makes these the best tests available. The best test for the best test is whether it can deliver results to you. Killtest can – and does. Killtest also constantly updates its repertoire so that what you get is what is required TODAY. The structure of the questions also follows the actual exam structure. Find out for yourself – it’s the best test available from any net-based resource.

No responses yet

Aug 08 2008

Top 10 Exams Of Pass4side Microsoft MBS Certification

Published by mac0002 under EXAM

Pass4Side provides high quality IT exam practice questions and answers. Especially, Microsoft MCTS MCPD MCDST, Cisco CCNA CCDA CCNP CCIE, Checkpoint CCSE, CompTIA A+ Network+ certification practice exams and so on.

In Pass4Side, you also can find latest exam releases about real certification exam resources from most famous IT companies, and we recommend some hot exams for you.

Top 10 Of Microsoft MBS Certification Exams

1.MB6-507 AX 4.0 Financials
2.MB6-509 AX 4.0 Trade and Logistics
3.MB6-511 AX 4.0 Production
4.MB6-513 AX 4.0 MorphX Solution Development
5.MB6-503 AX 4.0 Installation & Configuration
6.MB7-255 Navision 4.0 Costing
7.MB6-508 AX 4.0 Development Introduction
8.MB6-504 AX 4.0 Project Series
9.MB7-222 Navision 4.0 C/SIDE Solution Development
10.MB7-227 Navision 4.0 Trade & Inventory Management
Pass4side Practice Exams for Microsoft Business Solutions certifications are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.

If you prepare for the exams using our Pass4side testing engine, we guarantee your success for Microsoft Business Solutions certifications in the first attempt. If you do not pass the exam on your first attempt we will give you 100% Money Back Guarantee.

No responses yet

Aug 08 2008

Pass4side CompTIA Security+ Training and Practice Exams

Published by mac0002 under Uncategorized

Pass4Side Security Certification and Practice Exams and Security Practice test, Security Study Guide, Security online test and Security Labs that will ensure you pass upcoming Security Certification exams guaranteed.

It includes Security Practice Exams Security study guide Security Braindumps Security Exam Prep Security certification Security Training. Our training products materials is Unique with detail information. You will not found in no other practice test sites on the web

Pass4Side Security Certification and training products materials are written by some of the world’s leading IT Professionals, trainers, and technical experts. Pass4Side Security Certification Exams and Practice Exams gives you skill to Prepare your Security Certification exams and get certified for sure.

Step up to the plate and begin preparing for your Security exams. Grab the edge you need to advance in your career and catch the eyes of your peers with a Security Certification.

Our advanced Security training process takes you from novice to advanced or expert depending on the amount of time you are willing to devote to your CIPTS certification. Here at Pass4Side, we are so confident in our products that we GUARANTEE that you will pass your Security exam on the very first attempt of taking the Security tests, after using our professional exam preparation tools.

Security questions and answers, Security study guides and labs are just a few of the incredible resources available to you right now and at your fingertips. Utilizing all of our Security training products is as effective as a bootcamp, training you in more than just the core fundamentals.

Achieving the task of earning your Security certification is not a mere badge of honor, it is a major step in any career building strategy. Completing the Security is an investment in your technological field as well as yourself - and your return on that investment - which you will witness in your career, is immediate.
?

No responses yet

Aug 08 2008

Pass4side Oracle Certification

Published by mac0002 under ORCALE

Becoming an Oracle Certified Professional
Whether you’re an Oracle newbie or a self-proclaimed guru, getting the Oracle Certification seal of approval may still be your key to staying afloat in a tough economy, according to some IT educators. So why not begin your journey today? This fast guide is designed to give you expert technical advice on where to begin your Oracle certification studies, passing the final exam and putting your certification into effect in the workplace.What official Oracle Certification?tracks are available?
About Oracle Certification?exams
Oracle is a leading provider of Relational Database Management (RDBMS) solutions to organizations worldwide. Oracle has introduced a wide range of certification programs for entry level to experienced professionals and for domains ranging from database administration, database management to programming, web development and other advanced technologies. These programs ensure whether or not information technology professionals have the necessary skills to successfully implement business solutions using Oracle Technology.
Job Roles for Oracle Certified Professionals
Oracle Certification prepare you for different job roles in database management, administration and development fields. Some of the job roles that are suitable for Oracle Certified Professionals are:

??? * For Database Management and Administration: Database Administrator, Database Analyst, and Database Developer. Related certification are OCA 9i DBA, OCP 9i DBA, OCA DBA10g and OCP 10g DBA.
??? * For Programming and Web Development: Database Developer, Applications Developer, Web Developer and Database Analyst. Related certification is OCA PL/SQL Developer.

Training for Oracle certifications
Oracle Certification program offers entry level to advanced certification on the Oracle products and technologies. Oracle certification exam consist of multiple-choice questions related to the specific technology. You should choose a training resource that helps you practice on the actual format of the Oracle Certification exam. Practice is the key to success and you should take plenty of practice exams for your preparations. You should also read study guides and technical articles to get a thorough understanding of the Oracle products and technologies. Your success depends on how efficiently you have prepared for these exams.

Oracle Corporation Offers the following Oracle Certification Tracks:

??? * Oracle Certified Associate (OCA)

Enables one to act as a junior team member working with database administrators or application developers.

??? * Oracle Certified Professional (OCP)

OCP candidates have proven skills for managing a large scale database or developing robust applications that are deployed enterprise-wide.

??? * Oracle Certified Master (OCM)

The highest level credential you can earn in the Oracle Certification Program. These people are senior level members of IT departments and are responsible for handling mission critical database systems and applications.

??? * Internet Application Developer (Release 6 or 6i)

Oracle developers using Oracle iDS (Internet Developer Suite) Forms and Reports.

??? * Oracle Java Developer (JDEV)

Developers using the Java platform. Oracle participates in the multi-vendor jCert Initiative.

PS: The Oracle Database Operator (DBO) track was discontinued on March 31, 2002.
[edit]
How hard are the exams?

That depends. If you know your stuff, they are quite easy. If you don’t, well, they are quite hard. The exams test stuff you really need to know. However, they do add some trick questions as well. Nevertheless, these should not scare you off as they don’t count that much anyway.
[edit]
What training is required before one can take an exam?

From Oracle 9i Oracle changed the requirements for some certification tracks to include training classes:

OCP - You need to attend one hands-on training class at Oracle Certification . See Oracle’s web site for a list of courses.

OCM - You need to attend two advanced training classes at Oracle University. See Oracle’s website for a list of courses.

All other tracks - Generally no courses required. It might be a good idea to attend some relevant courses before taking an exam, but poor people like me must often do without it.

See section: info about training events/opportunities.
[edit]
How do I prepare for the exams?

First step is to go to Oracle Certification and read the list of objectives per exam. There aren’t any questions that don’t fit one of those objectives. Make sure you know what’s on those objectives.

Note that all the questions are compiled from the official Oracle training guides one gets when attending an Oracle class (Instructor Led Course). It is advisable to get these guides by attending the Oracle training classes before taking any of the exams.

Lastly, use the software and practice. Don’t just read about a topic - implement it; break it; then fix it. There’s no better way to learn stuff than to fix something you broke yourself.
[edit]
Where can one take these exams?

Testing for the Oracle exams is conducted at authorized Prometric testing centers worldwide. Use their on-line Test Center Locator to find the test center closest to you.
[edit]
What is the format of the Oracle Certification exams?

All exams are closed book exams. No written materials or notebook computers will be allowed in the testing area. All questions are either multiple choice, fill in the missing word or match these against those.

Testing is conducted by Thompson Prometric.

When an English test is delivered in a non-English speaking country, the test time might vary from what you see on this site.
[edit]
How are exams scored?

It’s not like school where you have to get 60% or whatever. Previously all exam were scored on a 200-800 scale, with 620 as the passing score for all exams. With this scaling system, the number of points each question was worth varied between exams, and candidates could not compare their scores across exams.

Oracle Certification? has decided to abandon the scaled scores and instead report only the candidates’ raw scores.
[edit]
Can one (during an exam) skip questions and answer them later in the exam?

Yes, you may mark certain question that you feel are difficult and review them at the end of the exam. After you clicked the submit button, the tool will tell you that you have marked questions and allow you to jump to them. Both marked and unmarked questions will be scored when finally submitting the exam.
[edit]
Is it OK to guess answers or are these tests marked negatively?

The Oracle Certification exams are not scored negatively. This means that you can safely guess answers as no points will be deducted for incorrect answers.

It is best to check if you have actually answered ALL questions before completing the exam. If you are running short on time, just click any answer and move on. This way you will at least have a chance to get some of them right.
[edit]
Do I have to pass one exam before I can write the next one?

No. You can write any exam in any order. You could even write Admin II, Admin I, SQL in that order if you wanted. They don’t follow on one after another, and you get your certificate when you pass all required exams.
[edit]
What happens when one fails an exam?

If you fail a test you can re-write it after a minimum of 14 days, provided you do not write a particular test more than three times in a twelve-month period.

After each exam you will receive some diagnostic feedback with the test score report indicating the areas that need further study.

Failing one exam doesn’t affect any other exams though. If you fail SQL you can still write Admin I any time you want for example.

There is no discount price for re-taking an exam. The fee is the same as for the initial exam.
[edit]
Where can one get sample questions for the Oracle exams?

??? * Oracle offers a FREE downloadable assessment test on their Web site at http://www.oracle.com/education/certification.

??? * Buy practice tests from Self Test Software

??? * A sample test is provided as part of the book Advanced ORACLE Tuning & Administration chapter 15. The book is published by Oracle Press (ISBN 0-07-882241-6). Authors: Aronoff, Loney, and Sonawalla.

??? * Get the book: Oracle DBA Exam Cram: Proven Techniques to Pass the Oracle Certified Professional Exam by Michael R. Ault (ISBN: 1576102629)

??? * Oracle FAQ On-line Quizzes - Questions are not directly related to OCP but can be used to test your proficiency in a certain area.

No responses yet

Next »