Programming Vocabulary - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T23:10:24Z http://stackoverflow.com/feeds/question/560166 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/560166/programming-vocabulary 5 Programming Vocabulary Unkwntech 2009-02-18T07:36:48Z 2009-02-18T13:48:37Z <p>I am getting ready to teach someone without any background in programming a language (PHP) I want to make sure I don't forget any important vocabulary this is what I have so far:</p> <ol> <li>Function/Method</li> <li>Variable</li> <li>Class</li> <li>String</li> <li>Integer</li> <li>Boolean</li> <li>Float</li> <li>Static Typing (Not needed for PHP but should be understood.)</li> <li>Dynamic Typing</li> </ol> <p>Are there any others that you think are important for a someone new to programming to understand.</p> <p>Looking for words relevant to any language.</p> http://stackoverflow.com/questions/560166/programming-vocabulary/560173#560173 9 Answer by tharkun for Programming Vocabulary tharkun 2009-02-18T07:41:32Z 2009-02-18T09:43:47Z <ul> <li>Syntax</li> <li>Data Types <ul> <li>Numeric</li> <li>Strings</li> <li>Booleans</li> <li>Compound Data Types</li> <li>Converting between Data Types</li> </ul></li> <li>Variables and Scope</li> <li>Constants</li> <li>Operators <ul> <li>Arithmetic</li> <li>String concat</li> <li>Bitwise</li> <li>Assignment</li> <li>Referencing</li> <li>Comparison</li> <li>Logical</li> </ul></li> <li>Control Structures <ul> <li>Conditional (if, switch)</li> <li>Iterative (for, foreach, while)</li> </ul></li> <li>Error Management</li> <li>Functions (input, return values, scope)</li> <li>Arrays</li> <li>Strings and Patterns (concat, regex, printf, ...)</li> <li>Database</li> <li>OOP</li> </ul> <p>freely taken from the book 'ZEND PHP 5 Certification, Study Guide, Second Edition, D. Shafik &amp; B. Ramsey</p> http://stackoverflow.com/questions/560166/programming-vocabulary/560181#560181 2 Answer by CMS for Programming Vocabulary CMS 2009-02-18T07:45:26Z 2009-02-18T07:51:51Z <p><strong>About the language:</strong></p> <ul> <li><a href="http://www.php.net/manual/en/language.operators.php" rel="nofollow">Operators</a></li> <li><a href="http://www.php.net/manual/en/language.control-structures.php" rel="nofollow">Control Structures</a></li> <li><a href="http://www.php.net/manual/en/language.exceptions.php" rel="nofollow">Exceptions</a></li> <li><a href="http://www.php.net/manual/en/language.namespaces.php" rel="nofollow">Namespaces</a> :-)</li> </ul> <p><strong>For general Web Development:</strong></p> <ul> <li>HTML</li> <li>HTTP Sessions / Cookies</li> <li>HTTP Get/Post Requests</li> <li>JavaScript overview</li> </ul> <p><strong>Great if you teach from the beginning:</strong></p> <ul> <li>OOP</li> <li><strong>Source Control</strong> (your student will really thank you this on the short term!)</li> </ul> http://stackoverflow.com/questions/560166/programming-vocabulary/560182#560182 2 Answer by Franci Penov for Programming Vocabulary Franci Penov 2009-02-18T07:47:15Z 2009-02-18T07:47:15Z <p>Don't know much PHP, so not sure if these apply:</p> <ul> <li>Property</li> <li>Parameter</li> <li>Return value</li> <li>Value type/Reference type</li> </ul> http://stackoverflow.com/questions/560166/programming-vocabulary/560183#560183 5 Answer by paprika for Programming Vocabulary paprika 2009-02-18T07:48:39Z 2009-02-18T13:26:21Z <p>One of the most important things for beginners is probably [the distinction of]:</p> <p>value/reference</p> <p><b>EDIT:</b> By the way, if you want to try a visual approach: I found that a set of [different sized] plastic boxes from the kitchen and label stickers can greatly help explaining variables and pointers. :-)</p> http://stackoverflow.com/questions/560166/programming-vocabulary/560186#560186 7 Answer by tehvan for Programming Vocabulary tehvan 2009-02-18T07:49:55Z 2009-02-18T07:49:55Z <p>Don't forget scope</p> http://stackoverflow.com/questions/560166/programming-vocabulary/560188#560188 2 Answer by ChrisW for Programming Vocabulary ChrisW 2009-02-18T07:51:10Z 2009-02-18T07:51:10Z <ul> <li>User (and Client)</li> <li>Requirements</li> <li>Testing</li> <li>Debugging</li> <li>Deployment (and Support)</li> <li>Version control</li> <li>Concurrency</li> <li>Boolean</li> <li>Loops</li> <li>Architecture (incl. "tiers")</li> </ul> http://stackoverflow.com/questions/560166/programming-vocabulary/560194#560194 1 Answer by jeremy Ruten for Programming Vocabulary jeremy Ruten 2009-02-18T07:55:36Z 2009-02-18T07:55:36Z <ul> <li>Operators (unary, binary, and ternary)</li> <li>Operands</li> <li>Expressions</li> <li>Statements</li> <li>Blocks</li> </ul> http://stackoverflow.com/questions/560166/programming-vocabulary/560205#560205 1 Answer by Sujoy for Programming Vocabulary Sujoy 2009-02-18T08:00:42Z 2009-02-18T08:00:42Z <p>pretty much everything has been covered already, but dont forget</p> <pre><code>regular expressions recursion type casting </code></pre> http://stackoverflow.com/questions/560166/programming-vocabulary/560228#560228 1 Answer by Toby Allen for Programming Vocabulary Toby Allen 2009-02-18T08:17:19Z 2009-02-18T08:19:49Z <p>If you really are going to be teaching someone without any programming knowledge, there are (in my opinion) a few things on that list that should not be tackled until they have come to grips with the basics.</p> <p>I would see the basics as</p> <ul> <li>Variables</li> <li>String</li> <li>Integer</li> <li>Boolean </li> <li>Float</li> <li>Operators (= == !)</li> <li>Control Structures</li> <li>Loops</li> <li>Functions</li> </ul> <p>If they get that much then slowly move on to the other items above, otherwise the poor person wont even get off the ground.</p> http://stackoverflow.com/questions/560166/programming-vocabulary/560251#560251 1 Answer by David for Programming Vocabulary David 2009-02-18T08:29:03Z 2009-02-18T08:29:03Z <p>There's already a huge list of terms in this thread and it could easily become overwhelming for a new programmer... so don't put your student off by dumping a whole load of vocabulary on him/her. In fact, the vocabulary doesn't matter much compared to the concepts involved in programming - it's far more important to know what a concept <em>is</em> as opposed to what it's <em>called</em>. For instance, static vs. dynamic typing: who cares if you never say the words "dynamic typing", as long as you get the point across that PHP will figure out automatically whether a variable is holding text or a number or whatever.</p> <p>I would suggest only introducing terms as (or after) you explain their meanings, since that keeps the focus on the mechanics of programming, i.e. the important stuff. Also, when doing it that way you'll know exactly what vocabulary you have to introduce based on what concepts you're teaching. You could even sort out your vocabulary list in an appropriate order and use it as a course outline of sorts ;-) (could be a nice application of <a href="http://en.wikipedia.org/wiki/Topological_sort" rel="nofollow">topological sorting</a>, in fact)</p> http://stackoverflow.com/questions/560166/programming-vocabulary/560274#560274 0 Answer by Ian Hopkinson for Programming Vocabulary Ian Hopkinson 2009-02-18T08:40:06Z 2009-02-18T08:40:06Z <p>For when things go wrong:</p> <ul> <li>bug</li> <li>exception</li> <li>breakpoint</li> <li>error</li> <li>warning</li> </ul> http://stackoverflow.com/questions/560166/programming-vocabulary/560296#560296 0 Answer by Peter Miehle for Programming Vocabulary Peter Miehle 2009-02-18T08:51:06Z 2009-02-18T08:51:06Z <p>best practices</p> <p>coding conventions</p> <p>design patterns</p> <p>tdd (test driven development)</p> <p>algorithms and data structures</p> <p>syntax and semantics</p> http://stackoverflow.com/questions/560166/programming-vocabulary/560306#560306 0 Answer by mouviciel for Programming Vocabulary mouviciel 2009-02-18T08:56:48Z 2009-02-18T08:56:48Z <p>Vocabulary may change from language to language (e.g., C++ vs. Objective-C). Even concepts sometimes are moving targets.</p> <p>I remember having learned programming with the user's guide of a TI-57 calculator which represented control flow with a railway and program counter with a train.</p> <p>I remember some old computers of the time of Commodore-64 which implemented a small drawing language where the user entered instructions to a small turtle on the screen (go straight 10 steps, turn left 30 degrees, ...). The aim was to give people a starting point in computing.</p> <p>More than vocabulary and theory, these were very concrete approaches for learning programming.</p> http://stackoverflow.com/questions/560166/programming-vocabulary/561101#561101 0 Answer by Comptrol for Programming Vocabulary Comptrol 2009-02-18T13:48:37Z 2009-02-18T13:48:37Z <p><strong>assignment</strong> vs. <strong>initialization</strong> .</p> <p><strong>declaration</strong> vs. <strong>definition</strong> .</p> <pre><code>class FOO; //declaration class FOO { public: FOO(int k):var1(k) // var1 is initialized to k and var2 to default int { var2 = 0; // var2 is assigned. }// FOO() { var1=0; var2 =0; //both var1 and var2 are assigned. } FOO(const FOO &amp; k):var1(k),var2(0) //both var1 and var2 are initialized. {} private: int var1,var2; }; //definiton int main() { FOO foo1(1); // foo1 is direct initialized FOO foo2 = 2; // foo2 is copy initialized but not an **assignment**. foo1 = foo2; //assignment } </code></pre>