When introducing basic programming concepts to kids for the first time, what paradigm is best to start with? What research has been done in this field?
|
closed as off topic by Jeremy Banks, Kev♦ Mar 8 '12 at 23:01
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Tim Bell and Ian Witten, a couple of CS professors in New Zealand, have developed a course for teaching the fundamentals of Computer Science to elementary aged kids. It works! I taught my 6 year old daughter to convert between base 2 and base 10 numbers in an hour. You can find the information here. Looks like they have made their teaching resource material publicly available. Their thesis is:
I know this answer doesn't directly address your question about 'which paradigm', but it does address topics that are the "building blocks". |
||||
|
|
|
First they should be taught problem-solving skills, the next milestone would be to write algorithms to solve simple problems. Then they can start implementing those algorithms in SMALL-BASIC and eventually migrate to basic C.
And Yes Let them play games until they are curious one day to find out how they make it! |
|||||||||||
|
|
I disagree with the assumptions of the question. I don't believe that the paradigm of a language will matter much in education. What will matter deeply for learning is whether kids will stick with programming for long enough that they internalize the ideas of breaking down a problem into parts, then building those parts back up. For that, I don't believe that the paradigm matters much. If it matters, we can look at the chosen paradigms of software designed to teach children programming:
There are many other educational programming languages. Enjoy looking them up! |
|||
|
|
This question comes up time and again on the Psychology of Programming Interest Group list. http://www.ppig.org/ The issue is that "best to start with" is hard to define -- how do you measure "best"? Is it just a subjective measure? Measured by self-efficacy? Measured by a test, in which case a test of skill in what paradigm? And who are your subjects? There has been a fair bit of research on how people learn programming. Environments such as BlueJ (http://www.bluej.org) and Alice (http://www.alice.org) have been designed around pedagogicial studies. Various other studies have been done into what programming concepts novices find easiest understand (upshot is, novices find recursion hard). But an objective study as to which paradigm is best to start with would be very difficult to design -- how do you separate factors that are just due to syntax of the chosen languages ("=" vs ":=", excessive use of nested parentheses, etc), environment, student background, and how do you test the outcome -- if a programming test, then in what paradigm? |
|||
|
|
|
Objects and Object Relationship would be important. Distinguish object properties and methods, derive subclasses. |
|||||
|
|
The Professor, I m currently taking programming language class said that first language should be functional language, and of course recursion. Then declarative languages. and then procedural languages. |
|||
|
|
|
I was lucky enough to take a LOGO programming class in 5th grade (this was in the early eighties, so it was really uncommon to teach any computer skills to kids). I loved LOGO for a few reasons:
So I think the ideal language to teach kids would be interpreted and graphical, preferably with some intuitive recursiveness built-in. I don't know that it's worth over-thinking beyond that. Kids who like programming from that introduction will go further on their own because it's like crack to them (if my experience is any indication). |
|||
|
|
Crikey. Scratch, HyperCard, etoys, and of course, smalltalk (Squeak). If you want to go back a generation, LOGO. The fact that none of you mentioned any of those except LOGO speaks volumes. |
|||
|
|
