<?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>IT Shala</title>
	<atom:link href="http://www.itshala.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itshala.com</link>
	<description>Blog for IT Professionals</description>
	<lastBuildDate>Sun, 15 Jan 2012 03:45:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>program controls in c language</title>
		<link>http://www.itshala.com/2012/01/program-controls-in-c-language/</link>
		<comments>http://www.itshala.com/2012/01/program-controls-in-c-language/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 03:39:09 +0000</pubDate>
		<dc:creator>shubh shah</dc:creator>
				<category><![CDATA[C language]]></category>

		<guid isPermaLink="false">http://www.itshala.com/?p=1124</guid>
		<description><![CDATA[the various control structures in C Control structures are the statements which controls the overall any program. Control structures are basically of three types – Sequence statements Iterative statements Selection statements Sequence Statements : All the State in a program except the iterative &#38; statements. They are generally the individual statements which performs the task [...]]]></description>
		<wfw:commentRss>http://www.itshala.com/2012/01/program-controls-in-c-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Discuss various levels of access protection available for package.</title>
		<link>http://www.itshala.com/2012/01/discuss-various-levels-of-access-protection-available-for-package/</link>
		<comments>http://www.itshala.com/2012/01/discuss-various-levels-of-access-protection-available-for-package/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:06:50 +0000</pubDate>
		<dc:creator>kananiprabodh</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.itshala.com/?p=1102</guid>
		<description><![CDATA[As you will see, Java provides many levels of protection to allow fine-grained control over the visibility of variables and methods within classes, subclasses, and packages. &#160; Packages act as containers for classes and other subordinate packages. &#160; Java addresses four categories of visibility for class members: • Subclasses in the same package • Non-subclasses [...]]]></description>
		<wfw:commentRss>http://www.itshala.com/2012/01/discuss-various-levels-of-access-protection-available-for-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Write a short note on package. Give its significance.</title>
		<link>http://www.itshala.com/2012/01/write-a-short-note-on-package-give-its-significance/</link>
		<comments>http://www.itshala.com/2012/01/write-a-short-note-on-package-give-its-significance/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:05:34 +0000</pubDate>
		<dc:creator>kananiprabodh</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.itshala.com/?p=1098</guid>
		<description><![CDATA[Package is essentially a group of classes. Packages are containers for classes that are used to keep the class name space compartmentalized. For example, a package allows you to create a class named List, which you can store in your own package without concern that it will collide with some other class named List stored [...]]]></description>
		<wfw:commentRss>http://www.itshala.com/2012/01/write-a-short-note-on-package-give-its-significance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Write short note on thread, give the different ways to creating a thread.</title>
		<link>http://www.itshala.com/2012/01/write-short-note-on-thread-give-the-different-ways-to-creating-a-thread/</link>
		<comments>http://www.itshala.com/2012/01/write-short-note-on-thread-give-the-different-ways-to-creating-a-thread/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:04:16 +0000</pubDate>
		<dc:creator>kananiprabodh</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.itshala.com/?p=1095</guid>
		<description><![CDATA[A multithreaded program contains two or more parts that can run concurrently. Each part of such a program is called a thread, and each thread defines a separate path of execution. The thread is the smallest unit of dispatchable code. This means that a single program can perform two or more tasks simultaneously. For instance, [...]]]></description>
		<wfw:commentRss>http://www.itshala.com/2012/01/write-short-note-on-thread-give-the-different-ways-to-creating-a-thread/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Discuss the usage of the wait() and resume() method.</title>
		<link>http://www.itshala.com/2012/01/discuss-the-usage-of-the-wait-and-resume-method/</link>
		<comments>http://www.itshala.com/2012/01/discuss-the-usage-of-the-wait-and-resume-method/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:03:09 +0000</pubDate>
		<dc:creator>kananiprabodh</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.itshala.com/?p=1092</guid>
		<description><![CDATA[resume() is used to restart the execution of the thread. wait( ) method is invoked to suspend the execution of the thread. More&#160;&#187;]]></description>
		<wfw:commentRss>http://www.itshala.com/2012/01/discuss-the-usage-of-the-wait-and-resume-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

