<?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>White paper and pencil</title>
	<atom:link href="http://whpp.me/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://whpp.me/blog</link>
	<description>try to learn anything about everything and try to learn everything about one thing</description>
	<lastBuildDate>Wed, 03 Nov 2010 16:29:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>In .NET Frame Work</title>
		<link>http://whpp.me/blog/?p=108</link>
		<comments>http://whpp.me/blog/?p=108#comments</comments>
		<pubDate>Wed, 03 Nov 2010 16:21:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://whpp.me/blog/?p=108</guid>
		<description><![CDATA[
.NET Frame work consist of  CLR ( Common Language Runtime ) and BCL ( Basic Class Liberary )
Suppose we can consider the FX. (.Net Fram Work ) as a factory we find the manager of this factory is CLR and the material of this factory is BCL .
CLR responsible for (automatic memory management, Errors handling, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><strong><img class="alignnone" title=".net" src="http://www.vijayforvictory.com/wp-content/uploads/2008/11/microsoft-dot-net-new-logo.png" alt="" width="328" height="81" /></strong></p>
<p><strong>.NET</strong> Frame work consist of  <span style="color: #0000ff;">CLR</span> ( Common Language Runtime ) and <span style="color: #0000ff;">BCL </span>( Basic Class Liberary )</p>
<p>Suppose we can consider the <span style="color: #0000ff;">FX</span>. (.Net Fram Work ) as a factory we find the manager of this factory is <span style="color: #0000ff;">CLR</span> and the material of this factory is <span style="color: #0000ff;">BCL </span>.</p>
<p><span style="color: #0000ff;">CLR</span> responsible for (automatic memory management, Errors handling, Compilation).</p>
<p><span style="color: #ff0000;">note :</span> Compilation means How to convert source code to native machine language? or How to execute the code?</p>
<p><span id="more-108"></span></p>
<p><span style="color: #0000ff;">BCL</span> ( Basic Class Liberary ) such as C#, J#, C++, VB.NET.</p>
<p>The Execution Process done as the following:</p>
<p style="padding-left: 60px;">1. Source code is converted to common Intermediate Language (<span style="color: #000080;">CIL</span>).</p>
<p style="padding-left: 60px;">2. <span style="color: #0000ff;">CIL</span> is then assembled into bytecode and the .NET assembly is created.</p>
<p style="padding-left: 60px;">3. upon executionof a .NET assembly its bytecode is passed through <span style="color: #000080;">JIT</span> (Just In Time Compilation) to generate native code.</p>
<p style="padding-left: 60px;">4. The Native Code is executed by the computer&#8217;s processor.</p>
<p><span style="color: #0000ff;">CIL:</span> Formally called the Micrsoft Common Intermediate Language or <span style="color: #0000ff;">MSIL</span>, is the lowest level human readable programming language defined by the common language Infrastructure specification and used by .NET and MONO on LINUX or UNIX.</p>
<p><span style="color: #ff0000;">note:</span>  During the compilation of .NET programming language the source code is translated into <span style="color: #0000ff;">CIL</span> code.</p>
<p><span style="color: #0000ff;">JIT</span> (Just In Time compilation): involves turning the bytecode into executable code by the CPU.</p>
]]></content:encoded>
			<wfw:commentRss>http://whpp.me/blog/?feed=rss2&amp;p=108</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some terminology in database</title>
		<link>http://whpp.me/blog/?p=103</link>
		<comments>http://whpp.me/blog/?p=103#comments</comments>
		<pubDate>Sat, 24 Jul 2010 08:58:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://whpp.me/blog/?p=103</guid>
		<description><![CDATA[
such as engineering, medicine, Sporting and other sciences the database has its own terminology
maninpulation of data is subject to certain rules that are set by developers these rules called constraints.
Not null: prevent null values from being used in the columns.
when an employee doesn&#8217;t have a mobile number then his/her mobile number is a null, and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img title="database terminlogy" src="http://www.abtechsupport.com/files/database.jpg" alt="" width="418" height="287" /></p>
<p style="text-align: left;">such as engineering, medicine, Sporting and other sciences the database has its own terminology</p>
<p style="text-align: left;">maninpulation of data is subject to certain rules that are set by developers these rules called <span style="color: #0000ff;">constraints</span>.</p>
<p style="text-align: left;"><span style="color: #0000ff;">Not null:</span> prevent null values from being used in the columns.</p>
<p style="text-align: left; padding-left: 30px;">when an employee doesn&#8217;t have a mobile number then his/her mobile number is a null, and when every employee must have a name value then the name column is a not null column.</p>
<p style="text-align: left;"><span style="color: #ff0000;">Note</span> :: The null value is not the same as a zero or space. (Zero and Space are characters)</p>
<p style="text-align: left;"><span id="more-103"></span></p>
<p style="text-align: left;"><span style="color: #0000ff;">Unique Key:</span> requires that every value in a column or set of columns must be unique. by another meaning no two rows of table can have duplicate values in specified column or set of columns.     i.e no two employees can have the same mobile number.</p>
<p style="text-align: left;"><span style="color: #ff0000;">Note</span> :: Unique constraints enable the input of null values in the unique columns but don&#8217;t allow of repeating.</p>
<p style="text-align: left;"><span style="color: #0000ff;">Primary Key</span>: is one or more columns whose values uniquely identify each row in a table.</p>
<p style="text-align: left; padding-left: 30px;"><span style="color: #ff0000;">Note</span> :: primary key don&#8217;t allow using of null values and don&#8217;t allow repeating of values.</p>
<p style="text-align: left;"><span style="color: #0000ff;">Foreign Key:</span> column or a set of columns that contains logical pointers rather than physical data values and these logical pointers must refer to an existing primary key.</p>
<p style="text-align: left;">for example the department number in the employee table is a logical pointer that refers to the actual department number in the departments table.</p>
<p style="text-align: left;">With the foreign key constraint you can ensure that : achieving data consistency, data integrity, data redundancy.</p>
<p style="text-align: left;"><span style="color: #ff0000;">Note</span> :: any set of columns that constitute together one unique ,primary, or foreign key constraint is treated as single logical unit that is called a composite key or compound key.</p>
<p style="text-align: left;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://whpp.me/blog/?feed=rss2&amp;p=103</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Apology</title>
		<link>http://whpp.me/blog/?p=100</link>
		<comments>http://whpp.me/blog/?p=100#comments</comments>
		<pubDate>Fri, 23 Jul 2010 14:22:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[To My Life]]></category>

		<guid isPermaLink="false">http://whpp.me/blog/?p=100</guid>
		<description><![CDATA[I&#8217;m very sorry for lating my readers but this due to Circumstances beyond my control.
In the previous period I were in exams of preliminary in computer science and finally I success and now in period of making decision of my life of work but in principle I decide to make my master in neural networks [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very sorry for lating my readers but this due to Circumstances beyond my control.</p>
<p>In the previous period I were in exams of preliminary in computer science and finally I success and now in period of making decision of my life of work but in principle I decide to make my master in neural networks and artificial intelligence.</p>
<p>I&#8217;ll complete what i began in my blog to benifit all readers and my self and I&#8217;m very happy with all comments of you.</p>
<p style="text-align: center;"><img class="aligncenter" title="definiton of success " src="http://www.aha-business-ideas.com/image-files/definition-of-success.jpg" alt="" width="424" height="283" /></p>
<p>I&#8217;m very happy with success <img src='http://whpp.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://whpp.me/blog/?feed=rss2&amp;p=100</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>http//:www.whpp.me</title>
		<link>http://whpp.me/blog/?p=92</link>
		<comments>http://whpp.me/blog/?p=92#comments</comments>
		<pubDate>Fri, 30 Apr 2010 19:41:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[whpp]]></category>
		<category><![CDATA[whpp.me]]></category>
		<category><![CDATA[www.whpp.me]]></category>

		<guid isPermaLink="false">http://whpp.me/blog/?p=92</guid>
		<description><![CDATA[

Congratulations for me  for my blog
www.whpp.me
الحمد لله اليوم اصبحت مدونتي
.me
مبروك عليا
  
ايها القراءاتمني من الله ان يتم عليكم وعليا الصحة والعافية واستطيع افادتكم في مدونتي هذه

]]></description>
			<content:encoded><![CDATA[<p><a href="http://whpp.me/blog/wp-content/uploads/2010/04/Untitled-4.gif"></a></p>
<p style="text-align: center;"><a><img class="aligncenter" title="Congratulations" src="http://www.caloriesperhour.com/forums/attachment.php?id=974" alt="" width="500" height="377" /></a></p>
<p style="text-align: center;">Congratulations for me  for my blog</p>
<p style="text-align: center;">www.whpp.me</p>
<p style="text-align: center;">الحمد لله اليوم اصبحت مدونتي</p>
<p style="text-align: center;">.me</p>
<p style="text-align: center;">مبروك عليا</p>
<p style="text-align: center;"> <img src='http://whpp.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: center;">ايها القراءاتمني من الله ان يتم عليكم وعليا الصحة والعافية واستطيع افادتكم في مدونتي هذه</p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://whpp.me/blog/?feed=rss2&amp;p=92</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>From Depression to happiness</title>
		<link>http://whpp.me/blog/?p=85</link>
		<comments>http://whpp.me/blog/?p=85#comments</comments>
		<pubDate>Thu, 29 Apr 2010 17:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[To My Life]]></category>
		<category><![CDATA[depression]]></category>
		<category><![CDATA[happiness]]></category>
		<category><![CDATA[in our life]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[story]]></category>

		<guid isPermaLink="false">http://whitepaperandpencil.wordpress.com/?p=85</guid>
		<description><![CDATA[this  person was so frightened from seeing life with its colors
to some extent in this depression is  reduced
in this also to some extent  depression  is reduced and start to see butterfly with its colors
in this image this person begin seeing  butterfly and what&#8217;s around him
now his status is improved he decided [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;">this  person was so frightened from seeing life with its colors</p>
<p style="text-align:center;"><img class="aligncenter" title="Depression" src="http://farm5.static.flickr.com/4016/4563186774_e33f788690.jpg" alt="" width="500" height="375" />to some extent in this <img title="More..." src="http://whitepaperandpencil.wordpress.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><span id="more-85"></span>depression is  reduced</p>
<p style="text-align:center;"><img class="aligncenter" title="Depression 2" src="http://farm4.static.flickr.com/3348/4563187482_9441bc5971.jpg" alt="" width="500" height="375" />in this also to some extent  depression  is reduced and start to see butterfly with its colors</p>
<p style="text-align:center;"><img class="aligncenter" title="Depression 3" src="http://farm4.static.flickr.com/3265/4562560079_a87c8331fb.jpg" alt="" width="500" height="375" />in this image this person begin seeing  butterfly and what&#8217;s around him</p>
<p style="text-align:center;"><img class="aligncenter" title="depression  " src="http://farm4.static.flickr.com/3274/4562560777_334afa1e89.jpg" alt="" width="500" height="375" />now his status is improved he decided to  wear his jacket to go out</p>
<p style="text-align:center;"><img class="aligncenter" title="depression" src="http://farm4.static.flickr.com/3455/4563191146_6dff3fe6ca.jpg" alt="" width="500" height="375" />now he decide to color his life and buy a  flower</p>
<p style="text-align:center;"><img class="aligncenter" title="Depression" src="http://farm4.static.flickr.com/3181/4563191732_6d906e5da5.jpg" alt="" width="500" height="375" />now he returned to his home</p>
<p style="text-align:center;"><img class="aligncenter" title="depression" src="http://farm4.static.flickr.com/3148/4563192232_619d84a054.jpg" alt="" width="500" height="375" />he puts the flower at home and butterfly  is stopped above it</p>
<p style="text-align:center;"><img class="aligncenter" title="Depression" src="http://farm4.static.flickr.com/3032/4562564459_c909b80e50.jpg" alt="" width="500" height="375" />Now he opens the window to permit the  sun ray to light his home and his life</p>
<p style="text-align:center;"><img class="aligncenter" title="Depression" src="http://farm4.static.flickr.com/3457/4562565281_95ffb9086f.jpg" alt="" width="500" height="375" />now he is wearing his colorful wear to  go outside</p>
<p style="text-align:center;"><img title="depression" src="http://farm4.static.flickr.com/3235/4562568139_57f5ba1eb7.jpg" alt="" width="500" height="375" /></p>
<p style="text-align:center;">Now he is  gone outside with its colorful wears and lightening life</p>
<p style="text-align:center;"><img class="aligncenter" title="Depression" src="http://farm5.static.flickr.com/4054/4563194398_74809d31dc.jpg" alt="" width="500" height="375" />Now he buys more and more flower to  color his home with more flowers</p>
<p style="text-align:center;"><img class="aligncenter" title="Deprssion" src="http://farm5.static.flickr.com/4039/4562568961_a60119deb5.jpg" alt="" width="500" height="375" />he returns to his home with flower  bought it</p>
<p style="text-align:center;"><img class="aligncenter" title="Depression" src="http://farm4.static.flickr.com/3461/4562569929_8a4cd95869.jpg" alt="" width="500" height="375" />Now he is enjoying with happy life and  can see all aspects of happiness in any thing he do in his life</p>
<p style="text-align:center;"><img class="aligncenter" title="Depression" src="http://farm4.static.flickr.com/3456/4563199602_5af6939728.jpg" alt="" width="500" height="375" /></p>
<p style="text-align:center;">this person was so frightened to open  his eyes and see the sweet things in his life but he decide to change  his life when the colorful butterfly entered his home and decide to buy  the best thing in the life (Flowers) and begin to make his home good and  beautiful with putting flowers in every corner of his home and decide  to enjoy with its life and see the best thing of his life not the worst  thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://whpp.me/blog/?feed=rss2&amp;p=85</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Database Fundamentals</title>
		<link>http://whpp.me/blog/?p=80</link>
		<comments>http://whpp.me/blog/?p=80#comments</comments>
		<pubDate>Thu, 29 Apr 2010 09:08:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[concepts]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[field]]></category>
		<category><![CDATA[row]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[البيانات]]></category>
		<category><![CDATA[قواعد البيانات]]></category>

		<guid isPermaLink="false">http://whitepaperandpencil.wordpress.com/?p=78</guid>
		<description><![CDATA[DB Fundamentals 

I&#8217;ll explain basic concepts and table elements:
Basic Concepts:
Data and storage methods
Data: is a collection of facts about a person or a thing used to describe that person or thing like employee number, name, salary, hiring date and so on.
Data Storage methods: there are several ways to store data in computers according to the [...]]]></description>
			<content:encoded><![CDATA[<h1 style="text-align:center;"><span style="color:#993300;">DB Fundamentals </span></h1>
<p style="text-align:center;"><img class="aligncenter" title="Db logo" src="http://www.tstg.ca/images/database_logo_01.jpg" alt="" width="250" height="229" /></p>
<p><span style="text-decoration:underline;">I&#8217;ll explain basic concepts and table elements:</span></p>
<h2>Basic Concepts:</h2>
<p style="padding-left:30px;"><span style="color:#888888;"><span style="text-decoration:underline;">Data and storage methods</span></span></p>
<p style="padding-left:60px;"><strong><span style="color:#888888;">Data</span></strong>: is a collection of facts about a person or a thing used to describe that person or thing like employee number, name, salary, hiring date and so on.</p>
<p style="padding-left:60px;"><strong><span style="color:#888888;">Data Storage methods</span></strong>: there are several ways to store data in computers according to the nature of the data you can choose the most suitable program to store your data.The most common types of programs for storing data are described as follow:</p>
<p style="padding-left:90px;">1. Microsoft Word for storing text and paragraphs in files.</p>
<p style="padding-left:90px;">2. Microsoft Excel for storing numbers, formulas and mathematical functions.<span id="more-80"></span></p>
<p style="padding-left:90px;">3. Microsoft PowerPoint for storing information in slides and shows.</p>
<p style="padding-left:90px;">4. Database Programs to store data in tables as we&#8217;ll see in the next blogs.</p>
<p style="padding-left:60px;"><span style="text-decoration:underline;"><span style="color:#888888;">Databases</span></span></p>
<p style="padding-left:90px;">is an organized collection of logically related data stored in tables in order to provide some advantages described as follow:</p>
<p style="padding-left:90px;">- Linking data tables through relationships.</p>
<p style="padding-left:90px;">- Controlling data storing and retrieving.</p>
<p style="padding-left:90px;">- Maintaining data integrity and accuracy.</p>
<p style="padding-left:90px;">- Avoiding data redundancy and inconsistency.</p>
<p style="padding-left:90px;">- Storing and filtering data.</p>
<p style="padding-left:90px;">- Application programming.</p>
<p style="padding-left:60px;"><span style="text-decoration:underline;"><span style="color:#888888;">Relational Database Management System(RDBMS)</span></span></p>
<p style="padding-left:90px;">RDBMS in an application that creates, organize and edits databases, display data through related tables using a system programming language. The most common RDBMS programs are Oracle, Microsoft SQL Server, Sybase, DB2, and Microsoft Access.</p>
<p style="padding-left:60px;"><span style="text-decoration:underline;"><span style="color:#808080;">Database Applications</span></span></p>
<p style="padding-left:90px;">Depending on the abilities, tools and features of the chosen RDMS program, you can create different kinds of database applications as follow:</p>
<p style="padding-left:120px;"><span style="color:#888888;">Desktop applications <span style="color:#000000;">this meant to run on local computers only, represented single and standalone files. Microsoft Access is one of the most famous programs to create desktop applications.</span></span></p>
<p style="padding-left:120px;"><span style="color:#888888;"><span style="color:#000000;"><span style="color:#808080;">Client/server applications <span style="color:#000000;">this meant to run through database servers on any intranet environment </span></span>such as internal or local networks.</span></span></p>
<p style="padding-left:120px;"><span style="color:#888888;"><span style="color:#000000;"><span style="color:#808080;">Web applications <span style="color:#000000;">this meant to run through database servers combined with Web servers on the internet. Web applications are three tier applications(Data tier, Business tier and presentation tier).</span></span></span></span></p>
<p style="padding-left:120px;"><span style="color:#888888;"><span style="color:#000000;"><span style="color:#808080;"><span style="color:#000000;"><span style="color:#ff0000;">Note:</span></span></span></span></span></p>
<p style="padding-left:150px;"><span style="color:#888888;"><span style="color:#000000;"><span style="color:#808080;"><span style="color:#000000;"><span style="color:#ff0000;">Oracle and Microsoft SQL server are the most famous and powerful database engines used to create <span style="color:#808080;">client/server</span> applications and/or <span style="color:#808080;">Web applications<span style="color:#000000;">.</span></span></span></span></span></span></span></p>
<p style="padding-left:90px;"><span style="color:#888888;"><span style="color:#000000;"><span style="color:#808080;"><span style="color:#000000;"><span style="color:#ff0000;"><span style="text-decoration:underline;"><span style="color:#808080;"><span style="color:#808080;">Table Elements</span></span></span></span></span></span></span></span></p>
<p style="padding-left:90px;"><img class="alignnone" title="DB" src="http://farm4.static.flickr.com/3510/4562836820_1cb303de61.jpg" alt="" width="500" height="131" /></p>
<p style="padding-left:120px;"><span style="color:#888888;"><span style="color:#000000;"><span style="color:#808080;"><span style="color:#000000;"><span style="color:#ff0000;"><strong><span style="color:#808080;"><span style="color:#808080;">Row </span></span></strong><span style="color:#808080;"><span style="color:#000000;">is a set of different data types that describe one object for instance the first <span style="text-decoration:underline;"><span style="color:#808080;">row</span></span><span style="color:#000000;"> in the previous table represent data about the employee&#8217;s last name is King.</span></span></span></span></span></span></span></span></p>
<p style="padding-left:120px;"><span style="color:#888888;"><span style="color:#000000;"><span style="color:#808080;"><span style="color:#000000;"><span style="color:#ff0000;"><span style="color:#808080;"><span style="color:#000000;"><span style="color:#000000;"><strong><span style="color:#808080;">Column</span></strong> represent one kind of the data for many objects in the table the 4th column in the table represent the department ID for all employees.</span></span></span></span></span></span></span></span></p>
<p style="padding-left:120px;"><span style="color:#888888;"><span style="color:#000000;"><span style="color:#808080;"><span style="color:#000000;"><span style="color:#ff0000;"><span style="color:#808080;"><span style="color:#000000;"><span style="color:#000000;"><strong><span style="color:#808080;">Field</span></strong> can be found at the intersection of the a row and column. there can be only one value in the field for instance the field between the second row and third column in the previous table represent the Job ID for the employee Kochhar.<br />
</span></span></span></span></span></span></span></span></p>
<p style="text-align:center;"><span style="color:#888888;"><span style="color:#000000;"><span style="color:#808080;"><span style="color:#000000;"><span style="color:#ff0000;"><span style="color:#c0c0c0;">I hope that I have to Benefit you</span><span style="text-decoration:underline;"><span style="color:#808080;"><span style="color:#808080;"><br />
</span></span></span></span></span></span></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://whpp.me/blog/?feed=rss2&amp;p=80</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>IQ 2</title>
		<link>http://whpp.me/blog/?p=74</link>
		<comments>http://whpp.me/blog/?p=74#comments</comments>
		<pubDate>Thu, 29 Apr 2010 07:52:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IQ]]></category>
		<category><![CDATA[Intelligent]]></category>
		<category><![CDATA[Questions]]></category>
		<category><![CDATA[ذكاء]]></category>

		<guid isPermaLink="false">http://whitepaperandpencil.wordpress.com/?p=74</guid>
		<description><![CDATA[IQ 2
1. 0, 1, 2, 4, 6, 9, 12, 16, ?
 What number should replace the question mark?
2. Which number is the odd one out?
9678 4572 5261 5133 3527 6895 7768
3.

???????????????
]]></description>
			<content:encoded><![CDATA[<h1 style="text-align:center;"><span style="color:#993300;">IQ 2</span></h1>
<p><span style="color:#000080;">1.</span> 0, 1, 2, 4, 6, 9, 12, 16, ?<br />
<span style="color:#ff0000;"> <span style="color:#000000;">What number should replace the question mark?</span></span></p>
<p><span style="color:#000080;">2.</span><span style="color:#000000;"> Which number is the odd one out?</span><br />
9678 4572 5261 5133 3527 6895 7768</p>
<p><span style="color:#000080;">3.</span></p>
<p><img class="alignnone" title="IQ2" src="http://farm4.static.flickr.com/3223/4562123419_9d3558a574_o.jpg" alt="" width="459" height="575" /></p>
<p style="text-align:center;"><span style="color:#ff0000;">???????????????</span></p>
]]></content:encoded>
			<wfw:commentRss>http://whpp.me/blog/?feed=rss2&amp;p=74</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>العمل والاتقان</title>
		<link>http://whpp.me/blog/?p=69</link>
		<comments>http://whpp.me/blog/?p=69#comments</comments>
		<pubDate>Thu, 29 Apr 2010 07:27:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[To My Life]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[Significance]]></category>
		<category><![CDATA[story]]></category>
		<category><![CDATA[حياة]]></category>
		<category><![CDATA[قصة]]></category>

		<guid isPermaLink="false">http://whitepaperandpencil.wordpress.com/?p=69</guid>
		<description><![CDATA[العمل والإتقان
كان هناك نجار تقدم به العمر وطلب من صاحب العمل أن يحيله على التقاعد ليقضي بقية عمره مع أولاده وزوجته. ولكن  صاحب العمل رفض طلب النجار ورَغبه بزيادة راتبه إلا أن النجار أصَر على طلب التقاعد
فقال له صاحب العمل إن لى عندك رجاءً أخيرأً وهو أن تبني منزلا وسيكون هذا آخر عمل لك وبعد [...]]]></description>
			<content:encoded><![CDATA[<h1 style="text-align:center;"><span style="color:#993300;">العمل والإتقان</span></h1>
<p style="text-align:right;">كان هناك نجار تقدم به العمر وطلب من صاحب العمل أن يحيله على التقاعد ليقضي بقية عمره مع أولاده وزوجته. ولكن  صاحب العمل رفض طلب النجار ورَغبه بزيادة راتبه إلا أن النجار أصَر على طلب التقاعد</p>
<p style="text-align:right;">فقال له صاحب العمل إن لى عندك رجاءً أخيرأً وهو أن تبني منزلا وسيكون هذا آخر عمل لك وبعد الإنتهاء منه سأوافق على طلبك بالتقاعد. وافق النجار على مضض</p>
<p style="text-align:right;"><img class="aligncenter" title="woody house" src="http://img.alibaba.com/photo/11706348/Wood_Houses.jpg" alt="" width="375" height="246" /></p>
<p style="text-align:right;">وبدأ النجار العمل ولعلمه أن هذا البيت سيكون الأخير فلم يحسن الصنعة واستخدم مواد رديئة  وأسرع في الإنجاز دون الجودة المطلوبة. وكانت الطريقة التي أدي بها العمل نهاية غير جيدة لعمر طويل من الإنجاز والتميز والإبداع</p>
<p style="text-align:right;">وعندما انتهى النجار العجوز من البناء سلم صاحب العمل مفاتيح المنزل الجديد وطلب السماح له بالرحيل إلا أن صاحب العمل استوقفه وقال له : إن هذا المنزل هديتي لك نظير سنين عملك معي فآمل أن تقبله مني</p>
<p style="text-align:right;">فصعق النجار من المفاجأة لأنه لو علم انه يبني منزل العمر لما تواني في الإخلاص في الأداء والإتقان في العمل</p>
<p style="text-align:right;"><span style="color:#003366;">و</span><span style="color:#003366;">قال رسول الله صلى الله عليه وسلم : إن الله تعالى يحب إذا عمل أحدكم عملاً أن يتقنه</span></p>
<p style="text-align:right;">فكل منا في حياته مثل هذا النجار يبني سمعته بعمله ويبني بيته بعمله فيجب عيلنا ألا نتوانى في الإخلاص وأن تقن عملنا في كل الأوقات ومهما كانت الظروف مع العلم أن العمل بإخلاص يريح العامل ويريح صاحب العمل من المشاكل التي قد تظهر فيه فيما بعد</p>
<p style="text-align:right;">العمل بإخلاص وبإتقان يقربنا من الله تعالى ويجلعنا ذو سمعة نظيفة ويريح بالنا من العمل الذي نقوم به</p>
]]></content:encoded>
			<wfw:commentRss>http://whpp.me/blog/?feed=rss2&amp;p=69</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Organizational Levels</title>
		<link>http://whpp.me/blog/?p=62</link>
		<comments>http://whpp.me/blog/?p=62#comments</comments>
		<pubDate>Wed, 28 Apr 2010 19:12:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Anlaysis]]></category>
		<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Levels]]></category>
		<category><![CDATA[organizational]]></category>
		<category><![CDATA[systemAnalysis]]></category>
		<category><![CDATA[Systems]]></category>

		<guid isPermaLink="false">http://whitepaperandpencil.wordpress.com/?p=62</guid>
		<description><![CDATA[Organizational Levels
Organizational Levels are described as in the following image:
the four organizational levels and their responsibilities , decision making styles and information systems requirements are described in the following image:
Operational personnel: Perform a company&#8217;s repetitive day-to-day functions following well defined procedures.

Lower Management: Supervises operational personnel and establishes the day-to-day plans,based on direction and longer range [...]]]></description>
			<content:encoded><![CDATA[<h1 style="text-align:center;"><span style="color:#993300;">Organizational Levels</span></h1>
<p>Organizational Levels are described as in the following image:</p>
<p><a href="http://whpp.me/blog/wp-content/uploads/2010/04/untitled-2.jpg"><img class="aligncenter size-medium wp-image-63" title="Untitled-2" src="http://whpp.me/blog/wp-content/uploads/2010/04/untitled-2.jpg?w=300" alt="" width="300" height="224" /></a>the four organizational levels and their responsibilities , decision making styles and information systems requirements are described in the following image:<a href="http://whpp.me/blog/wp-content/uploads/2010/04/untitled1.jpg"><img class="aligncenter size-full wp-image-65" title="Untitled" src="http://whpp.me/blog/wp-content/uploads/2010/04/untitled1.jpg" alt="" width="581" height="183" /></a></p>
<p><span style="color:#000080;">Operational personnel:</span> Perform a company&#8217;s repetitive day-to-day functions following well defined procedures.</p>
<p><span id="more-62"></span></p>
<p><span style="color:#000080;">Lower Management:</span> Supervises operational personnel and establishes the day-to-day plans,based on direction and longer range plans from higher levels of management.</p>
<p><span style="color:#000080;">Middle Management:</span> Focuses on the short range, tactical time frame, usually in the range of one month to one year.</p>
<p><span style="color:#000080;">Top Management:</span> is responsible for long range, strategic time frame measured in one or more years. establishes overall company policies and goals, determines when organizational restructuring must occur and sets new directions for the company in terms of producers services and acquisitions.</p>
]]></content:encoded>
			<wfw:commentRss>http://whpp.me/blog/?feed=rss2&amp;p=62</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Information System Types</title>
		<link>http://whpp.me/blog/?p=57</link>
		<comments>http://whpp.me/blog/?p=57#comments</comments>
		<pubDate>Wed, 28 Apr 2010 17:47:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Anlaysis]]></category>

		<guid isPermaLink="false">http://whitepaperandpencil.wordpress.com/?p=57</guid>
		<description><![CDATA[Information System Types
Types of information system that use computers divided into four types as follow:
1. Operational System: system designed to process data generated by day to day business transaction of company for example operational system are accounting, and billing. Note the operational system are called transaction processing systems.
2. Management Information Systems(MIS): refers to a computer [...]]]></description>
			<content:encoded><![CDATA[<h1 style="text-align:center;"><span style="color:#993300;">Information System Types</span></h1>
<p style="text-align:left;">Types of information system that use computers divided into four types as follow:</p>
<p style="text-align:left;">1. <span style="color:#000080;">Operational System</span>: system designed to process data generated by day to day business transaction of company for example <span style="color:#000080;">operational system</span> are accounting, and billing. Note the operational system are called transaction processing systems.</p>
<p style="text-align:left;">2.<span style="color:#000080;"> Management Information Systems</span>(MIS): refers to a computer based system that generates timely and accurate information for the top, middle and lower levels of management. for example to process  a sales order would record the sales, update the customer&#8217;s accounts receivable balance and make a deduction from the inventory but in <span style="color:#000080;">the management information system </span><span style="text-decoration:underline;">reports</span> would be produced that show slow or fast slowing items, customers with past due accounts receivable balances and inventory items that need recording. In the <span style="color:#000080;">management information system</span> the focus in on the information that management needs to do its job.</p>
<p style="text-align:left;">3.<span style="color:#000080;">Decision Support System</span> (DSS): is a system designed to help someone reach a decision by summarizing or comparing data from either or both internal and external sources. Internal sources include data from an organization&#8217;s file such as sales, manufacturing  or financial data.External sources could include information on interest rates, population trends or new housing. <span style="color:#000080;">Decision support system</span> often include query languages, statistical analysis capabilities, spreadsheets and graphics to help and evaluate the decision data.</p>
<p style="text-align:left;">4.<span style="color:#000080;"> Expert Systems</span> : combine the knowledge on a given subject of one or more human experts into a computerized system that simulates the human experts reasoning and decision making process.</p>
]]></content:encoded>
			<wfw:commentRss>http://whpp.me/blog/?feed=rss2&amp;p=57</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

