A lot of the answers here are waaay off base. The people giving those answers have too much experience with computers and programming to understand what is needed as a presentation to beginner programming students. The qualifier of "students admittedly know C++ or C or (maybe even) Pascal" sounds like "students may have completed an intro to Programming in C++|C|Pascal course last semester".
After reading the question carefully, I thought that good examples for the first day of lecture would have the following criteria:
Source is very small - small enough that you can show the major portions of any relevant algorithm(s) to the students.
Executes quickly and visibly - they don't want to wait around, and they should see clearly and easily (people are generally visual learners).
Can have a few parameters modified, then you compile and run it again - students can see how changing the source affected the operation of the program.
That last point is the most important, I think. When I was a student, I had a multimedia class where I used the Java 2D API to write a simple image display program that the user could then use to apply a few filters. Press a button and BAM - I just changed the picture. My ego was screaming "take that, Photoshop!" It's silly and stupid, but it engaged me and made it fun, and for a learning experience I think that's what you need. You are NOT going to be able to adequately cover Object-Oriented Programming on the first day (and maybe not even within the first month), and I highly doubt you will mention unit testing at all during an intro to java class.
Other than my image display example, I think games would be a big draw. If I remember my student days correctly, I remember that students like to play games, not configure web servers. I don't mean to say you drag out jake2 (but then again, that might be awesome), but you show a simple game like pong (just to get some laughs) and then move up to more interactive stuff. Did you know Runescape is run as a Java applet? You might want to look into that sort of thing more.
With apologies to the other responders.