<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>SCJP Certification</title>
	<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>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>What is association?</title>
		<description><![CDATA[An association represents a relationship between classes. It represents a mechanism that allows objects to communicate with each other. It...]]></description>
		<link>http://www.scjp-certification.com/what-is-association.html</link>
			</item>
	<item>
		<title>WonderFALL news &amp; savings from uCertify!!!!</title>
		<description><![CDATA[WonderFALL news &#038; savings from uCertify!!!! Fall into crisp, cool autumn savings with uCertify ! This offer is available for...]]></description>
		<link>http://www.scjp-certification.com/wonderfall-news-savings-from-ucertify.html</link>
			</item>
	<item>
		<title>What is narrowing conversion?</title>
		<description><![CDATA[In Java, a narrowing conversion is also known as an explicit type conversion or casting. When the destination data type...]]></description>
		<link>http://www.scjp-certification.com/what-is-narrowing-conversion.html</link>
			</item>
	<item>
		<title>What is runtime polymorphism or dynamic method dispatch?</title>
		<description><![CDATA[In Java, runtime polymorphism or dynamic method dispatch is a process in which a call to an overridden method is...]]></description>
		<link>http://www.scjp-certification.com/what-is-runtime-polymorphism-or-dynamic-method-dispatch.html</link>
			</item>
	<item>
		<title>What is coupling?</title>
		<description><![CDATA[Coupling is a term that describes the degree to which one module relies on another module for its proper functioning....]]></description>
		<link>http://www.scjp-certification.com/what-is-coupling.html</link>
			</item>
	<item>
		<title>What is polymorphism?</title>
		<description><![CDATA[Polymorphism is a feature that allows an interface in Java to be used by many classes for different purposes. The...]]></description>
		<link>http://www.scjp-certification.com/what-is-polymorphism.html</link>
			</item>
	<item>
		<title>What is constructor overloading?</title>
		<description><![CDATA[Constructor overloading is a technique in Java in which a class can have any number of constructors that differ in...]]></description>
		<link>http://www.scjp-certification.com/what-is-constructor-overloading.html</link>
			</item>
	<item>
		<title>What is inheritance?</title>
		<description><![CDATA[Inheritance is a process by which objects of a class acquire the properties of the objects of another class. It...]]></description>
		<link>http://www.scjp-certification.com/what-is-inheritance-2.html</link>
			</item>
	<item>
		<title>What are static variables?</title>
		<description><![CDATA[Variables that have only one copy per class are known as static variables. They are not attached to a particular...]]></description>
		<link>http://www.scjp-certification.com/what-are-static-variables.html</link>
			</item>
	<item>
		<title>What is a default constructor?</title>
		<description><![CDATA[A constructor without any parameters is known as a default constructor. When a class is defined without any constructor, the...]]></description>
		<link>http://www.scjp-certification.com/what-is-a-default-constructor-2.html</link>
			</item>
	<item>
		<title>What symbols are used to represent modifiers in UML?</title>
		<description><![CDATA[UML uses various types of graphical notations to represent different relationships, operations, and attributes. In UML, each modifier is represented...]]></description>
		<link>http://www.scjp-certification.com/what-symbols-are-used-to-represent-modifiers-in-uml.html</link>
			</item>
	<item>
		<title>What is multiplicity?</title>
		<description><![CDATA[The multiplicity of a relationship between two classes defines the number of objects of one class in relation to the...]]></description>
		<link>http://www.scjp-certification.com/what-is-multiplicity-2.html</link>
			</item>
	<item>
		<title>What is agrregation?</title>
		<description><![CDATA[Aggregation is a type of association that specifies a whole/part relationship between the aggregate (whole) and a component part. It...]]></description>
		<link>http://www.scjp-certification.com/what-is-agrregation.html</link>
			</item>
	<item>
		<title>What is composition?</title>
		<description><![CDATA[When one object is responsible for the lifecycle management of another object, this relationship is known as composition. Composition represents...]]></description>
		<link>http://www.scjp-certification.com/what-is-composition.html</link>
			</item>
	<item>
		<title>What is the lowerKey() method?</title>
		<description><![CDATA[The lowerKey(k) method of the NavigableMap interface returns the greatest key in the map strictly less than k. It returns...]]></description>
		<link>http://www.scjp-certification.com/what-is-the-lowerkey-method.html</link>
			</item>
	<item>
		<title>What is the lowerEntry() method?</title>
		<description><![CDATA[The lowerEntry(k) method of the NavigableMap interface returns a key value pair with the greatest key in the map strictly...]]></description>
		<link>http://www.scjp-certification.com/what-is-the-lowerentry-method.html</link>
			</item>
	<item>
		<title>What is the descendingMap() method?</title>
		<description><![CDATA[The descendingMap() method of the NavigableMap interface returns a navigable map according to the descending order of keys. This method...]]></description>
		<link>http://www.scjp-certification.com/what-is-the-descendingmap-method-2.html</link>
			</item>
	<item>
		<title>What is the descendingKeySet() method?</title>
		<description><![CDATA[The descendingKeySet() method of the NavigableMap interface returns a navigable set according to the descending order of keys in the...]]></description>
		<link>http://www.scjp-certification.com/what-is-the-descendingkeyset-method.html</link>
			</item>
	<item>
		<title>What is the File class?</title>
		<description><![CDATA[The File class is an abstract class used for file operations such as creating empty files, deleting files, searching for...]]></description>
		<link>http://www.scjp-certification.com/what-is-the-file-class.html</link>
			</item>
	<item>
		<title>What is the FileReader class?</title>
		<description><![CDATA[The FileReader class provides methods for reading character files. It contains methods for reading a single character, a fixed number...]]></description>
		<link>http://www.scjp-certification.com/what-is-the-filereader-class.html</link>
			</item>
	<item>
		<title>What is the BufferedWriter class?</title>
		<description><![CDATA[The BufferedWriter class is used for fast writing operations of texts to a character-output stream. It can be used to...]]></description>
		<link>http://www.scjp-certification.com/what-is-the-bufferedwriter-class.html</link>
			</item>
	<item>
		<title>What is the BufferedReader class?</title>
		<description><![CDATA[The BufferedReader class is used for fast reading operations of texts from a character-input stream. It can be used to...]]></description>
		<link>http://www.scjp-certification.com/what-is-the-bufferedreader-class.html</link>
			</item>
</channel>
</rss>

