<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Science Dictionary » Computer Science</title>
	
	<link>http://www.mysciencedictionary.com</link>
	<description>Definition of Education</description>
	<lastBuildDate>Mon, 16 Aug 2010 06:24:45 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/compsciencemysciencedictionary" /><feedburner:info uri="compsciencemysciencedictionary" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>compsciencemysciencedictionary</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Linear Search Program</title>
		<link>http://feedproxy.google.com/~r/compsciencemysciencedictionary/~3/-aAcBHUX9Lk/</link>
		<comments>http://www.mysciencedictionary.com/linear-search-program/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 09:45:05 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index L]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[C++ Program]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=440</guid>
		<description><![CDATA[Source Code of Linear Search, provide you also the .CPP file for direct download, direct run in Compiler]]></description>
			<content:encoded><![CDATA[<h2><span style="font-size: small;">Here is the Program of Linear Search</span></h2>
<p style="text-align: justify;">Searching refers to Search an element in a given Array whether elements are in Ascending Order or Descending Order, <strong>Linear Search</strong> is also a type of Searching Technique.</p>
<p>See below the <strong>Source Code of Linear Search</strong></p>
<blockquote>
<pre>void main()
{
 clrscr();
 int a[10],i,n;
 cout&lt;&lt;"\n\n\t\t Enter 10 Values :\t";
 for(i=0;i&lt;=9;i++)
 cin&gt;&gt;a[i];     ...... [ <a href="http://www.mysciencedictionary.com/wp-content/uploads/programs/linear-search.CPP" target="_blank">Read More</a> ]</pre>
</blockquote>
<p>Direct Download [.CPP format] &#8211; <a href="http://www.mysciencedictionary.com/wp-content/uploads/programs/linear-search.CPP" target="_blank">Linear Search Program</a></p>
<p>[To download file, just Right Click and click Save Target As]</p>
<img src="http://feeds.feedburner.com/~r/compsciencemysciencedictionary/~4/-aAcBHUX9Lk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/linear-search-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mysciencedictionary.com/linear-search-program/</feedburner:origLink></item>
		<item>
		<title>Binary Search Program</title>
		<link>http://feedproxy.google.com/~r/compsciencemysciencedictionary/~3/gptc9j8qKWc/</link>
		<comments>http://www.mysciencedictionary.com/binary-search-program/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 09:11:03 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index B]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[C++ Program]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=439</guid>
		<description><![CDATA[Source Code of Binary Search, provide you also the .CPP file for direct download, direct run in Compiler]]></description>
			<content:encoded><![CDATA[<h2><span style="font-size: small;">Here is the Program of Binary Search</span></h2>
<p style="text-align: justify;">Searching refers to Search an element in a given Array whether elements are in Ascending Order or Descending Order, <strong>Binary Search</strong> is also a type of Searching Technique.</p>
<p>See below the <strong>Source Code of Binary Search</strong></p>
<blockquote>
<pre>void main()
{
 clrscr();
 int a[10],i,n,m,l=0,h=9;
 cout&lt;&lt;"\n\n\n\t Enter 10 Values in ascending order:\t";
 for(i=0;i&lt;=9;i++)
 cin&gt;&gt;a[i];
 cout&lt;&lt;"\n\n\t\t Enter a value to be searched :\t";
 cin&gt;&gt;n;
 while(l&lt;=h)
 {
  m=(l+h)/2;
  if(a[m]==n)     ...... [ <a href="http://www.mysciencedictionary.com/wp-content/uploads/programs/binary-search.CPP" target="_blank">Read More</a> ]</pre>
</blockquote>
<p>Direct Download [.CPP format] &#8211; <a href="http://www.mysciencedictionary.com/wp-content/uploads/programs/binary-search.CPP" target="_blank">Binary Search Program</a></p>
<p>[To download file, just Right Click and click Save Target As]</p>
<img src="http://feeds.feedburner.com/~r/compsciencemysciencedictionary/~4/gptc9j8qKWc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/binary-search-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mysciencedictionary.com/binary-search-program/</feedburner:origLink></item>
		<item>
		<title>Selection Sort Program</title>
		<link>http://feedproxy.google.com/~r/compsciencemysciencedictionary/~3/vKGpzkggn3k/</link>
		<comments>http://www.mysciencedictionary.com/selection-sort-program/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 08:13:18 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index S]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[C++ Program]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=434</guid>
		<description><![CDATA[Source Code of Selection Sort, provide you also the .CPP file for direct download, direct run in Compiler]]></description>
			<content:encoded><![CDATA[<h2><span style="font-size: small;">Here is the Program of Selection Sort</span></h2>
<p style="text-align: justify;">Sorting refers to arranging elements of an Array in increment or in decrement order, <strong>Selection Sort</strong> is also a type of sorting technique.</p>
<p>See below the <strong>Source Code of Selection Sort</strong></p>
<blockquote>
<pre>void main()
{
 clrscr();
 int a[10],i,j,small,pos,temp;
 cout&lt;&lt;"\n\t Enter 10 Values :\t";
 for(i=0;i&lt;=9;i++)
 {
  cin&gt;&gt;a[i];
 }     ...... [ <a href="http://www.mysciencedictionary.com/wp-content/uploads/programs/selection-sort.CPP" target="_blank">Read More</a> ]</pre>
</blockquote>
<p>Direct Download [.CPP format] &#8211; <a href="http://www.mysciencedictionary.com/wp-content/uploads/programs/selection-sort.CPP" target="_blank">Selection Sort Program</a></p>
<p>[To download file, just Right Click and click Save Target As]</p>
<img src="http://feeds.feedburner.com/~r/compsciencemysciencedictionary/~4/vKGpzkggn3k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/selection-sort-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mysciencedictionary.com/selection-sort-program/</feedburner:origLink></item>
		<item>
		<title>Insertion Sort Program</title>
		<link>http://feedproxy.google.com/~r/compsciencemysciencedictionary/~3/AvmgovvUGnE/</link>
		<comments>http://www.mysciencedictionary.com/insertion-sort-program/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 07:47:22 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index I]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[C++ Program]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=435</guid>
		<description><![CDATA[Source Code of Insertion Sort, provide you also the .CPP file for direct download, direct run in Compiler]]></description>
			<content:encoded><![CDATA[<h2><span style="font-size: small;">Here is the Program of Insertion Sort</span></h2>
<p style="text-align: justify;">Sorting refers to arranging elements of an Array in increment or in decrement order, <strong>Insertion Sort</strong> is also a type of sorting technique.</p>
<p>See below the <strong>Source Code of Insertion Sort</strong></p>
<blockquote>
<pre>void main()
{
 clrscr();
 int a[11],i,j,temp;
 cout&lt;&lt;"\n\t Enter 10 Values :\t";
 for(i=1;i&lt;=10;i++)
 {
  cin&gt;&gt;a[i];
 }       ...... [ <a href="http://www.mysciencedictionary.com/wp-content/uploads/programs/insertion-sort.CPP" target="_blank">Read More</a> ]</pre>
</blockquote>
<p>Direct Download [.CPP format] &#8211; <a href="http://www.mysciencedictionary.com/wp-content/uploads/programs/insertion-sort.CPP" target="_blank">Insertion Sort Program</a></p>
<p>[To download file, just Right Click and click Save Target As]</p>
<img src="http://feeds.feedburner.com/~r/compsciencemysciencedictionary/~4/AvmgovvUGnE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/insertion-sort-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mysciencedictionary.com/insertion-sort-program/</feedburner:origLink></item>
		<item>
		<title>Bubble Sort Program</title>
		<link>http://feedproxy.google.com/~r/compsciencemysciencedictionary/~3/i62Jypb8Iqg/</link>
		<comments>http://www.mysciencedictionary.com/bubble-sort-program/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 18:28:28 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index B]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[C++ Program]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=333</guid>
		<description><![CDATA[Source Code of Bubble Sort, provide you also the .CPP file for direct download, direct run in Compiler]]></description>
			<content:encoded><![CDATA[<h2><span style="font-size: small;">Here is the Program of Bubble Sort</span></h2>
<p style="text-align: justify;">Sorting refers to arranging elements of an Array in increment or in decrement order, <strong>Bubble Sort</strong> is also a type of sorting technique.</p>
<p>See below the <strong>Source Code of Bubble Sort</strong></p>
<blockquote><p>
void main()<br />
{<br />
clrscr();<br />
int a[10],i,j,temp;<br />
cout&lt;&lt;&#8221;\n\n\t Enter 10 Values :\t&#8221;;<br />
for(i=0;i&lt;=9;i++)<br />
{<br />
cin&gt;&gt;a[i];<br />
}<br />
for(i=0;i&lt;=9;i++)      &#8230;&#8230; [ <a href="http://www.mysciencedictionary.com/wp-content/uploads/2009/09/bubble-sort.CPP" target="_blank">Read More</a> ]
</p></blockquote>
<p>Direct Download [.CPP format] &#8211; <a href="http://www.mysciencedictionary.com/wp-content/uploads/2009/09/bubble-sort.CPP" target="_blank">Bubble Sort Program</a></p>
<p>[To download file, just Right Click and click Save Target As]</p>
<img src="http://feeds.feedburner.com/~r/compsciencemysciencedictionary/~4/i62Jypb8Iqg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/bubble-sort-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mysciencedictionary.com/bubble-sort-program/</feedburner:origLink></item>
		<item>
		<title>Definition of Class</title>
		<link>http://feedproxy.google.com/~r/compsciencemysciencedictionary/~3/C8XNgX39DoA/</link>
		<comments>http://www.mysciencedictionary.com/definition-of-class/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 15:35:13 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index C]]></category>
		<category><![CDATA[OOPs]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=198</guid>
		<description><![CDATA[A Class is a group of objects that share common properties and relationship. Defining a Class does not perform any memory allocation.]]></description>
			<content:encoded><![CDATA[<p>A <strong>Class</strong> is a group of objects that share common properties and relationship. Defining a Class does not perform any memory allocation. A Class is like a blueprint for a House, that blueprint gives the specifications of the house, and based on it many houses can be constructed.</p>
<img src="http://feeds.feedburner.com/~r/compsciencemysciencedictionary/~4/C8XNgX39DoA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/definition-of-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mysciencedictionary.com/definition-of-class/</feedburner:origLink></item>
		<item>
		<title>Definition of Object</title>
		<link>http://feedproxy.google.com/~r/compsciencemysciencedictionary/~3/iiKu-lhVmyg/</link>
		<comments>http://www.mysciencedictionary.com/definition-of-object/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 11:55:56 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index O]]></category>
		<category><![CDATA[OOPs]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=196</guid>
		<description><![CDATA[An Object is an identifiable entitly with some characteristics and behaviour. Like in OOPS programming, an Object is represented by its Data and its behaviour is represented by its functions associated.]]></description>
			<content:encoded><![CDATA[<p>An <strong>Object</strong> is an identifiable entitly with some characteristics and behaviour. Like in OOPS programming, an Object is represented by its Data and its behaviour is represented by its functions associated.</p>
<img src="http://feeds.feedburner.com/~r/compsciencemysciencedictionary/~4/iiKu-lhVmyg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/definition-of-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mysciencedictionary.com/definition-of-object/</feedburner:origLink></item>
		<item>
		<title>Definition of Object Oriented Paradigm</title>
		<link>http://feedproxy.google.com/~r/compsciencemysciencedictionary/~3/o-3AWpnkmb0/</link>
		<comments>http://www.mysciencedictionary.com/definition-of-object-oriented-paradigm/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 11:12:43 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index O]]></category>
		<category><![CDATA[OOPs]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=194</guid>
		<description><![CDATA[Object Oriented Programming is a programming paradigm that uses 'Objects' to design applications and computer programs, it models the real world.]]></description>
			<content:encoded><![CDATA[<p><strong>Object Oriented Paradigm</strong> is a programming paradigm that uses &#8216;Objects&#8217; to design applications and computer programs, it models the real world. This includes some unique concepts which overcome the drawbacks of fellow programming paradigms. In OOP, the emphasis is on data and not on procedures. C++ is a programming language which obey OOP features.</p>
<p>General <strong>Features of OOP</strong> Programming:</p>
<ul>
<li>Object</li>
<li>Classes</li>
<li>Data Abstraction</li>
<li>Data Encapsulation</li>
<li>Inheritance</li>
<li>Modlarity</li>
<li>Polymorphism</li>
<li>Message Passing</li>
<li>Dynamic Binding</li>
</ul>
<img src="http://feeds.feedburner.com/~r/compsciencemysciencedictionary/~4/o-3AWpnkmb0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/definition-of-object-oriented-paradigm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mysciencedictionary.com/definition-of-object-oriented-paradigm/</feedburner:origLink></item>
		<item>
		<title>Definition of Procedural Paradigm</title>
		<link>http://feedproxy.google.com/~r/compsciencemysciencedictionary/~3/WNzwVo8y9wY/</link>
		<comments>http://www.mysciencedictionary.com/definition-of-procedural-paradigm/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 10:15:22 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index P]]></category>
		<category><![CDATA[OOPs]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=192</guid>
		<description><![CDATA[Procedural paradigm is a programming Paradigm which emphasis on procedure means doing things.]]></description>
			<content:encoded><![CDATA[<p><strong>Procedural Paradigm</strong> is a programming Paradigm which emphasis on procedure means doing things. It does not model the real world. The data takes the back seat in Procedural programming Paradigm.</p>
<img src="http://feeds.feedburner.com/~r/compsciencemysciencedictionary/~4/WNzwVo8y9wY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/definition-of-procedural-paradigm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mysciencedictionary.com/definition-of-procedural-paradigm/</feedburner:origLink></item>
		<item>
		<title>Definition of Paradigm</title>
		<link>http://feedproxy.google.com/~r/compsciencemysciencedictionary/~3/OctPy_2s3i8/</link>
		<comments>http://www.mysciencedictionary.com/definition-of-paradigm/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 09:10:32 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index P]]></category>
		<category><![CDATA[OOPs]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=190</guid>
		<description><![CDATA[Paradigm is an approach to Programming, it means organizing principle of a program.]]></description>
			<content:encoded><![CDATA[<p><strong>Paradigm</strong> is an approach to Programming, it means organizing principle of a program.</p>
<p>There are two types of Programming Paradigm:</p>
<ul>
<li>Procedural Paradigm</li>
<li>Object Oriented Paradigm</li>
</ul>
<img src="http://feeds.feedburner.com/~r/compsciencemysciencedictionary/~4/OctPy_2s3i8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/definition-of-paradigm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mysciencedictionary.com/definition-of-paradigm/</feedburner:origLink></item>
	</channel>
</rss>

