Try to find someone you know that knows how to program. Online tutorials are nice, but they can be frustrating at times if you can&#39;t get answers to specific questions.<br><br>Keep at it. Programming can be the most frustrating thing in the world, but it can also be the most satisfying thing. Don&#39;t get down if you don&#39;t get a concept--programming can be a very abstract thing to learn, and if you can&#39;t figure out something, take a break and come back later.<br>
<br>Go beyond boring textbook examples. Try to find problems that really interest you. Try to solve them in small steps. Don&#39;t be afraid to read help files to learn what is possible in solving your problem.<br><br>When writing a program, start small and then add options and features gradually.<br>
<br>When you learn something new, it is very helpful to try it out, and then change some things to make sure you have the concept down.<br><br>When choosing a programming language, it is important to consider what you&#39;ll be learning it for. For example, if you want to go into website development, try out Python (Django is very fun!), PHP, Java or Javascript (note that these are not the same though they have similar names). If you want to become a professional programmer, either C#, C++ or Java are a must.<br>
<br>If you take a break from programming, be sure to practice every now and then. After all, it is a programming language, and as it is with any language, you will forget it if you don&#39;t use it.<br><br>Join the Association for Computing Machinery <a href="http://www.acm.org/">http://www.acm.org/</a> and make serious use of their Professional Development Center. It has hundreds of free, step-by-step tutorials, though you must be a member to use them. Student and discounted rates are available.<br>
<br>For most people, programming something that interests them or that they can use will be much more interesting. Using a search engine, you can find a tutorial or a source code for almost any project in any language.<br>
<br>Don&#39;t fear open sources. Open sources were put in place for a reason, to learn. Why re-invent the wheel when you can make it better? Just make sure you understand what you&#39;re programming.<br><br>References are there to help you. Don&#39;t be ashamed if you don&#39;t remember everything by heart, that comes with time. The important thing is knowing the various possibilities of functions within a language and knowing where to go to find out exactly how to use them.<br>
<br>I do follow same and assure if any one follow will never be failure.<br><br><br><br><div class="gmail_quote">On Fri, Jan 23, 2009 at 12:59 PM, Darkseid <span dir="ltr">&lt;<a href="mailto:lorddaemon@gmail.com">lorddaemon@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Context is everything. When implementing Google search, efficiency of algorithms matter. When modeling a business process, effective encapsulation matters. I&#39;ve never understood the obsession with algorithms to the exclusion of all else. They certainly matter, but to make them the sole yardstick is a very bad idea.<br>

<br>
To put it another way, I don&#39;t particularly care what language someone programs in so long as he has understood and absorbed basic CS concepts. Stuff that is covered from different angles in &#39;The Pragmatic Programmer&#39;, &#39;Code Complete&#39;, and &#39;The Structure and Interpretation of Computer Programs&#39; just to name a few.<br>

<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
have found those how have programmed &nbsp;in C/C++ are generally better(in problem solving) than who program in other languages.<br>
</blockquote>
I would disagree quite strongly based on my experience. I don&#39;t thing C/C++ programmers are any worse, but they certainly aren&#39;t any better on average. What I have observed in my particular area of work (which has an emphasis on OO) is that C/C++ programmers are least likely to respect good OO practices, followed closely by Java/C# folks.<br>

<br>
My 2p,<br>
Sidu.<br>
<a href="http://blog.sidu.in" target="_blank">http://blog.sidu.in</a><br>
<br>
prasanna diwadkar wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
&nbsp;Hi,<br>
I think Chetan is right. Algorithms play important role.I am not biased towards specific language but I have found those how have programmed &nbsp;in C/C++ are generally better(in problem solving) than who program in other languages.This is not to say Python/Java etc &nbsp;are bad but C/C++ forces &nbsp;you to learn(without copy paste!) unlike java/Python where JDK provides all methods in API.Ofcourse this has happened because software apps have grown big in size and complexities than in 80s/90s where C/C++ were predominant.<br>

Thanks<br>
PD<br>
&nbsp;&nbsp;--- On *Sat, 1/17/09, Chetan Nichkawde /&lt;<a href="mailto:chetan.nichkawde@gmail.com" target="_blank">chetan.nichkawde@gmail.com</a>&gt;/* wrote:<br>
<br>
 &nbsp; &nbsp;From: Chetan Nichkawde &lt;<a href="mailto:chetan.nichkawde@gmail.com" target="_blank">chetan.nichkawde@gmail.com</a>&gt;<br>
 &nbsp; &nbsp;Subject: [BangPypers] how to learn programming<br>
 &nbsp; &nbsp;To: <a href="mailto:bangpypers@python.org" target="_blank">bangpypers@python.org</a><br>
 &nbsp; &nbsp;Date: Saturday, January 17, 2009, 3:34 AM<br>
<br>
 &nbsp; &nbsp;Hi,<br>
<br>
 &nbsp; &nbsp; &nbsp;The only way to learn programming is to program. I learnt C++<br>
 &nbsp; &nbsp;when I was in high school and I remember getting intimidated by<br>
 &nbsp; &nbsp;some of the problems posed. I thought I cannot do it. But when I<br>
 &nbsp; &nbsp;gave it a try it happened and a whole new world of programming<br>
 &nbsp; &nbsp;opened to me. One of the problem posed by my teacher was to place<br>
 &nbsp; &nbsp;8 queens on a chess board so that no queen is able to cancel any<br>
 &nbsp; &nbsp;other queen. During those days (1997) there was no internet and I<br>
 &nbsp; &nbsp;hail from small town called Dhanbad. I went after the problem and<br>
 &nbsp; &nbsp;cracked it. For many years, I thought I was the only person who<br>
 &nbsp; &nbsp;can solve the problem in that way. When I came to software<br>
 &nbsp; &nbsp;industry I came to know that kind of algorithm is known as<br>
 &nbsp; &nbsp;backtracking algorithm. Was I a computer wiz or something?<br>
 &nbsp; &nbsp;Imagining backtracking algorithm in class XI in high school. I<br>
 &nbsp; &nbsp;don&#39;t think so. You just have to apply yourself and be creative.<br>
 &nbsp; &nbsp;Python is great language to start learning programming although<br>
 &nbsp; &nbsp;certain concepts like pointers is also a must know for a programmer.<br>
<br>
 &nbsp; &nbsp;Chetan<br>
<br>
 &nbsp; &nbsp;--  &nbsp; &nbsp;Senior Analyst<br>
 &nbsp; &nbsp;Outdu MediaTech Pvt Ltd<br>
 &nbsp; &nbsp;Mobile: 9900262140<br>
 &nbsp; &nbsp;linkedin: <a href="http://www.linkedin.com/pub/dir/chetan/nichkawde" target="_blank">http://www.linkedin.com/pub/dir/chetan/nichkawde</a><br>
<br>
 &nbsp; &nbsp;_______________________________________________<br>
 &nbsp; &nbsp;BangPypers mailing list<br>
 &nbsp; &nbsp;<a href="mailto:BangPypers@python.org" target="_blank">BangPypers@python.org</a><br>
 &nbsp; &nbsp;<a href="http://mail.python.org/mailman/listinfo/bangpypers" target="_blank">http://mail.python.org/mailman/listinfo/bangpypers</a><br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
<br>
------------------------------------------------------------------------<br>
<br>
_______________________________________________<br>
BangPypers mailing list<br>
<a href="mailto:BangPypers@python.org" target="_blank">BangPypers@python.org</a><br>
<a href="http://mail.python.org/mailman/listinfo/bangpypers" target="_blank">http://mail.python.org/mailman/listinfo/bangpypers</a><br>
 &nbsp;<br>
</blockquote>
_______________________________________________<br>
BangPypers mailing list<br>
<a href="mailto:BangPypers@python.org" target="_blank">BangPypers@python.org</a><br>
<a href="http://mail.python.org/mailman/listinfo/bangpypers" target="_blank">http://mail.python.org/mailman/listinfo/bangpypers</a><br>
</blockquote></div><br><br clear="all"><br>-- <br>Praveen Kumar<br>Software Engineer<br>Mahiti Infotech Pvt. Ltd.<br># 33-34, Hennur Cross<br>Hennur Main Road<br>Bangalore, India - 560043<br>Mobile: &nbsp;+91 9343297314<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; +91 9739854134<br>
<a href="http://www.mahiti.org">http://www.mahiti.org</a><br>