<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SCJP Certification &#187; Sun Java Certifications</title>
	<atom:link href="http://www.scjp-certification.com/category/sun-java-certifications/feed" rel="self" type="application/rss+xml" />
	<link>http://www.scjp-certification.com</link>
	<description>Sun Certified Java Programmer Certification exam essentials</description>
	<lastBuildDate>Fri, 30 Sep 2011 05:54:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>What are the differences between method overriding and method overloading?</title>
		<link>http://www.scjp-certification.com/what-are-the-differences-between-method-overriding-and-method-overloading.html</link>
		<comments>http://www.scjp-certification.com/what-are-the-differences-between-method-overriding-and-method-overloading.html#comments</comments>
		<pubDate>Thu, 19 Aug 2010 09:11:08 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=749</guid>
		<description><![CDATA[The following table summarizes the differences between method overriding and method overloading: Method OverridingMethod OverloadingArguments of overridden methods cannot be...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-differences-between-method-overriding-and-method-overloading.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-differences-between-method-overriding-and-method-overloading.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The following table summarizes the differences between method overriding and method overloading:</p>
<p> <TABLE BORDER=1><TR><TH>Method Overriding</TH><TH>Method Overloading</TH></TR><TR><TD>Arguments of overridden methods cannot be changed.</TD><TD>Arguments of overloaded methods can be changed.</TD> </TR><TR><TD>Method return types cannot be changed except covariant return types.</TD> <TD>Return types can be changed.</TD></TR><TR><TD>Exceptions must not throw new or broader checked exceptions.</TD><TD>Exceptions can be changed.</TD></TR> <TR> <TD>It happens at runtime.</TD><TD>It happens at compile-time. </TD> </tr>
<tr> <TD>An object type determines which method is selected.</TD><TD>A reference type determines which method is selected.</TD></tr>
<p></TABLE>  </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-differences-between-method-overriding-and-method-overloading.html&amp;title=What%20are%20the%20differences%20between%20method%20overriding%20and%20method%20overloading%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-are-the-differences-between-method-overriding-and-method-overloading.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are the differences between exceptions and assertions?</title>
		<link>http://www.scjp-certification.com/what-are-the-differences-between-exceptions-and-assertions.html</link>
		<comments>http://www.scjp-certification.com/what-are-the-differences-between-exceptions-and-assertions.html#comments</comments>
		<pubDate>Wed, 18 Aug 2010 09:09:34 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=747</guid>
		<description><![CDATA[ExceptionsAssertions An exception tells the user of the program that something in the program went wrong.An assertion documents a program....]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-differences-between-exceptions-and-assertions.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-differences-between-exceptions-and-assertions.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><TABLE BORDER=1><TR><TH>Exceptions</TH><TH>Assertions</TH></TR> <TR><TD> An exception tells the user of the program that something in the program went wrong.</TD><TD>An assertion documents a program. When it fails, it informs that the program has a bug.</TD></TR><TR><TD> Exceptions are created to deal with problems that might occur in the program.</TD><TD> Assertions are written to state the concepts of a program.</TD></TR><TR><TD>Exceptions are used to test input/output as well as whether parameters are legal or not.</TD><TD>Assertions are documentations that can be checked by running the program.</TD></TR></TABLE>  </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-differences-between-exceptions-and-assertions.html&amp;title=What%20are%20the%20differences%20between%20exceptions%20and%20assertions%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-are-the-differences-between-exceptions-and-assertions.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are the rules for method overriding?</title>
		<link>http://www.scjp-certification.com/what-are-the-rules-for-method-overriding.html</link>
		<comments>http://www.scjp-certification.com/what-are-the-rules-for-method-overriding.html#comments</comments>
		<pubDate>Tue, 17 Aug 2010 09:08:22 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=745</guid>
		<description><![CDATA[According to method overriding, an overriding method must follow the following rules: It must have the same argument list. It...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-rules-for-method-overriding.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-rules-for-method-overriding.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>According to method overriding, an overriding method must follow the following rules:
<ul>
<li>It must have the same argument list.</li>
<li>It must have the same return type, new to Java 5. The return type can be a subclass &#8211; this is known as covariant return.</li>
<li>It must not have a more restrictive access modifier.</li>
<li> It may have a less restrictive access modifier.</li>
<li>It must not throw new or broader checked exceptions.</li>
<li>It may throw fewer or narrower checked exceptions, or any unchecked exception.</li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-rules-for-method-overriding.html&amp;title=What%20are%20the%20rules%20for%20method%20overriding%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-are-the-rules-for-method-overriding.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are the JavaBean listener naming rules?</title>
		<link>http://www.scjp-certification.com/what-are-the-javabean-listener-naming-rules.html</link>
		<comments>http://www.scjp-certification.com/what-are-the-javabean-listener-naming-rules.html#comments</comments>
		<pubDate>Mon, 16 Aug 2010 09:07:02 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=743</guid>
		<description><![CDATA[JavaBean is a reusable software component that can be visually manipulated using the builder tool. The following are the JavaBean...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-javabean-listener-naming-rules.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-javabean-listener-naming-rules.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>JavaBean is a reusable software component that can be visually manipulated using the builder tool. The following are the JavaBean Listener naming rules:
<ul>
<li>Listener method names that are used to register a listener with an event source must use the prefix add followed by the listener type. </li>
<li>Listener method names that are used to remove a listener must use the prefix remove followed by the listener type.</li>
<li>The type of listener to be added or removed must be passed as the argument to the method.</li>
<li>Listener method names must end with the word &#8220;Listener&#8221;.</li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-javabean-listener-naming-rules.html&amp;title=What%20are%20the%20JavaBean%20listener%20naming%20rules%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-are-the-javabean-listener-naming-rules.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a variable arity method?</title>
		<link>http://www.scjp-certification.com/what-is-a-variable-arity-method.html</link>
		<comments>http://www.scjp-certification.com/what-is-a-variable-arity-method.html#comments</comments>
		<pubDate>Mon, 28 Jun 2010 09:05:37 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=741</guid>
		<description><![CDATA[A variable arity method allows the number of arguments in a method call to be varied. Invocations of this method...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-a-variable-arity-method.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-a-variable-arity-method.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>A variable arity method allows the number of arguments in a method call to be varied. Invocations of this method may contain more actual parameters than formal parameters. The last parameter for the variable arity method is as follows:</p>
<p><type><br />
<formal parameter name>
<p>The ellipses ( ) is specified between the type and the formal parameter name. Here, type can be a primitive type, or a reference type, or a type parameter. Such a parameter is called a varargs parameter. A variable arity method can be formed as a fixed arity method. For example:</p>
<p>public static void testMethod(int x, int args) </p>
<p>The varargs parameter in a variable arity method is always interpreted as having the type. It is heavily used in formatting text representation of values.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-a-variable-arity-method.html&amp;title=What%20is%20a%20variable%20arity%20method%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-a-variable-arity-method.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenOffice.org 3 specialist certification exam</title>
		<link>http://www.scjp-certification.com/openoffice-org-3-specialist-certification-exam.html</link>
		<comments>http://www.scjp-certification.com/openoffice-org-3-specialist-certification-exam.html#comments</comments>
		<pubDate>Thu, 27 May 2010 11:51:27 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[cx310-0600]]></category>
		<category><![CDATA[cx310-0610]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[open office]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=391</guid>
		<description><![CDATA[Now days Sun is providng its latest OpenOffice.org specialist certification exam that enables you to certify your desktop productivity skills...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fopenoffice-org-3-specialist-certification-exam.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fopenoffice-org-3-specialist-certification-exam.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Now days Sun is providng its latest <strong>OpenOffice.org  specialist certification exam</strong> that enables you to certify your desktop productivity skills in the OpenOffice.org 3 application. </p>
<p><a href="http://www.scjp-certification.com/wp-content/uploads/2009/11/Image1.gif"><img src="http://www.scjp-certification.com/wp-content/uploads/2009/11/Image1.gif" alt="Image" title="Image" width="321" height="250" class="aligncenter size-full wp-image-380" /></a></p>
<p>Click the following link to get the latest information about certification contents and purchase: </p>
<p><strong><a href="http://www.sun.com/training/certification/openoffice/index.xml">http://www.sun.com/training/certification/openoffice/index.xml</a></strong></p>
<p>This is the only Sun approved certification for OpenOffice.org. After gettting this certification the worldwide credential validates your knowledge of basic and advanced text processing functionality using OpenOffice.org. </p>
<p>This exam can be taken by you if you are:
<ol>
<li>An entry level Office user.</li>
<li>Migrating from other Office productivity suites</li>
<li>A moderately advanced Office productivity user.</li>
<li>An average Office productivity user.</li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fopenoffice-org-3-specialist-certification-exam.html&amp;title=OpenOffice.org%203%20specialist%20certification%20exam"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/openoffice-org-3-specialist-certification-exam.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between SCJP 1.5 and SCJP 1.6</title>
		<link>http://www.scjp-certification.com/difference-between-scjp-1-5-and-scjp-1-6.html</link>
		<comments>http://www.scjp-certification.com/difference-between-scjp-1-5-and-scjp-1-6.html#comments</comments>
		<pubDate>Thu, 20 Aug 2009 11:14:30 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[SCJP]]></category>
		<category><![CDATA[SCJP 1.5]]></category>
		<category><![CDATA[scjp1.6]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=46</guid>
		<description><![CDATA[Sun&#8217;s CX310-065 test is the latest exam for the Sun Certified Java Programmer certification on the Java 2 Platform 6.0....]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fdifference-between-scjp-1-5-and-scjp-1-6.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fdifference-between-scjp-1-5-and-scjp-1-6.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Sun&#8217;s <a href="http://www.ucertify.com/certifications/SUN/scjp-5-0.html">CX310-065</a> test is the latest exam for the Sun Certified Java Programmer certification on the Java 2 Platform 6.0. It validates your understanding of the basic syntax and structure of the Java programming language and proves that you can create Java technology applications that run on server and desktop systems using Java SE 6. It checks the exception handling, collections, assertions, threads, and flow control in greater depth. The older version test CX-310-055 is also available, which tests your knowledge on the Java 2 Platform 5.0. This is an entry-level test, which is a pre-requisite for various advanced level certifications such as the SCJD, SCBCD and SCWCD certifications. The following table depicts the comparison between SCJP 1.5 and SCJP 1.6:</p>
<table border="1" cellpadding="2">
<tbody>
<tr>
<th> </th>
<th>SCJP 1.5</th>
<th>SCJP 1.6</th>
</tr>
<tr>
<td>Exam Number</td>
<td>cx310-055</td>
<td>cx310-065</td>
</tr>
<tr>
<td>Pre-requisites</td>
<td>None</td>
<td>None</td>
</tr>
<tr>
<td>Number of Questions</td>
<td>72</td>
<td>No change</td>
</tr>
<tr>
<td>Exam Duration</td>
<td>175 minutes</td>
<td>210 minutes</td>
</tr>
<tr>
<td>Passing Score</td>
<td>59%</td>
<td>65%</td>
</tr>
<tr>
<td>Format of Questions</td>
<td>No change</td>
<td>No change</td>
</tr>
<tr>
<td>New Topics</td>
<td>Enums, generics, static imports, and autoboxing/unboxing, java.lang.StringBuilder, java.util.Locale, java.util.Formater, java.util.Scanner. java.util.regex.Pattern, and java.util.regex. Matcher, File, BufferedReader, BufferedWriter, FileReader, FileWriter and PrintWriter, loose coupling, and high cohesion.</td>
<td>java.io.Console, java.util.NavigableSet, java.util.NavigableMap, finalize() method.</td>
</tr>
<tr>
<td>Removed Topics</td>
<td>Bit manipulation</td>
<td>Explicit garbage collector calls (i.e. System.gc())</td>
</tr>
</tbody>
</table>
<p>To get a glimpse of the SCJP certification exam PrepKits, download its free demo version (which contains 15 free practice questions). Click the links below:</p>
<p><a href="http://www.ucertify.com/exams/SUN/CX310-055.html"> Sun Certified Java Programmer (SCJP 5.0)</a><br />
                                  or<br />
<a href="http://www.ucertify.com/exams/SUN/CX310-065.html"> Sun Certified Java Programmer (SCJP 6.0)</a><br />
                                  or<br />
<a href="http://www.ucertify.com/exams/SUN/CX310-066.html">Sun Certified Java Programmer (SCJP 6.0) upgrade exam</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fdifference-between-scjp-1-5-and-scjp-1-6.html&amp;title=Difference%20between%20SCJP%201.5%20and%20SCJP%201.6"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/difference-between-scjp-1-5-and-scjp-1-6.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is SCJP?</title>
		<link>http://www.scjp-certification.com/what-is-scjp.html</link>
		<comments>http://www.scjp-certification.com/what-is-scjp.html#comments</comments>
		<pubDate>Tue, 18 Aug 2009 11:43:09 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=39</guid>
		<description><![CDATA[SCJP stands for Sun Certified Java Programmer&#8217;s certification exam. It covers the standard edition 6 of java. It is career...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-scjp.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-scjp.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>SCJP stands for Sun Certified Java Programmer&#8217;s certification exam. It covers the standard edition 6 of java. It is career elivator tool for those programmers that are experienced using the Java programming language. After achieving this certification, it provides a clear vision to a programmer who 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.</p>
<p>SCJP exam is available in the following versions:
<ol>
<li>SCJP 1.5(CX310-055 and CX310-056)</li>
<li>SCJP 1.6(CX310-065 and CX310-66)</li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-scjp.html&amp;title=What%20is%20SCJP%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-scjp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New features in SCJP exam</title>
		<link>http://www.scjp-certification.com/new-features-in-scjp-exam.html</link>
		<comments>http://www.scjp-certification.com/new-features-in-scjp-exam.html#comments</comments>
		<pubDate>Sun, 16 Aug 2009 12:47:54 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=27</guid>
		<description><![CDATA[SCJP 1.5 and SCJP 1.6 are very different from the older versions of the exam. SCJP 1.6 has added some...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fnew-features-in-scjp-exam.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fnew-features-in-scjp-exam.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>SCJP 1.5 and SCJP 1.6 are very different from the older versions of the exam. </p>
<p><strong>SCJP 1.6</strong> has added some new features, which are as follows:
<ol>
<li>NavigableSet interface</li>
<li>NavigableMap interface</li>
<li>Console class</li>
</ol>
<p>The major changes that took place in the 1.5 version are as follows:
<ol>
<li>Autoboxing and Unboxing </li>
<li>Covariant returns</li>
<li>Enhanced for loop (for-each) </li>
<li>Enumeration (enum)</li>
<li>Generics </li>
<li>Static Imports </li>
<li>Variable-argument lists (VarArgs)</li>
<li>StringBuilder class</li>
</ol>
<p><strong>NavigableSet interface:</strong> The NavigableSet interface extends the SortedSet interface in which the elements are ordered either by natural ordering or using a Comparator. It contains methods to find out the closest matches for given search targets. The elements of the NavigableSet interface must be mutually comparable. The elements of the NavigableSet interface can be accessed and traversed in either ascending or descending order.</p>
<p><strong>NavigableMap interface:</strong> The NavigableMap interface extends the SortedMap interface in which the elements are ordered either by natural ordering or by using a Comparator. It contains methods to find out the closest matches for given search targets. All keys inserted into a sorted map must implement the Comparable interface and must be mutually comparable. The elements of the NavigableSet interface can be accessed and traversed in either ascending or descending order.</p>
<p><strong>Console Class:</strong> The Console class extends the Object class and has convenience methods to read from and write to the console objects. Also, the Console class has the readPassword() method to read a password from the console. If the underlying virtual machine has a console, it can be obtained by invoking the System.console() method. If no console device is available, then an invocation of the System.console() method returns null.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fnew-features-in-scjp-exam.html&amp;title=New%20features%20in%20SCJP%20exam"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/new-features-in-scjp-exam.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCJP certification exam tips</title>
		<link>http://www.scjp-certification.com/scjp-certification-exam-tips.html</link>
		<comments>http://www.scjp-certification.com/scjp-certification-exam-tips.html#comments</comments>
		<pubDate>Sat, 15 Aug 2009 11:45:26 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=23</guid>
		<description><![CDATA[The SCJP test consists of multiple-choice questions. There are no case study type questions and the test is not adaptive....]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fscjp-certification-exam-tips.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fscjp-certification-exam-tips.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The SCJP test consists of multiple-choice questions. There are no case study type questions and the test is not adaptive. You will be required to attempt approximately 72 questions in 210 minutes. To pass, you need a score of 65%. Sun has specified more than thirty five objectives for Sun test CX310-065 (Sun Certified Programmer for the Java Platform, Standard Edition 6). These objectives are grouped under seven topics. Before taking the test, an individual should possess a good command over the following areas:
<ol>
<li>Nested and inner classes, interfaces, packages, import statements, enums, and abstract classes.</li>
<li>JavaBeans naming conventions in code. Using variable-length argument list in code.</li>
<li>Overloading, overriding</li>
<li>Default constructor</li>
<li>Assertion and differentiating between appropriate and inappropriate use of assertion.</li>
<li> Differentiate between Runtime exception, checked exception, and an error.</li>
<li>Wrapper classes and autobxing and unboxing</li>
<li>String, StringBuffer and StringBuider</li>
<li>Correct and incorrect overrides of hashcode and equals method. Differentiating between == and equals methods.</li>
<li>Generics with collection API, particularly with Set, List, and Map interfaces. Explaining the difference between generic and non-generic versions of collection API. Writing generic methods using wildcard types.</li>
<li> NavigableSet and NavigableMap interfaces.</li>
<li>Using Comparator and Comparable interfaces to manipulate an array by sorting, performing binary search and conversion of array to list.</li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fscjp-certification-exam-tips.html&amp;title=SCJP%20certification%20exam%20tips"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/scjp-certification-exam-tips.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Benefits of SCJP certification</title>
		<link>http://www.scjp-certification.com/benefits-of-scjp-certification.html</link>
		<comments>http://www.scjp-certification.com/benefits-of-scjp-certification.html#comments</comments>
		<pubDate>Fri, 14 Aug 2009 11:43:21 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Sun Java Certifications]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[SCJP]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=18</guid>
		<description><![CDATA[The following are the benefits of &#60;b&#62; SCJP&#60;/b&#62;: SCJP certification proves your expertise on the Sun Java products and technologies....]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fbenefits-of-scjp-certification.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fbenefits-of-scjp-certification.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The following are the benefits of &lt;b&gt; SCJP&lt;/b&gt;:</p>
<ol>
<li>SCJP certification proves your expertise on the Sun Java products and technologies.</li>
<li>Professionals holding the SCJP certification are preferred by the employers and they also get preference in promotions.</li>
<li>SCJP certification is helpful for professionals who want to upgrade their credentials and get recognition from the industry.</li>
<li>SCJP Certified professional can find appropriate jobs easily and get paid more.</li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fbenefits-of-scjp-certification.html&amp;title=Benefits%20of%20SCJP%20certification"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/benefits-of-scjp-certification.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

