Programming Vocabulary - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T23:10:24Zhttp://stackoverflow.com/feeds/question/560166http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/560166/programming-vocabulary5Programming VocabularyUnkwntech2009-02-18T07:36:48Z2009-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#5601739Answer by tharkun for Programming Vocabularytharkun2009-02-18T07:41:32Z2009-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 & B. Ramsey</p>
http://stackoverflow.com/questions/560166/programming-vocabulary/560181#5601812Answer by CMS for Programming VocabularyCMS2009-02-18T07:45:26Z2009-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#5601822Answer by Franci Penov for Programming VocabularyFranci Penov2009-02-18T07:47:15Z2009-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#5601835Answer by paprika for Programming Vocabularypaprika2009-02-18T07:48:39Z2009-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#5601867Answer by tehvan for Programming Vocabularytehvan2009-02-18T07:49:55Z2009-02-18T07:49:55Z<p>Don't forget scope</p>
http://stackoverflow.com/questions/560166/programming-vocabulary/560188#5601882Answer by ChrisW for Programming VocabularyChrisW2009-02-18T07:51:10Z2009-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#5601941Answer by jeremy Ruten for Programming Vocabularyjeremy Ruten2009-02-18T07:55:36Z2009-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#5602051Answer by Sujoy for Programming VocabularySujoy2009-02-18T08:00:42Z2009-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#5602281Answer by Toby Allen for Programming VocabularyToby Allen2009-02-18T08:17:19Z2009-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#5602511Answer by David for Programming VocabularyDavid2009-02-18T08:29:03Z2009-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#5602740Answer by Ian Hopkinson for Programming VocabularyIan Hopkinson2009-02-18T08:40:06Z2009-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#5602960Answer by Peter Miehle for Programming VocabularyPeter Miehle2009-02-18T08:51:06Z2009-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#5603060Answer by mouviciel for Programming Vocabularymouviciel2009-02-18T08:56:48Z2009-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#5611010Answer by Comptrol for Programming VocabularyComptrol2009-02-18T13:48:37Z2009-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 & 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>