<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Code For Future</title>
	<atom:link href="http://jayvardhanpatil.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jayvardhanpatil.wordpress.com</link>
	<description>Coding for future has to do with building completely reusable components!</description>
	<lastBuildDate>Sun, 22 May 2011 12:04:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jayvardhanpatil.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Code For Future</title>
		<link>http://jayvardhanpatil.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jayvardhanpatil.wordpress.com/osd.xml" title="Code For Future" />
	<atom:link rel='hub' href='http://jayvardhanpatil.wordpress.com/?pushpress=hub'/>
		<item>
		<title>JavaScript for Programmers &#8211; week 2 &#8211; activity 1</title>
		<link>http://jayvardhanpatil.wordpress.com/2011/05/22/javascript-for-programmers-week-2-activity-1/</link>
		<comments>http://jayvardhanpatil.wordpress.com/2011/05/22/javascript-for-programmers-week-2-activity-1/#comments</comments>
		<pubDate>Sun, 22 May 2011 12:04:35 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MS.NET]]></category>

		<guid isPermaLink="false">http://jayvardhanpatil.wordpress.com/?p=9</guid>
		<description><![CDATA[Q. When parsing a String into a number using the parseInt() method, we are advised to always provide the radix. Why is it so strongly recommended? A. Because parseInt() stops at first non-digit characters, and if radix is not provided &#8230; <a href="http://jayvardhanpatil.wordpress.com/2011/05/22/javascript-for-programmers-week-2-activity-1/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jayvardhanpatil.wordpress.com&amp;blog=3574473&amp;post=9&amp;subd=jayvardhanpatil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Q. When parsing a String into a number using the parseInt() method, we are advised to always provide the radix. Why is it so strongly recommended?</strong><br />
<strong>A.</strong> Because parseInt() stops at first non-digit characters, and if radix is not provided then it will interpret parseInt(&#8220;01) as 0.</p>
<p><strong>Q. What is a type, and why do you think types are useful in writing programs?</strong><br />
<strong> A.</strong> Type is the kind of value the variable will be able to hold. Types are important in any programming languages because they define the way the valiable will behave and also indicates the programmer about the kind of value it may contain. This is also useful to determine the kind of operations that can be performed on a variable or between variables. For e.g. the multiplication operation cannot take place between two strings.</p>
<p><strong>Q. Why do we lose precision when performing operations with decimal numbers in Javascript? Can you think of a few implications of why this would be a problem?</strong><br />
<strong> A.</strong> As JavaScript has only one number type in javascript that doesn&#8217;t actually have &#8216;double&#8217;. This will be a problem calculating complex calculations such as share market or chemical formula calculations.</p>
<p><strong>Q. Do you understand why the following operation produces the given result 115 * 4 &#8211; 4 + 88 / 2 = 500</strong><br />
<strong> A.</strong> The multiplication or devision operations has higher priorities as compared to the addition and division operations. So the flow goes as below<br />
115 * 4 &#8211; 4 + 88 / 2<br />
= 460 &#8211; 4 + 44<br />
= 456 + 44<br />
= 500</p>
<p><strong>Q. Will the following statement evaluate to true or false</strong><br />
<strong> ((&#8220;red&#8221; != &#8220;car&#8221;) || (3 &gt;= 9)) &amp;&amp; !(((10 * 2) == 100) &amp;&amp; true)</strong><br />
<strong> A.</strong> Evaluate as below<br />
((&#8220;red&#8221; != &#8220;car&#8221;) || (3 &gt;= 9)) &amp;&amp; !(((10 * 2) == 100) &amp;&amp; true)<br />
= ((true) || (false)) &amp;&amp; ! ((20)==100) &amp;&amp; true)<br />
= true &amp;&amp; !((false) &amp;&amp; true)<br />
= true &amp;&amp; !(false)<br />
= true &amp;&amp; true<br />
= true</p>
<p><strong>Q. What does typeof 4.5 do, and why does typeof (typeof 4.5) return &#8220;string&#8221; ?</strong><br />
<strong> A.1.</strong> number<br />
<strong>A.2.</strong> Because typeof(number) = string</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jayvardhanpatil.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jayvardhanpatil.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jayvardhanpatil.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jayvardhanpatil.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jayvardhanpatil.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jayvardhanpatil.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jayvardhanpatil.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jayvardhanpatil.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jayvardhanpatil.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jayvardhanpatil.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jayvardhanpatil.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jayvardhanpatil.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jayvardhanpatil.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jayvardhanpatil.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jayvardhanpatil.wordpress.com&amp;blog=3574473&amp;post=9&amp;subd=jayvardhanpatil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jayvardhanpatil.wordpress.com/2011/05/22/javascript-for-programmers-week-2-activity-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">jayvardhanpatil</media:title>
		</media:content>
	</item>
		<item>
		<title>Showing Hello World Alert using JavaScript</title>
		<link>http://jayvardhanpatil.wordpress.com/2011/05/13/showing-hello-world-alert-using-javascript/</link>
		<comments>http://jayvardhanpatil.wordpress.com/2011/05/13/showing-hello-world-alert-using-javascript/#comments</comments>
		<pubDate>Fri, 13 May 2011 08:41:14 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MS.NET]]></category>

		<guid isPermaLink="false">http://jayvardhanpatil.wordpress.com/?p=5</guid>
		<description><![CDATA[Creating an alert can be easy. You can use the function alert(&#8220;your message here&#8221;) to show the message in alert.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jayvardhanpatil.wordpress.com&amp;blog=3574473&amp;post=5&amp;subd=jayvardhanpatil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Creating an alert can be easy. You can use the function alert(&#8220;your message here&#8221;) to show the message in alert.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jayvardhanpatil.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jayvardhanpatil.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jayvardhanpatil.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jayvardhanpatil.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jayvardhanpatil.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jayvardhanpatil.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jayvardhanpatil.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jayvardhanpatil.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jayvardhanpatil.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jayvardhanpatil.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jayvardhanpatil.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jayvardhanpatil.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jayvardhanpatil.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jayvardhanpatil.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jayvardhanpatil.wordpress.com&amp;blog=3574473&amp;post=5&amp;subd=jayvardhanpatil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jayvardhanpatil.wordpress.com/2011/05/13/showing-hello-world-alert-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">jayvardhanpatil</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET Dynamic controls: Twice click problem</title>
		<link>http://jayvardhanpatil.wordpress.com/2008/04/25/asp_net_dynamic_control/</link>
		<comments>http://jayvardhanpatil.wordpress.com/2008/04/25/asp_net_dynamic_control/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 04:44:04 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MS.NET]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This blog has been moved to a new URL Please visit CODE FOR FUTURE ( http://codeforfuture.com) For the above solution click below. (I regret the inconvinence). ASP.NET Dynamic controls: Twice click problem<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jayvardhanpatil.wordpress.com&amp;blog=3574473&amp;post=1&amp;subd=jayvardhanpatil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This blog has been moved to a new URL</p>
<p>Please visit <a href="http://codeforfuture.com" target="_self"><a href="http://codeforfuture.com" target="_self">CODE FOR FUTURE</a> ( http://codeforfuture.com</a>)</p>
<p>For the above solution click below. (I regret the inconvinence).</p>
<p><a href="http://codeforfuture.com/2008/06/25/aspnet-dynamic-controls-twice-click-problem/" target="_self">ASP.NET Dynamic controls: Twice click problem</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jayvardhanpatil.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jayvardhanpatil.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jayvardhanpatil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jayvardhanpatil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jayvardhanpatil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jayvardhanpatil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jayvardhanpatil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jayvardhanpatil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jayvardhanpatil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jayvardhanpatil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jayvardhanpatil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jayvardhanpatil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jayvardhanpatil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jayvardhanpatil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jayvardhanpatil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jayvardhanpatil.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jayvardhanpatil.wordpress.com&amp;blog=3574473&amp;post=1&amp;subd=jayvardhanpatil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jayvardhanpatil.wordpress.com/2008/04/25/asp_net_dynamic_control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">jayvardhanpatil</media:title>
		</media:content>
	</item>
	</channel>
</rss>
