vote up 75 vote down star
33

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 to teach them "better ways".

What's the best way to tackle this?

Just to be clear what I'm talking about:

  • Constantly changing between tools/IDEs/libraries when it's tough.
  • Blind certainty that really bad designs are really very good.
  • Copying and pasting from the Internet, without understanding the code, and "marking" it as a project.
flag
13  
I was like that at 15 or 16. Full sure I knew eveything, and couldn't be told I didn't. It took a very humilating personal failure to snap me out of it. – Binary Worrier May 15 at 12:15
90  
I have met people like this. There is always one day when they come and declare: I have found a bug in gcc. – mouviciel May 15 at 12:28
5  
Albeit few, there are some who actively refuse to learn. These will only learn from experience, if ever. – romandas May 15 at 13:30
12  
Physical discipline, of course. Always works. – DrJokepu May 15 at 15:37
19  
Apply a rolled-up newspaper to the nose, repeatedly, until they stop piddling on the carpet. – Steven A. Lowe May 16 at 19:20
show 9 more comments

51 Answers

1 2
vote up 186 vote down

Let them fail. Nothing proves your own mortality more than seeing bugs you never thought possible in your own code.

link|flag
31  
If you're convinced you're an immortal coding god, you won't realize that the reason your code is failing is actually your own fault. There are numerous ways of solving problems in code, most of which have some hidden drawbacks or downright critical consequences that will never show up to a beginner. They won't know how to deal with this, unless taught the basics of common sense. – J. Steen May 15 at 12:14
2  
If you don't have the reasoning skills to tell when your bugs are your own bugs (after serious inspection of course), you don't need to be a programmer ... (IMO) – C. Ross May 15 at 12:16
7  
I think the biggest problem is up to one point you might not aware of that you failed, because the project is working fine! But when it comes to maintaining or can't introduce a new feature because the initial design was ridiculous you might see that you failed. So "let them fail" might not work as quickly as expected. – dr. evil May 15 at 12:20
4  
"Let them fail" can backfire spectacularly - some people are just not capable of assigning blame to themselves, they will convince themselves it must be something else. If you try this, it could be you they choose to form a conspiracy like theory around. – David May 15 at 13:22
101  
"Let them fail"? Hell, MAKE them fail. Take a look at the crappy code the kid is producing, and then for the next assignment, have them expand the code in ways that require an understanding of the code they blindly copied and pasted, or that would be fairly simple with good design but are quite painful with the design actually used. And for the sake of contrast, do the same thing targeting functionality that the kid DOES understand, or sections of code that ARE designed well (assuming any exist). Don't tell them they're screwing up; SHOW them. – BlairHippo May 15 at 14:51
show 11 more comments
vote up 66 vote down

Ok here comes a rather philosophical, but nevertheless correct, idea:

A strange phenonemon is that regardless the skills people have or don't have, the skills they think they have are more or less constant.

This is because the skills you have are the only skills you can use to judge the skills you have....

This lead to the phenonemon that your pupil, and many others, suffer from: "unskilled and unaware of it"

See this very interesting text: http://www.scirp.org/Journal/PaperDownload.aspx?paperID=883&fileName=Psych.20090100004_39584049.pdf

Now, ask yourself, why you think you are skilled and your pupil is not? You know you shouldn't copy paste from the internet. But if you really know why, why is that? If you can phrase it for yourself, why not for her?

What I mean is, if you know something is bad, you should know it that well that you can explain it to others. If you want to tutor, make a habbit of questioning your own certitudes. Explain them to yourself as if you had to persuade yourself.

And importantly, try to find examples. Examples are the alpha and the omega of teaching. That's how people tend to get something: by seeing an example of it.

If a design is bad, show her where it goes wrong with an example. If you cant find an example, produce one yourself. If you can't produce an example, ask yourself why that is.

I think if you can find counter-examples for every false certitude a beginner has, you will not find it that difficult to persuade them.

link|flag
1  
You actually explained what I "just knew" :) – VVS May 15 at 12:42
show 4 more comments
vote up 49 vote down

Unplug the internet connection.

link|flag
4  
If she can tackle the WPA2, she really might be a know-it-all :-) – Peter May 15 at 12:55
2  
"I just downloaded this code and it seemed to work. Don't really know what it does though,......" – Steve Claridge May 15 at 13:23
12  
@Steven Claridge - A great example of encapsulation! – CiscoIPPhone May 15 at 13:45
show 6 more comments
vote up 47 vote down

Simply ask.

Let them do something. When you see they do it wrong, ask why they do it. Let them explain their reasoning. Nobody likes it to be pampered but everyone likes to boast -- to the point where they will talk themselves into a corner.

When they start to struggle with their answer, ask a "how about ..." question: "How about you encapsulate this into a class, so you can forget about the details?"

This makes them lead themselves, using your experience.

[EDIT] In my experience, there are no fools. When someone does something extremely foolish, that happens for two reasons: They didn't think about it at all ... or they thought about it and came to the conclusion that this course of action was the perfect one. Since you can't tell what it was by looking, you have to ask. This is the key to answer your question: How can I help?

link|flag
5  
"In my experience, there are no fools." - then you need to get out more :-) – paxdiablo May 30 at 14:47
7  
If one starts to think of someone else as a "fool", then that's prejudice. People can lack knowledge, insight or guidance. Just wrapping them in a label to let them rot in a back corner of ones consciousness will make one happy but it won't change anything. – Aaron Digulla Jun 2 at 9:44
2  
"Everyone is a fool sometimes". Dunno who said that but I have my moments, too. – Aaron Digulla Oct 30 at 12:55
show 1 more comment
vote up 34 vote down

I've done private tutoring for some years, and I think that the same approach can work with maths and programming. (After all we know that they're more than closely related).

  • Take away any help from them. Programming is done best in one's mind. No IDE, no google, heck no computer! Go pen & paper.
  • Make them explain why they think the solution is valid. Always!
  • Make them explain why, but do it before telling them if the solution it's right or wrong. This helps a lot with over/underconfident persons.
  • Ask questions. Theory questions, practical questions that can be solved without writing, any question. But don't be satisfied with approximate answers.
  • Give examples, of what works and what doesn't, and always explain why. Evidence is the key.
  • Make them fail. But be aware! This must not, for any reason, be a clash of egos. There's no point in proving someone wrong for the sake of it. The typical know-it-all reacts worse when he feels humiliated. The truth that has to become clear is not that they can't program, is the right way to do it.
  • Be a good example, and never accept compromises on the topics you think are crucial. This means never copy and paste if you told him to never copy and paste!
  • Always say why something's wrong, and incrementally ask for solutions to individual problems. Small things are tackled best, and a sense of direction is very important.
  • Systematic and logic errors are not abstract, we all know that they have heavy practical repercussions: make clear what will happen if they don't follow best practices.
  • Always make it fun, or at least interesting. Learning always has to.
  • Lastly... some people have no will to learn. Humility is key in learning more than in any aspect of life, and unless you're a close relative... there is very little to do about it. You can decide to invest your time in people with the right mindset.
link|flag
show 1 more comment
vote up 29 vote down

Point him/her at StackOverflow, and see how many questions they can answer.

The breadth of issues on here might give them some idea how big the programming problem space is.

link|flag
10  
This is a good response. I'm consistently humbled when I read the questions posted here. – JimDaniel May 15 at 15:33
1  
Look at the PHP questions, a lot of answers there are actively encouraging copying from the internet without understanding. – Jacco May 15 at 17:02
18  
Oh please don't destroy our community. – JavaRocky May 16 at 6:47
4  
@Jacco yeah, large proportions of PHP Users are unskilled and don't know it ;) – Kent Fredric May 18 at 17:22
show 2 more comments
vote up 13 vote down

Teenagers almost always think they know everything. In some ways they're like two- or three-year-olds - their experiences haven't taught them (yet) that there's more to [insert your thing here].

Working with teenagers in my church youth group and as a Boy Scout leader (and Computers Merit Badge counselor) has taught me a few things:

  • be patient.
  • they are generally smarter than you think.
  • don't say "but" if you can avoid it. Exceptions to anything let them turn on their inner lawyer and they will try to split finer and finer hairs. It's unwinnable and takes you both off task.
  • their logic skills are ... undeveloped. That may be the hardest thing to overcome because they will see relationships where none exist, and will miss the elephant in the room.
  • practice being patient. For yourself and for them.
  • be a teacher, not a Charlie Brown-adult talking head. Don't be condescending. This can be tough with a know-it-all who's sure they are right.
  • give them solvable problems.
  • they'll want to do something that gives them near-instant feedback. Whiteboarding logic might be important but will turn them off and you may never get them back.
  • be patient.
  • let them fail.
  • be patient. They will get it. Eventually.
link|flag
show 1 more comment
vote up 8 vote down

It's not enough to tell them they're wrong, you have to show them. There are limits to the coding style you describe. You're going to have to make your student reach those limits before they can go beyond them. Challenge them with interesting problems that they won't be able to solve the easy way. Work through them with the student the right way. I'd recommend Project Euler, but it's not for everyone, and I have a feeling you're going to need to find problems that are particularly interesting to this specific student.

link|flag
vote up 7 vote down

Require her to grow a project: to start it and then, in your next assignments, add to it.

That should:

  • Require her to understand what she's provided in previous assignments
  • Explain the value of good design (which is maintainability)
  • Be like real life

I suggest too that you concentrate on verifying the correctness of program's output (because the extent to which the output meets requirements is an objective measure of goodness, whereas 'design' is subjective).

Something else is to teach by example ("that works; I would have done it this way though, because ...").

link|flag
show 1 more comment
vote up 7 vote down

I was once that know it all, fresh out of college developer. It took about 2 weeks and 10 code reviews to show me that I was nothing.

When I started my current job out of college, I had to do a throw away program to learn the companies standards for 2 weeks. My code followed the companies SOP for development, meaning the code was code review. The two code reviewers I had tore it apart for 2 weeks. By the end of it, I realized that I and my code are no better then anyone else. That is the exact time that I started to grow as a developer and actually learn.

link|flag
show 1 more comment
vote up 7 vote down

Give them a rather complex assignment. When they complete it, analyze the code failures (such as lack of extensibility, etc), and make them, for example, extend it. Make them do modifications that require changes in the copy-pasted code. As they run into difficulties, explain how these could be avoided, by better design, and understanding what they copy-paste.

Additionally, you might what to give them problems from http://projecteuler.net/, which require thinking and not just brute-force+copy-paste programing, though i may have diverted myself a bit.

link|flag
vote up 6 vote down

Confidence is a common and necessary attribute of programmers. We tackle problems that seem hard in their totality, and often are in their constituent parts. This confidence can be evident in strong ego, and even arrogance.

I remember being confident at pretty much every stage of my development career. The first time I wrote some code in assembly, I thought I could rule the world. That feeling is less strong now, because it is less important to me. I have been humbled so many times by other developers, and by the rapid, constant evolution of our field, that I assume anything I know to be a "truth" now, will be considered terrible practise in very short time (I exaggerate to make my case, but believe this to be true in spirit).

For me, the best way I have learned the "better way" is by using those tools and practices. Make the student work with, and modify good code, so they appreciate the elegance and ease that prior programmer has afforded them. Make them use design patterns and frameworks (e.g., MVC) that are generally agreed on to be a good thing at this point in history.

Ask them to do things THEIR way as well, and then discuss the differences. Why is A preferable to B? More maintainable? Less lines of code? Less layers of abstraction for a new developer to get oriented with? More loosely coupled? Better documented? Faster? More common standard? Feels better?

link|flag
show 2 more comments
vote up 4 vote down

Give them a task that is very hard. Look through 'The Art of Computer Programming' as there are plenty of good ones there. Maybe issue an NP-Complete problem. Then when it runs in O(stupid) you can point out how bad there design way and show them why they were wrong. Or maybe ask them to write something in under-x-lines of code.

I tend to think I am right until I find out that I am wrong. The lessons best learned are the ones you find out yourself

link|flag
3  
Sounds like a sure-fire way to frustrate them: People don't take it well when you give them an impossible problem and then come back with "told you so". That's at least insulting and taking the instable emotional state of teenagers into account, it's the wrong way to handle this. Defuse over aggression. – Aaron Digulla May 15 at 12:33
2  
Not so much an impossible task, but one that is sure to highlight to them where there short-comings are. So they can go "oh, so that's why we abstract the OS API" or whatever. – Aiden Bell May 15 at 12:48
vote up 4 vote down

What was it Obi-Wan said... "Was I any different when I was that age"?

Give them problems from TopCoder, and then compare and contrast the elegance and efficiency of their solution to the examples of contest winners.

link|flag
vote up 3 vote down

One option might be to get them trying to contribute to an open source project. Pick a bug and try to fix it together. It might be a helpful way of showing them other peoples code and getting a wider response to their code when they try to submit it to the project.

link|flag
vote up 2 vote down

I'd try moving away from the tools/libraries and tackling on more theoretical topis, such as OO design, algorithms, etc.

link|flag
show 1 more comment
vote up 2 vote down

Don't let them fail by giving them something difficult. That leads to frustration which is not a fertile ground for a teacher/student relationship.

Give them a simple problem, but strive for elegance and clarity in the code. If you have multiple students, try making it into a little contest: Whoever can come up with the solution in fewest lines of code / fewest operations / fewest bugs.

Don't talk tech at first, judge code purely on its aesthetic merits.

And, yes, disable the internet. Or, better yet, switch off the computers. Let them do the coding on paper/whitebooard/blackboard/origami/spaghetti.

link|flag
vote up 2 vote down

My initial answer is to always let them fail -- agreeing with the current solution. Even after I was made aware of my failures and my ridiculous software designs, I took it as a personal failure and not one of lack of experience or knowledge. Furthermore, it doesn't really help if you need to teach someone.

What helped me to gain perspective is work in the Enterprise consulting field. Looking at the APIs and designs of professional (and expensive) projects taught me a lot about where I was, and how far I had to go. I saw how much more complex these things are, and how people are made to work with them. It shocked me out of my bravado and made me listen and study.

link|flag
vote up 2 vote down

Give them a good book to read. I had this problem with a co-worker and it was very hard to convince him with the basic concepts behind things like encapsulation and so. I threw at him a good book (that matches his level being experienced in the field not in programming) and it was miraculous how he changed his mind about many aspects of his work. Try books that serve as moral advisers for languages or general practice like "Code Craft" or "55 Effective C++" or "The Productive Programmer" and so on ..

link|flag
vote up 2 vote down

His fake omniscience is due to insecurity, not confidence. You must destroy him before he can be rebuilt.

Actually sounds like fun... =)

link|flag
show 1 more comment
vote up 2 vote down

Ask them lots of questions. Get them to explain their designs, their modelling and their implementation.

Then start picking apart the explanations. It may not sound pleasant, but it might be one of the few ways to get them really thinking about their designs and approaches.

Hopefully they'll realise that there is a lot more to programming than "just making it work".

Lastly, give whatever they build the "manual tester" treatment and start breaking their applications by doing things in a way that "real users would never do" (i.e. things they haven't considered).

link|flag
vote up 2 vote down

Your problem is not new.

Here is some research on the subject, makes an interesting read. Unskilled and Unaware of It: How Difficulties in Recognizing One's Own Incompetence Lead to Inflated Self-Assessments

link|flag
vote up 2 vote down

Introduce them to StackOverflow

I find that seeing the depth and breadth of knowledge available, especially dealing with somewhat foreign languages and concepts, is extremely humbling, even on my most egocentric days.

Tell him/her "Until you can out-wit Jon Skeet, you've got more to learn."

link|flag
vote up 2 vote down

I personally feel the best way to teach is not to tell a kid how to think but to ask them what they think and then ask them to defend their ideas with facts. So if the kid says XYZ is the best method don't disagree say, "OK great answer and now why is it the best?"

Never use "but" with a kid, or anyone really, because it sounds like you are saying, "I heard you BUT you are wrong." Kids just shut off if they think you aren't listening to them. I try to go by the adage that you should never take away from what they say but instead you try to nudge them in the proper direction by showing them how to deduce and answer for themselves.

Though you should be careful that in the teaching you don't forget to keep you mind open and learn too; very often we learn from those we teach.

Oh, and make sure you are non-confrontational. You aren't there to force them to do things your way, you're there to teach them how to think for themselves and you're just providing the tools.

link|flag
vote up 2 vote down

Maybe you can get them to shift their ego. Instead of being writing the best code around (as we are all :), maybe they can find some fun at saying WHY other's code SUCKS ? What if they where the buyers, would they pay for that ? Since they would be riches (after coding some killing app, of course), they would not have time to code all what they want - so they would have to hire - what kind of code would they want ? Is unmaintenable code ok ?

And what if they were Bill Gates with 100 000 developpers beneath them ? Would they accept that a wiz kid create a killing feature that nobody would understand ?

That's the beginning of code review. And the begining of great software development carriers, I think.

All the best :)

link|flag
vote up 1 vote down

The only thing that may help her is time and experience.

link|flag
1  
If not the only thing it's of course the most important. – VVS May 15 at 12:28
vote up 1 vote down

I'm not in the "destruct their beleave" thing, i think you could make an sample project with some mistyrious bugs or exeption that you've put in, and has an exercice or practice they have to debug it.

You learn alot by debuging code and they wont find the solution on the internet :) beside that case happens all the time at work, some tools is jamed and the programmer isn't here so you end up debuging someone elses code...

link|flag
vote up 1 vote down

Let them find out the hard way when they choose to not follow direction and attempt to do it their own way.

The greatest thing is to just keep at it. Eventually they will learn that what you are showing them is the best way and eventually they will start listening.

Good question by the way!

link|flag
vote up 1 vote down

Regarding bad designs, have the student perform a code review. Write a solution in the student's style and another with a good design. Hopefully that without an investment in the code, the student's ego won't interfere with criticism. Of course, if the student doesn't understand enough to see why one approach is better than another...

While this isn't a panacea, it might be a useful pedagogical tool.

link|flag
vote up 0 vote down

Give her a closed book exam, no books, no phone, no Internet access. Something simple, code written in notepad, compiled at the command line. Let her fail, see her make excuses when she has nothing to blame except herself.

Also, find something external to IT that she's interested in Sports, Musicians, fictional characters, and teach using their example

e.g. Do you think David Beckham would be proud if he played a game the way you did that assignment? or Spiderman has natural ability but even he has to study . . .

Bad examples, but you see where I'm going

link|flag
2  
We all need IDE's and to be able to look stuff up on line to be productive, but lots of us started off in this business before ide's and the internet existed, and we still managed to get the job done. At this stage for this pupil, it's not about "what's real life" it's about learning how to think and how to express those thoughts. – Binary Worrier May 15 at 12:50
1  
Without a computer in an interview, there are many interview questions that I can answer (including whiteboard things) ... but there are many programming questions that I couldn't, for example I don't remember exactly what parameters you pass to the CreateWindow function; I've always found it sufficient to remember only the name of the function, so that I can look it up ... and I was doing that (i.e. using the documentation and sample programs while I was programming) even before the WWW became available. – ChrisW May 15 at 13:00
1  
"or example I don't remember exactly what parameters you pass" which is why paper exams should be pseudo code, you really shouldn't be failed on not knowing the calling convention of some obscure api. But you should be marked down for not knowing the simple stuff (i.e. not using .equals for strings in java, or being un aware of pointer notation in C), and definetly marked down for not being able to solve a problem. e.g. 2 years ago I was asked to give pseudo code to convert an int to a string, he sort of apologised saying "everyone has to do it, for all tech positions". Cool, my kind of place. – Binary Worrier May 15 at 13:21
show 8 more comments
1 2

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.