tags:

views:

98

answers:

5

For a layman, any recommendations of a "CS 101" book would be greatly appreciated.

+1  A: 

For an intelligent layman, Structure and Interpretation of Computer Programs.

Try before you buy!

Skilldrick
A: 

By far the best intro book, that will make sure you start in the right direction (mentally)

The Pragmatic Programmer

Then pick your flavor (head first keeps it at a high level): Java C#

Nix
The Pragmatic Programmer is great but it's not CS. Also, I think you need to program your own way a bit before you get told "the right way" by Dave and Andy.
Skilldrick
Its not CS? I am almost positive its Computer Science... and all good books are read multiple times.
Nix
It's programming, but it's not computer science. It doesn't talk about the science bit at all, it's all about how to actually construct software.
Skilldrick
A: 

There are lots of great "CS 101" type books out there, but many of them approach things differently, so it really depends on what your goals are. While I agree with Skilldrick that SICP is a great book, it is also very "academic" in its approach. That is fine if it is what you are looking for, but maybe not so good if you are looking for a more mainstream programming approach. I would recommend checking out one of these:

Practical Programming: An Introduction to Computer Science Using Python

Python Programming: An Introduction to Computer Science 2nd Edition

wshato
A: 

"The best book on programming for the layman is Alice in Wonderland, but that's because it's the best book on anything for the layman."

Alan Perlis, "Epigrams on Programming"

schot
A: 

Very good for learning to program in a very readable language is Learn to Program. For a generic CS book I agree with Nix that you can't go wrong with The Pragmatic Programmer.

mpenrow