<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3" -->
<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/"
	>

<channel>
	<title>dshivhare On Fast Track</title>
	<link>http://www.dshivhare.in/blog</link>
	<description>Practice &#38; Preach Innovation</description>
	<pubDate>Tue, 29 Jul 2008 20:09:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3</generator>
	<language>en</language>
			<item>
		<title>read .xml in html page</title>
		<link>http://www.dshivhare.in/blog/?p=13</link>
		<comments>http://www.dshivhare.in/blog/?p=13#comments</comments>
		<pubDate>Tue, 29 Jul 2008 20:09:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[web]]></category>

		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.dshivhare.in/blog/?p=13</guid>
		<description><![CDATA[&#60;html&#62;
&#60;head&#62;
&#60;script type=&#8221;text/javascript&#8221;&#62;
function ajaxLoader(url)
{
if (document.getElementById)
{
var x = (window.ActiveXObject) ? new ActiveXObject(&#8221;Microsoft.XMLHTTP&#8221;) : new XMLHttpRequest();
x.open(&#8221;GET&#8221;, url, false);
x.send(null);
document.getElementById(&#8217;xml_result&#8217;).innerHTML  = x.responseText;
}
}
&#60;/script&#62;
&#60;/head&#62;
&#60;body onload=&#8221;ajaxLoader(&#8217;YOUR_XML FILE_PATH)&#8221;&#62;
&#60;div id=&#8221;xml_result&#8221;&#62;&#60;/div&#62;
&#60;/body&#62;
&#60;/html&#62;
]]></description>
			<content:encoded><![CDATA[<p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
function ajaxLoader(url)<br />
{<br />
if (document.getElementById)<br />
{<br />
var x = (window.ActiveXObject) ? new ActiveXObject(&#8221;Microsoft.XMLHTTP&#8221;) : new XMLHttpRequest();<br />
x.open(&#8221;GET&#8221;, url, false);<br />
x.send(null);</p>
<p>document.getElementById(&#8217;xml_result&#8217;).innerHTML  = x.responseText;<br />
}<br />
}<br />
&lt;/script&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body onload=&#8221;ajaxLoader(&#8217;YOUR_XML FILE_PATH)&#8221;&gt;<br />
&lt;div id=&#8221;xml_result&#8221;&gt;&lt;/div&gt;<br />
&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dshivhare.in/blog/?feed=rss2&amp;p=13</wfw:commentRss>
		</item>
		<item>
		<title>3-Tier Application Vs 2-Tier Application</title>
		<link>http://www.dshivhare.in/blog/?p=11</link>
		<comments>http://www.dshivhare.in/blog/?p=11#comments</comments>
		<pubDate>Sat, 03 Nov 2007 12:37:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.dshivhare.in/blog/?p=11</guid>
		<description><![CDATA[2-Tier Application :- 
Windows Application Architecture(WAA) is also known as 2-Tier Architecture.
It is the combination of Windows Application plus Network Programming.
It comes in 1992 and is called Client Server Technology. Server tier contains database whether it is RDBMS or DBMS and the client tier contains executable forms(.exe). Client tier access database which is stored at [...]]]></description>
			<content:encoded><![CDATA[<p><strong>2-Tier Application :- </strong></p>
<p>Windows Application Architecture(WAA) is also known as <strong>2-Tier Architecture</strong>.</p>
<p>It is the combination of Windows Application plus Network Programming.</p>
<p>It comes in 1992 and is called Client Server Technology. Server tier contains database whether it is RDBMS or DBMS and the client tier contains executable forms(.exe). Client tier access database which is stored at the server side and display on the client side. So, the disadvantage are</p>
<ul>
<li>Both the tier must have same operating system.</li>
<li>Every client have executable forms that excess database from server tier</li>
<li>Dedicated LAN protocol are used</li>
<li>2-Tier application can be extend to 3-Tier application</li>
</ul>
<p><strong>3-Tier Application :- </strong></p>
<p>These type of<strong> </strong>architecture used in Internet application or Intranet application.</p>
<p>This type of<strong> </strong>architecture can be extended up-to n-Tier.</p>
<p>Client tier is also known as thin tier browser and the client  tier only have the browser.</p>
<p>This architecture allow us to connect different type of devices having any type of operating system  such as Desktop PC  can access the database.</p>
<ul>
<li>There is no need to having same operating system for networking.</li>
<li>Mobile browser is also known as Light browser.</li>
<li>GPRS: General Purpose Radio Services.</li>
</ul>
<p>One thing is common all the devices having at least browser. So, there is no need to put .exe files on the client side like 2-Tier.</p>
<p>It supports different type of protocols with different types of system. So, there is no need to having only LAN type protocol like 2-Tier. It may be HTTP or any other protocol like IEEE 802.11</p>
<p>Middle tier and database tier both are server tier &amp; client may have different machine, operating system and protocol</p>
<p>The thing extra here is webserver. It is an extranet that actually receives the request from client and pass to middle tier and response come back  to the client machine again. It treats as firewall.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dshivhare.in/blog/?feed=rss2&amp;p=11</wfw:commentRss>
		</item>
		<item>
		<title>What is scripting language?</title>
		<link>http://www.dshivhare.in/blog/?p=10</link>
		<comments>http://www.dshivhare.in/blog/?p=10#comments</comments>
		<pubDate>Sat, 03 Nov 2007 09:08:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[scripting]]></category>

		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.dshivhare.in/blog/?p=10</guid>
		<description><![CDATA[Scripting language are those which are subversion of the main languages such as VB script, Java script.
These language need to web browser to run, they are not stand alone application so they run by using any other application.
Scripting language can be classified into two types:-

Client side scripting:- Client side scripting means it will be execute [...]]]></description>
			<content:encoded><![CDATA[<p>Scripting language are those which are subversion of the main languages such as <strong>VB script, Java script</strong>.</p>
<p>These language need to web browser to run, they are not stand alone application so they run by using any other application.</p>
<p>Scripting language can be classified into <strong>two</strong> types:-</p>
<ol>
<li><strong>Client side scripting</strong>:- Client side scripting means it will be execute client side machine itself. The example of client side is HTML(HTML is used to display the content in web browser where as XML used to store data ).</li>
<li><strong>Server side scripting</strong>:- Server side scripting means it will be execute on server then it will send response back to the client machine.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dshivhare.in/blog/?feed=rss2&amp;p=10</wfw:commentRss>
		</item>
		<item>
		<title>Identifier in C</title>
		<link>http://www.dshivhare.in/blog/?p=8</link>
		<comments>http://www.dshivhare.in/blog/?p=8#comments</comments>
		<pubDate>Fri, 02 Nov 2007 14:37:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[identifier]]></category>

		<guid isPermaLink="false">http://www.dshivhare.in/blog/?p=8</guid>
		<description><![CDATA[These are the program elements such as variable name, function name, enumerator name,  structure name, union name, etc..
Naming convention of Identifier:-

It always begins with any alphabet or underscore.
It is any combination of alphabet, digit &#38; underscore.
Variable length is depend on the compiler.
No special symbol &#38; no space are allowed except underscore.

]]></description>
			<content:encoded><![CDATA[<p>These are the program elements such as variable name, function name, enumerator name,  structure name, union name, etc..</p>
<p>Naming convention of Identifier:-</p>
<ol>
<li>It always begins with any alphabet or underscore.</li>
<li>It is any combination of alphabet, digit &amp; underscore.</li>
<li>Variable length is depend on the compiler.</li>
<li>No special symbol &amp; no space are allowed except underscore.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dshivhare.in/blog/?feed=rss2&amp;p=8</wfw:commentRss>
		</item>
		<item>
		<title>Keyword in C</title>
		<link>http://www.dshivhare.in/blog/?p=6</link>
		<comments>http://www.dshivhare.in/blog/?p=6#comments</comments>
		<pubDate>Thu, 01 Nov 2007 10:26:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<guid isPermaLink="false">http://www.dshivhare.in/blog/?p=6</guid>
		<description><![CDATA[These all are reversed word whose medium are predefined or precompiled means it has the special meaning &#38; use to form a skeleton of the program.
The programmer can&#8217;t inter-fear in these words in the same way as you, in, an.
Keyword always written in the small letter.
There are 34 keywords in C which are as follows:-

void
char
int
short
long
float
double
signed
unsigned
for
while
do
if
else
switch
case
default
auto
static
extern
register
enum
struct
union
sizeof
const
volatile
break
continue
goto
return
near
far
huge

From [...]]]></description>
			<content:encoded><![CDATA[<p>These all are reversed word whose medium are predefined or precompiled means it has the special meaning &amp; use to form a skeleton of the program.</p>
<p>The programmer can&#8217;t inter-fear in these words in the same way as you, in, an.</p>
<p>Keyword always written in the small letter.</p>
<p>There are<strong> 34</strong> keywords in C which are as follows:-</p>
<ol>
<li><strong>void</strong></li>
<li><strong>char</strong></li>
<li><strong>int</strong></li>
<li><strong>short</strong></li>
<li><strong>long</strong></li>
<li><strong>float</strong></li>
<li><strong>double</strong></li>
<li><strong>signed</strong></li>
<li><strong>unsigned</strong></li>
<li><strong>for</strong></li>
<li><strong>while</strong></li>
<li><strong>do</strong></li>
<li><strong>if</strong></li>
<li><strong>else</strong></li>
<li><strong>switch</strong></li>
<li><strong>case</strong></li>
<li><strong>default</strong></li>
<li><strong>auto</strong></li>
<li><strong>static</strong></li>
<li><strong>extern</strong></li>
<li><strong>register</strong></li>
<li><strong>enum</strong></li>
<li><strong>struct</strong></li>
<li><strong>union</strong></li>
<li><strong>sizeof</strong></li>
<li><strong>const</strong></li>
<li><strong>volatile</strong></li>
<li><strong>break</strong></li>
<li><strong>continue</strong></li>
<li><strong>goto</strong></li>
<li><strong>return</strong></li>
<li><strong>near</strong></li>
<li><strong>far</strong></li>
<li><strong>huge</strong></li>
</ol>
<p>From <strong>1 to 9</strong> are used as a <strong>string data type</strong>(primary data type)</p>
<p>From <strong>10 to 12</strong> are used for <strong>loop control structure</strong></p>
<p>From <strong>13 to 14</strong> are used for <strong>selection control statement</strong></p>
<p>From <strong>15 to 17</strong> are used for <strong>case control structure</strong></p>
<p>From <strong>18 to 21</strong> are used for <strong>storage class</strong></p>
<p>From <strong>22 to 24</strong> are <strong>user defined data type</strong></p>
<p>From <strong>25 to 32</strong> are <strong>miscellaneous</strong></p>
<p>From <strong>33 to 34</strong> are <strong>pointers</strong> (additional keyword)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dshivhare.in/blog/?feed=rss2&amp;p=6</wfw:commentRss>
		</item>
		<item>
		<title>TOKENS in C</title>
		<link>http://www.dshivhare.in/blog/?p=5</link>
		<comments>http://www.dshivhare.in/blog/?p=5#comments</comments>
		<pubDate>Thu, 01 Nov 2007 10:07:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[token]]></category>

		<guid isPermaLink="false">http://www.dshivhare.in/blog/?p=5</guid>
		<description><![CDATA[Small indivisual units of a program is called Tokens.
There are 6 types of Tokens in C which are as follows:-

Keyword
Identifier
Constants/Literals
Variable
Operator
Punctuator

]]></description>
			<content:encoded><![CDATA[<p>Small indivisual units of a program is called Tokens.</p>
<p>There are 6 types of Tokens in C which are as follows:-</p>
<ol>
<li>Keyword</li>
<li>Identifier</li>
<li>Constants/Literals</li>
<li>Variable</li>
<li>Operator</li>
<li>Punctuator</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dshivhare.in/blog/?feed=rss2&amp;p=5</wfw:commentRss>
		</item>
		<item>
		<title>History of C language</title>
		<link>http://www.dshivhare.in/blog/?p=4</link>
		<comments>http://www.dshivhare.in/blog/?p=4#comments</comments>
		<pubDate>Thu, 01 Nov 2007 09:53:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[history language]]></category>

		<guid isPermaLink="false">http://www.dshivhare.in/blog/?p=4</guid>
		<description><![CDATA[C language is

developed by:- Dennis M. Ritche
developed at:- AT &#38; T(American Telegraph &#38; Telecommunication) Bell Lab, Marci Hill, New Jersey, USA
developed on:- UNIX DEC PDP 11 Operating System
developed in:- late 1972
also called Structured Programming Language.

Why C language name is C?
In 1970 B language is developed by Ken Thomson. For making the continuation(B, C, &#8230;) its [...]]]></description>
			<content:encoded><![CDATA[<p><strong>C</strong> language is</p>
<ul>
<li>developed by:- <a href="http://www.cs.bell-labs.com/who/dmr/">Dennis M. Ritche</a></li>
<li>developed at:- AT &amp; T(American Telegraph &amp; Telecommunication) Bell Lab, Marci Hill, New Jersey, USA</li>
<li>developed on:- UNIX DEC PDP 11 Operating System</li>
<li>developed in:- late 1972</li>
<li>also called Structured Programming Language.</li>
</ul>
<p>Why C language name is C?</p>
<p>In 1970 B language is developed by <strong>Ken Thomson</strong>. For making the continuation(B, C, &#8230;) its name is C (nothing more).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dshivhare.in/blog/?feed=rss2&amp;p=4</wfw:commentRss>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.dshivhare.in/blog/?p=1</link>
		<comments>http://www.dshivhare.in/blog/?p=1#comments</comments>
		<pubDate>Sun, 28 Oct 2007 11:07:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dshivhare.in/blog/?p=1</guid>
		<description><![CDATA[Hi All,
This is my first post&#8230;&#8230;.. I am newbee in blogging but I really like blogging at least I can preach to others what I have.
Practice &#38; Preach Innovation.
Thanks,
dshivhare
]]></description>
			<content:encoded><![CDATA[<p>Hi All,</p>
<p>This is my first post&#8230;&#8230;.. I am newbee in blogging but I really like blogging at least I can preach to others what I have.</p>
<p>Practice &amp; Preach Innovation.</p>
<p>Thanks,<br />
dshivhare</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dshivhare.in/blog/?feed=rss2&amp;p=1</wfw:commentRss>
		</item>
	</channel>
</rss>
