Tagged Questions
The teaching tag has no wiki summary.
397
votes
87answers
69k views
What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners! [closed]
I'm looking for the coolest thing you can do in a few lines of simple code. I'm sure you can write a Mandelbrot set in Haskell in 15 lines but it's difficult to follow.
My goal is to inspire ...
312
votes
87answers
28k views
Best ways to teach a beginner to program? [closed]
Original Question
I am currently engaged in teaching my brother to program. He is a total beginner, but very smart. (And he actually wants to learn). I've noticed that some of our sessions have ...
146
votes
55answers
5k views
How do you teach a senior developer how to be more efficient? [closed]
We have a couple senior (i.e. older) developers on our team that have no interest in improving. They write solid code, but they don't want to add unit tests or improve their efficiency. They are ...
140
votes
51answers
7k views
How can I teach a know-it-all beginner programmer?
I need to teach a teenage beginner programmer (private tutoring style). The problem is that despite their poor knowledge and skills, they are sure of their abilities, to the point where I find it hard ...
137
votes
18answers
3k views
Career day in kindergarten: how to demonstrate programming in 20 minutes?
Original Question
I was invited to the kindergarten group of my elder daughter to talk and answer the kids' questions about my profession. There are 26 kids of age 4-6 in the group, plus 3 teachers ...
71
votes
81answers
11k views
What is the easiest language to start with? [closed]
What is the language with the lowest barriers to entry, simplest syntax, easiest setup. I'm aware that there's not a best language but I am sure that there will be one that's got a good score in all ...
49
votes
18answers
4k views
What version-control system is most trivial to set up and use for toy projects?
I teach the third required intro course in a CS department. One of my homework assignments asks students to speed up code they have written for a previous assignment. Factor-of-ten speedups are ...
46
votes
26answers
2k views
Explaining Interfaces to Students
For a few years I was a teaching assistant for an introduction to programming module - Java for first year undergraduates.
Mostly it went well and we managed to get object-oriented programming across ...
46
votes
46answers
4k views
Suggestions on starting a child programming [closed]
What languages and tools do you consider a youngster starting out in programming should use in the modern era?
Lots of us started with proprietary Basics and they didn't do all of us long term harm ...
37
votes
17answers
989 views
What has been your most helpful Software Design/OOP Metaphor?
I am re-reading Code Complete (Second Edition) since I read it in College. I got to the Second Chapter about the importance of metaphors and was curious what metaphor is/was most helpful to you in ...
37
votes
11answers
2k views
How to mentor a junior programmer
Does anyone have any suggestions on how to mentor a junior programmer ? If you have mentored someone did you follow any process or was it quite informal ?
If you've been mentored in the past what ...
35
votes
16answers
2k views
So my girlfriend wants to learn to program [closed]
Possible Duplicate:
What programming language should be taught in Computer Science 101?
My girlfriend hates feeling completely out of the loop when my friends and I talk about anything ...
34
votes
27answers
3k views
How would you explain your job to a 5-year old? [closed]
Sometimes it's difficult to define programming to people. Especially too old or too young people can not understand what I do to earn money. They think that I repair computers, or they want to think ...
33
votes
33answers
1k views
Teach dynamic polymorphism with simple example
I teach in a classroom of physics, and I need to teach dynamic polymorphism in c++ using virtual functions. The problem is that I can't find a good example.
I don't like the Shape example, because ...
33
votes
16answers
25k views
Which is the best Linux C/C++ debugger (or front-end to gdb) to help teaching programming?
I teach a sort of "lite" C++ programming course to novices ("lite" meaning no pointers, no classes, just plain old C, plus references and STL string and vectors). Students have no previous experience ...
32
votes
68answers
4k views
Most harmful misconception of beginners about programming?
Possible Duplicate:
What is your longest-held programming assumption that turned out to be incorrect?
What do you consider to be the most harmful misconception about programming from people ...
31
votes
29answers
2k views
Explaining to my boss what can and can't be done with a computer
My boss and his boss have both been coming to me regularly over the past few weeks with feature suggestions. The majority of these are very impractical, and I tell them (politely) that they are ...
29
votes
19answers
1k views
Top 3 Software Engineering Principles
I know what I was taught in my Software Engineering Courses at school, I know what i was taught in my first year of being a software engineer, and years later I now can understand what is important in ...
29
votes
27answers
2k views
What would you suggest as a high school first language?
Edit by OA: After reading some answers I'll just update the question a little. At first I put it a little bluntly, but some of those gave me some good arguments which have to be taken into ...
28
votes
36answers
2k views
Introducing a teenager to programming [closed]
My 15 year old daughter is showing an interested in learning how to program, and I'd like to encourage her (she has mentioned CS as something she might be interested in doing at uni and she has ...
27
votes
8answers
1k views
Best languages to teach a blind adult the basics of programming?
I have a friend who is blind and wants to learn how to program. I’m also blind but I taught my self how to program on an old computer with a version of gwbasic and an audio book written in 1980 which ...
26
votes
12answers
2k views
TDD Exercise Ideas
I am about to give a TDD workshop. I have the theoretical part pretty much sorted out, but I wish to avoid typical Tic-tac-toe, Currency or god forbid Calculator exercise. Any suggestions for a good ...
25
votes
56answers
3k views
What are the important notions in C that you did not learn from your teachers
In September, I will give my first lectures on C to students in engineering school (usually I teach math and signal processing, but I have also done a lot of practical work in C, without giving the ...
25
votes
15answers
2k views
Should functional programming be taught before imperative programming?
It seems to me that functional programming is a great thing. It eliminates state and makes it much easier to automatically make code run in parallel.
Many programmers who were first taught imperative ...
22
votes
15answers
1k views
Most expressive algorithm for the history of computing class?
For a history of computing class, it would be useful-and-entertaining to demonstrate a simple algorithm, implemented in different languages. Thus, one will see how programming languages evolve. Such ...
22
votes
15answers
2k views
How do I explain what a “naive implementation” is?
What is the clearest explanation of what computer scientists mean by "the naive implementation"? I need a good clear example which will illustrate — ideally, even to non-technical people — that the ...
21
votes
19answers
2k views
How to teach object oriented programming to procedural programmers?
I have been asked to begin teaching C# and OO concepts to a group of procedural programmers. I've searched for ideas on where to begin, but am looking for general consensus on topics to lead with in ...
21
votes
19answers
2k views
How do I explain loose coupling and information hiding to a new programmer?
How do I explain loose coupling and information hiding to a new programmer? I have a programmer who I write designs for, but who can't seem to grasp the concepts of loose coupling and information ...
21
votes
17answers
2k views
How do you explain OO to new programmers?
My relative is studying programming and has a hard time understanding classes. He has trouble understanding for example that you need to instantiate it, that methods cannot access variables in other ...
21
votes
29answers
5k views
What's the best way to teach young kids some basic programming concepts?
I might be asking this question a bit early, since my kid isn't even born yet, but I want to be prepared. How should I start introducing basic programming concepts to my kid?
I remember typing ...
19
votes
7answers
662 views
Simplifying const Overloading?
I've been teaching a C++ programming class for many years now and one of the trickiest things to explain to students is const overloading. I commonly use the example of a vector-like class and its ...
19
votes
18answers
2k views
The best 500 word (or less) description of how a CPU works?
What is the best description of the CPU that can fit in 500 words? Submit and vote up actual attempts. Imagine you're explaining it ...
to some non-cs grad students over
dinner
to the smartest, ...
19
votes
35answers
4k views
Is programming for the elite or can everybody learn to program
I've read people arguing that some people just can't learn to program and among those who can program some are ten times better than others. However I wonder if the negative image of programmers as ...
19
votes
20answers
1k views
What should I tell kids about how great it is to be a programmer?
I am putting a presentation together. I thought about illustrating with websites like Facebook, and MySpace.
Does anyone have children around that age that could tell me what they are into? How to ...
18
votes
23answers
2k views
How and when do you teach a kid to code?
I've got a ten year old brother who desperately needs a constructive hobby and I am convinced he has the proper sort of wiring to become an adept coder. However, what he has in raw intelligence he ...
18
votes
12answers
1k views
Single most important thing to impart when teaching TDD
I'm collaborating with a group of professionals to put on an event to help teach the practice of TDD to people who are interested, but have no experience (novices).
We're trying to come up with labs, ...
17
votes
9answers
727 views
Where can I find a C99 front end with good error message for students
I'm teaching a course in which students get their first experience programming in C.
We're using gcc on Linux and (for beginning students) the user experience is terrible.
I'm looking for a C front ...
16
votes
7answers
492 views
Explaining NULL and Empty to your 6-year old?
I'm thinking in terms of Objects here. I think it's important to simplify ideas. If you can explain this to a 6-year old, you can teach new programmers the difference.
I'm thinking that a cookie ...
16
votes
11answers
680 views
How can I help fellow students struggling in programming classes?
I'm a computer science student finishing up my second semester of programming classes. I've enjoyed them quite a bit, and learned a lot, but it seems other students are struggling with the concepts ...
16
votes
11answers
602 views
Continuous Integration - How To Get Developers Bought-In To The Idea
I'm a freelance developer and have recently set up source control and automated builds (CI and nightly) for a software development team at a client which did not previously use these techniques.
...
15
votes
9answers
574 views
What's the best way to implement a webapp to teach programming with?
In the near future, I'm going to be doing a series of short workshops for teens aged 13-17, who may not have any programming experience at all, showing them the basics of programming and webapps. The ...
15
votes
16answers
3k views
Which programming concepts a beginner should learn in which order?
If someone wants to learn programming starting from scratch, in which order should I recommend to learn which programming concepts? Should he start with data-structures or algorithms. When ...
15
votes
7answers
446 views
“Firefighter” consulting, getting a project released
I am about to start working for a new customer who asked for a "firefighter" to help his only developer finish a product due at the end of the month.
While I am confident I will do fine from a ...
14
votes
5answers
375 views
In what order should the Python concepts be explained to absolute beginners?
I am teaching Python to undergraduate math majors. I am interested in the optimal order in which students should be introduced to various Python concepts. In my view, at each stage the students should ...
14
votes
9answers
1k views
Which functional programming language should I choose as first functional programming language?
I would like to learn a functional programming language to see a different programming paradigm.
My background in programming: Java (I have just passed the SCJP exam), some ruby and very limited ...
14
votes
7answers
875 views
Teaching programming and formal methods
Here's a sort of odd question. I'm in the process of writing a book on learning to program using formal methods, and I'm going to target it toward people with some programming experience. The idea ...
14
votes
33answers
3k views
What should students be taught first when first learning sorting algorithms?
If you were a programming teacher and you had to choose one sorting algorithm to teach your students which one would it be? I am asking for only one because I just want to introduce the concept of ...
13
votes
16answers
2k views
First programming language to be taught - C or Python? [closed]
I know that there is a long debate regarding this matter. I also understand that this is strictly not a programming question. But I am asking here as this platform contains wide range of experts from ...
13
votes
3answers
346 views
What things can I teach a group of children about programming in one day?
I'm running a day for 30 kids aged 11-18 about computer game programming. They have all opted to do it, but they have no experience at all of programming. My main aim is for them to learn a few ...
13
votes
13answers
522 views
Should I Teach My Son Programming? What approaches should I take? [closed]
I was wondering if it's a good idea to teach object oriented programming to my son? I was never really good at math as a kid, but I think since I've started programming it's given me a greater ability ...