<?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; exam questions</title>
	<atom:link href="http://www.scjp-certification.com/tag/exam-questions/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>Which of the following operations are allowed for collection framework?</title>
		<link>http://www.scjp-certification.com/which-of-the-following-operations-are-allowed-for-collection-framework.html</link>
		<comments>http://www.scjp-certification.com/which-of-the-following-operations-are-allowed-for-collection-framework.html#comments</comments>
		<pubDate>Fri, 04 Dec 2009 11:46:36 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Java Questions]]></category>
		<category><![CDATA[cx310-065]]></category>
		<category><![CDATA[exam questions]]></category>
		<category><![CDATA[scjp question]]></category>
		<category><![CDATA[study guide]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=461</guid>
		<description><![CDATA[A: Adding objects to a collection B: Iterating through a collection C: Finding out if an object is in a...]]></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%2Fwhich-of-the-following-operations-are-allowed-for-collection-framework.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhich-of-the-following-operations-are-allowed-for-collection-framework.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>A:</strong> Adding objects to a collection<br />
<strong>B:</strong> Iterating through a collection<br />
<strong>C:</strong> Finding out if an object is in a collection<br />
<strong>D:</strong> Retrieving an object from a collection</p>
<p>All answer options are correct because:</p>
<p>The Collections Framework in Java is a hierarchy of interfaces and classes that provides a technology for managing a group of objects. It is used to provide a central and unified theme for managing a group of objects. The Java Collections Framework is designed to meet the following goals:
<ul>
<li>To offer high performance in terms of efficiency.</li>
<li>To allow different types of collections to work in a similar way and with a high degree of interoperability.</li>
<li>To ensure collections are flexible and can be easily extended.</li>
</ul>
<p>Following are the basic types of operations allowed in a collection:
<ul>
<li>Adding objects to a collection</li>
<li>Removing objects from a collection.</li>
<li>Retrieving an object from a collection.</li>
<li>Finding out if an object is in a collection.</li>
<li> Iterating through a collection.</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%2Fwhich-of-the-following-operations-are-allowed-for-collection-framework.html&amp;title=Which%20of%20the%20following%20operations%20are%20allowed%20for%20collection%20framework%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/which-of-the-following-operations-are-allowed-for-collection-framework.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a narrowing conversion?</title>
		<link>http://www.scjp-certification.com/what-is-a-narrowing-conversion.html</link>
		<comments>http://www.scjp-certification.com/what-is-a-narrowing-conversion.html#comments</comments>
		<pubDate>Mon, 30 Nov 2009 11:41:25 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Java Facts]]></category>
		<category><![CDATA[casting]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[exam guide]]></category>
		<category><![CDATA[exam questions]]></category>
		<category><![CDATA[free questions]]></category>
		<category><![CDATA[narrowing conversion]]></category>
		<category><![CDATA[study guide]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=451</guid>
		<description><![CDATA[A narrowing conversion is an explicit type conversion or casting. It is used when the destination data type is narrower...]]></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-narrowing-conversion.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-a-narrowing-conversion.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>A narrowing conversion is an explicit type conversion or casting. It is used when the destination data type is narrower than the source data type, an explicit type conversion is required. The general form of this explicit conversion is given below:</p>
<p><strong>(target-type) value</strong></p>
<p>Here, target-type is the desired data type and value is the value to be converted.</p>
<p>For example:</p>
<p><strong> int num1, int num2;<br />
short num3;<br />
num3= (short)(num1+num2);</strong></p>
<p>In the example above, the sum of two 32-bit integer data type variables num1 and num2 is assigned to another variable num3, which is of integer type short (16-bit). Therefore, an explicit conversion takes place before assigning the value to num3. Otherwise, if this explicit type conversion is not performed, and the sum of variables num1 and num2 is directly assigned to variable num3, a compile-time error will be generated.  </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-narrowing-conversion.html&amp;title=What%20is%20a%20narrowing%20conversion%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-narrowing-conversion.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What will be the output of the following program?</title>
		<link>http://www.scjp-certification.com/what-will-be-the-output-of-the-following-program.html</link>
		<comments>http://www.scjp-certification.com/what-will-be-the-output-of-the-following-program.html#comments</comments>
		<pubDate>Thu, 12 Nov 2009 11:53:23 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Java Questions]]></category>
		<category><![CDATA[exam guide]]></category>
		<category><![CDATA[exam questions]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[main]]></category>
		<category><![CDATA[operator]]></category>
		<category><![CDATA[question]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=402</guid>
		<description><![CDATA[class Ques{ public static void main (String[] argv){ int p1 = 0102; int p2 = -10; int mod = p1...]]></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-will-be-the-output-of-the-following-program.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-will-be-the-output-of-the-following-program.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>class Ques{<br />
   public static void main (String[] argv){<br />
       int p1 = 0102;<br />
       int p2 = -10;<br />
       int mod = p1 % p2;<br />
       System.out.println(&#8220;mod = &#8221; +mod);<br />
   }<br />
}</strong>  </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-will-be-the-output-of-the-following-program.html&amp;title=What%20will%20be%20the%20output%20of%20the%20following%20program%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-will-be-the-output-of-the-following-program.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>uCertify&#8217;s upgrade of UML certification paper (OMG-OCUP-100)</title>
		<link>http://www.scjp-certification.com/ucertifys-upgrade-of-uml-certification-paper-omg-ocup-100.html</link>
		<comments>http://www.scjp-certification.com/ucertifys-upgrade-of-uml-certification-paper-omg-ocup-100.html#comments</comments>
		<pubDate>Wed, 04 Nov 2009 12:10:14 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[exam]]></category>
		<category><![CDATA[exam guide]]></category>
		<category><![CDATA[exam questions]]></category>
		<category><![CDATA[free questions]]></category>
		<category><![CDATA[ocup]]></category>
		<category><![CDATA[study guide]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[uml]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=350</guid>
		<description><![CDATA[uCertify has recently launched its updated simulation software for UM0-100 (OMG-Certified UML Professional). Why this version is different from its...]]></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%2Fucertifys-upgrade-of-uml-certification-paper-omg-ocup-100.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fucertifys-upgrade-of-uml-certification-paper-omg-ocup-100.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>uCertify has recently launched its updated simulation software for UM0-100 (OMG-Certified UML Professional). Why this version is different from its previous versions? The new upgrade version of <a href="http://www.ucertify.com/blog/skill-required-for-omg-ocup-100.html">UM0-100</a> has the following enhancments:
<ol>
<li>It includes the latest uCertify&#8217;s prep-engine.</li>
<li>It provides 200 questions and 115 study notes that is not provided anywhere.</li>
<li> It provides the study material that makes UML 2.0 different from its previous versions. </li>
<li>Study material related to the critical topics of Activity Diagram, Sequence Diagram, Use Case diagram, and Interaction diagrams.</li>
</ol>
<p> To get a glimpse of the UM0-100 PrepKit you can download its free demo version (which contains 15 free practice questions) from uCertifyâ€™s web site. Click the link below: </p>
<p><strong><a href="http://www.ucertify.com/exams/OMG/UM0-100.html">http://www.ucertify.com/exams/OMG/UM0-100.html</a> </strong></p>
<p>UML offers a standard way to write a systemâ€™s blueprints, including conceptual components such as actors, business processes and systemâ€™s components, and activities as well as concrete things such as programming language statements, database schemas, and reusable software components.</p>
<p><strong><a href="http://www.ucertify.com/exams/OMG/UM0-100.html">http://www.ucertify.com/exams/OMG/UM0-100.html</a></strong></p>
<p>uCertify provides additional 30% discounts on its UML certification papers. Go get the latest upgraded version of the OCUP exam Hurry!!!!!!!!!  </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fucertifys-upgrade-of-uml-certification-paper-omg-ocup-100.html&amp;title=uCertify%26%238217%3Bs%20upgrade%20of%20UML%20certification%20paper%20%28OMG-OCUP-100%29"><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/ucertifys-upgrade-of-uml-certification-paper-omg-ocup-100.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

