vote up 3 vote down star
2

Hi,

I was wondering what programming exercises people thought would make good training exercises to get junior developers up to speed.

In the past I have used a DAG (directed acyclic graph) as a programming exercise, as I find this is a really good way to introduce new developers to test first development, OOP and collections.

(This also works as really good interview test)

However, my current crop of junior programmers are coming to the end of the DAG now, but have found the process interesting and would like to continue.

I think it would be nice to choose an exercise that required 2 or 3 simple design patterns, but any/ all ideas are welcome.

I will be doing the exercise in Java, but I think an interesting programming problem would be language agnostic.

cheers,

David.

flag

11% accept rate
What are you training he for? Please clarify your question. – aku Sep 19 '08 at 14:34

3 Answers

vote up 1 vote down

I ask candidates to implement a linked list during interviews.

For Mentoring, I would put them to work on actual code. It feels good to have code out there being used. If there isn't an opening in the current release, have them build "that tool that would be really useful to do X but you haven't had time for to build yet."

link|flag
+1 for your mentoring answer but -1 for linked list during interviews. I think that is so unrepresentative of the skills used during day-to-day software development, unless the company is really into specialised data structures. – danio Sep 19 '08 at 15:47
+1, while I do agree that I don't implement many linked lists in my daily work I do think that any developer who is interested in more than just his paycheck has seen/read-about/implemented linked lists. Anyone worth hiring should be able to implement one with a little help. – Mendelt Sep 30 '08 at 14:54
@Mendelt, even more so for someone waving a diploma at you. – ProfK May 5 at 19:37
vote up 0 vote down

Pick something from Project Euler

Problem 18 is a particularly good one as it involves recursion and while it can be solved with brute force, it links to Problem 67 which is the same exact task on a much larger data file that cannot be brute forced.

link|flag
vote up 0 vote down

For interviewing I'd check out the following thread: How to Find that Rock Star Junior Developer?

link|flag

Your Answer

Get an OpenID
or

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