up vote 18 down vote favorite
20
share [g+] share [fb]

I remember when I took my first programming class in the 11th grade in high school. The course was called AP Computer Science. Anyway, the teacher had some very cool and challenging assignments to help us learn.

One of which was a 2D fish tank simulation. The fish in the tank had a sex and other characteristics. Fish were born of other fish, reproduced, swam around, and died. Their were other explicit requirements, but I can't remember them all. But that was a very fun project, and I learned a ton doing stuff like that in the class.

Going through college was a different story. The teachers weren't as creative. We mostly followed examples from a book.

I hope to begin teaching programming courses at the college level in the near future, so I am on the lookout for some good project ideas for students.

What are your most memorable programming challenges that would be good for students (beginner - advanced)? Please give specific details about ideas for projects.

link|improve this question

Is that the Marine Biology case study you're talking about? I remember that thing... good memories. en.wikipedia.org/wiki/Marine_Biology_Simulation_Case_Study – Neil Williams May 21 '09 at 22:27
That's the one. – Ronnie Overby Jan 14 '10 at 13:37
I hated the official(?) AP CS "textbook" written for the Marine Bilogy case study. At the time, my AP CS teacher was guinea pigging it on us, and we were literally receiving word documents week by week from the author, as they were being written. It certainly wasn't fun as nothing was tested, and it was full of compilation and runtime errors :( – Dolph Feb 6 '10 at 23:08
feedback

16 Answers

up vote 5 down vote accepted

Know your audience. Imho it boils down to finding things that speak to the students. If they're interested in the task at hand, they'll be happy to learn whatever new trick is necessary. So start off with some "higer/lower" game and depending on their interest move on to more complicated project. When they really get excited, who knows you can have them code sudoku solvers soon :)

link|improve this answer
FYI, a Backtracking Sudoku solver was the second project that I did at university. Right after a program that would write out numbers as made up nordic words. Then that was followed by writing a many player card game where everyone wrote their own bot and we played nightly games against eachother. Very, Very fun. :) I'll never forget first year first session; UNSW COMP1917 2008. – Robert Massaioli Nov 1 '10 at 1:14
feedback

Although hard, one of the more interesting classes I took back in undergrad was an operating systems design class. We used the bochs pc emulator to write our own OS for the entire semester. We started with simple loading of programs into memory for execution and worked our way up to a very fragile version of dos that would have fallen over if you looked at it the wrong way.

Basic OS included (from the parts that I remember) file system, virtual memory, a very very simple shell.

One thing the instructors did right is that at every step, he gave us the best working code from the previous step so if you did not complete it or if your code had problems it wouldn't escalate in the later projects.

That class taught me a lot.

The other class I remember is the software design class. In that one we actually had to design and build a software for the local fire station to keep track of their inventory and personnel, that was probably my first experience working on a team > 4 people (the entire class was split into 2 teams of roughly 20).

Btw both of these were senior level classes, definitely not recommended for freshmen :)

link|improve this answer
2  
Really like the idea of giving you a fresh start at each step. A lot of learning going on there. – Jon Smock Jan 12 '10 at 16:13
feedback

Games are always good, requires input, physics, rendering and alot of other stuff.

And all the above fields can be done either very easy or very very advanced. This way those who think graphics is cool can focus on this while the ones who like physics more maybe thinks it's enough with a simple box that bounces around more realistic.

link|improve this answer
feedback

One of the best assignments was part of a LAN networking course. It was a group work of 5-6 students. We designed our own protocol and implemented a multiplayer game using it. Great fun and we learned a lot. Not just about protocols and programming but also about team work and project management.

link|improve this answer
feedback

One of the more exiciting projects I did as an undergrad was the Trading game competition. It tought all sort of skills from using datastuctures and efficent code, it can be done either as a group project or individually.

link|improve this answer
1  
+1. I also did this project as an undergraduate. Our tutor set up a tac server locally, and we pitted our agents against each other, with relative performance having some affect on the marking. It's amazing how motivated everyone becomes when the concept of competition is added to a project. – RJFalconer Jun 12 '09 at 17:16
feedback

http://projecteuler.net/ has a number of interesting problems to solve. The entry-level assignments don't take longer then maybe 10 minutes each - just a couple lines of code. That, and the presentation on the webside including statistics and discussions are good motivators to actually do some from time to time. Some basic coding skills and understanding of mathematics is required though to even get started.

link|improve this answer
feedback

That depends a lot on who your students are. The assignments I will never forget are

  • Two compilers. I've written one in C, without any tool to generate code -- no Flex, no Bison, etc, and I even had to write the virtual machine; and another one in Java;
  • A parallel solver for network flow problems (in C).

There were other assignments, but these were the ones I remember more clearly, and probably the ones that really made me learn a lot.

Anyway, I have always liked Computer Science, Compilers, Operating Systems, and I also like Math, so those assignments were really cool. Not all students will like those (and they are both for advanced courses...)

For courses like introduction to programming, data structures, and others where you can include just about any simple project, there are lots of interesting ideas:

  • Someone already mentioned a Mandelbrot set generator. This is very nice. Other fractals can be cool also;
  • A maze generator. (This opens the possibility of actually writing a game later);
  • A distributed virtual world: each student has a server with a map, and each map necessarily has passages to other servers (identified by IP and port). Evidently, you should give them specs for the communication between client and server (BTW, the client can be TELNET initially);
  • Generation of random music (or graphics);
  • If it's OK to include some pattern recognition, a system that will read several files (photos for example) and split them in directories, trying to keep similar ones together. This one is actually hard to get right without previous experience with pattern recognition/AI, but it's quite fun;
  • Depending on programming language and course focus, some FUSE-based filesystem could be very interesting (the filesystem can collect statistics, filter content in funny ways, like turning all text files into pirate-speak or piglatin, do automated backup/compressing/encryption, even logging of access to a set of "important" files -- who, when etc...);
  • Depending on the course (mostly for O.S. or related disciplines), writing Linux kernel drivers can be a lot of fun: stick some crazy stuff in the kernel, accessible via /proc. :-)
  • Simple games! Board games, MUD games, variations on retro games (from the Apple ][, TRS-80 etc). Even card games can be fun;
  • Interpreters for subsets and variations of programming languages like BASIC, Scheme, Pascal, Forth, INTERCAL etc;
  • A web server? If you can do threads and TCP, it's really fun. A thread pool makes it even nicer;
  • Simple Natural Language Processing stuff? Some similarity tests, or maybe tagging, etc;
  • A configurable DNS server (only needs UDP, threads and basic data structures)
  • Mixed symbolic and numeric computation (calculate the determinant of a matrix read from stdin; each entry may be an arbitrary symbolic expression like a+3 or 2*b+c). It is obviously easier if it's done in some Lisp and the entries are in prefix form, but I've seen someone do that in plain C;
  • Some Genetic Algorithm application;
  • A banking system. It can be as simple as a standalone program for CS 101, up to a distributed system with real concurrency control. I once asked my students to build one. Each student bank needed to talk to other banks via a specific protocol. Then in the day when I'd grade their work they all opened accounts in each other's banks, made transfers etc;
  • An XML parser, and maybe a template engine;
  • Some cool variant of a Unix command like grep (for example, approximate matching can be done in several different ways). Diff can also be reimplemented in interesting ways;
  • If it's OK to use FFI, get them to use OpenGL or OpenAL. A Jukebox with different features can be nice. (You can also use OpenAL in some of those other projects, like the games).
link|improve this answer
Good answer, very detailed. +1 – fastcodejava Nov 1 '10 at 1:31
feedback

My teacher took a couple examples from this page: http://nifty.stanford.edu/

It's kind of a repository of fun little projects you can assign to students. Some of them have all the details and materials you would need to have as a teacher, others have little more than just the idea and some hints as to how to go about it. But from what I've seen, they're all good projects.

link|improve this answer
feedback

I had to create Incredible Machine clone in C++. It was entartaining, fun and I've learned a lot about programming and graphics. You can also easily scale difficulty of it, starting from one simple puzle with few basic objects to more levels with various advanced objects or even with level editor.

link|improve this answer
feedback

The only non-trivial project that I did in college that sticks in my mind was a simple search engine. The program had to read in a series of html files, parse out the tags, and index all the words. You could then give it search terms and it would return a list of the pages that contain the terms you gave it.

We had to implement 3 different data structures to store the page data in. One was a hash table, another was a red-black tree (I think), but the last was one that we had to come up with on our own. To discourage a ton of linked-list submissions, everyone's project was timed, using our data structure, on a large input set, to see who's was the fastest. That ranking then contributed 20% of the project grade. I used a ternary trie and won, since I could find words in a time proportional to the word length, independent of the size of the pages I was looking through.

Looking back, I think the reason I remember this project isn't because of the programming techniques that it taught, but because of the competitive nature. Not so much that the 'winner' was guaranteed an A and the 'loser' an F, but just enough to make it interesting.

link|improve this answer
feedback

Mandelbrot generator, Tron, bouncing balls, Synthesising a plucked string with Karplus Strong algorithm, Recursive folder size calculator, Connect 4, ...

It always feels good to code something up that is useful, or amazing, or spectacularly neat.

If you're feeling ambitious, you could get them to take on a large task as a collective, and then they would have to split it up into modules and arrange themselves into groups.

That would be wonderful OOP / reusable code practice, teaching them to specify interfaces.

That is what I would do: for the first assignment they have to go away and come up with an idea. for the second class they have to put out all the alternatives, and choose winners. maybe three projects may get chosen. then they have to split into groups to work on whichever project...

Teacher's main role would be to check how they are assigning tasks / workshare, making sure that everyone does something.

Form these groups early on in the course, then put it on the backburner for a few weeks while you teach all of the necessary constructs that they will need to accomplish their task. it is always easier to learn something if you have some objective in the background when you forwards.

Remember, now is the day of the Internet: it's not so important to teach someone something as it is to teach them how to find the answer themselves.

link|improve this answer
feedback

I think anything thats abstract and goes outside of normal programming scope but is still within reach. Group projects are always a blast if people know what they are doing, I always thought projects that did networking stuff was rather neat too.

Boring stuff is crap like "Implement a Plane Flight schedule program" or a "Employee Schedule system".....that stuff is overdone so much.

link|improve this answer
feedback

The best education I've had to this point was from Prof. Whitaker at DeVry Columbus. This was for our intermediate Java course work (the second class in a 3-class series). I will admit it was quite boring, but he had us learn all the infrastructure of the Java Fx by re-building the Fx on our own. So many times I have been able to draw off of that education to understand underlying issues or happenings, so that I know when it is best to use a linked list vs. an arraylist vs. a regular list.

Our Java 1 course was slightly more by-the-book, and although I ace'd the course, it wasn't anywhere near as informative.

Now that I look back on it, I'd definitely say to teach the students how the framework works... once they know that, then educate them on how to use the "tools" to create solutions to problems.

link|improve this answer
feedback

Try the Code Katas from http://codekata.pragprog.com/

Quote from the site:

Code Kata is an attempt to bring this element of practice to software development. A kata is an exercise in karate where you repeat a form many, many times, making little improvements in each. The intent behind code kata is similar. Each is a short exercise (perhaps 30 minutes to an hour long). Some involve programming, and can be coded in many different ways. Some are open ended, and involve thinking about the issues behind programming. These are unlikely to have a single correct answer. I add a new kata every week or so. Invest some time in your craft and try them.

link|improve this answer
feedback

I have given my students a paint project. They store the coordinates as an %, shape, fill color, line color in a text or XML file. Then they had to write code to store their picture, save and open. Some students added the ability to animated their pictures. It turned out to be quite a fun little project for them.

link|improve this answer
feedback

Even though it's been some time since this question has been asked, I thought of giving my ideas. If the students know some programming I don't think that everybody doing the same project will be constructive. Also I in my opinion a game will not be that useful to anybody (not even for game players because the students won't be writing high quality games).
A few ideas that I think are suitable can be found at this programming project ideas site. There are some good genric project ideas that students will be able to choose from.
The students will be able to submit their contributions to the respective projects or plugin directories and get feedback. I think that this will be good motivation and they would have done something constructive.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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