vote up 19 vote down star
9

Possible Duplicate:
What is your longest-held programming assumption that turned out to be incorrect?

What do you consider to be the most harmful misconception about programming from people who are new to programming that you have seen?

flag
34  
should be community wiki – Neil Butterworth Jul 14 at 12:11
3  
Been done to death in a variety of forms. eg. stackoverflow.com/questions/888224/… – Robin Day Jul 14 at 12:12
2  
I will up vote when this is CW. – Zifre Jul 14 at 12:53
2  
This question appears to be valueless (to a beginner or otherwise), at least judging from the current set of answers. Perhaps it should be deleted. – Mark Rogers Jul 14 at 14:06
2  
Voted to reopen. The answers to this question can be valuable to people who are teaching others to be programmers. – Greg Hewgill Jul 14 at 19:31
show 3 more comments

65 Answers

1 2 3 next
vote up 41 vote down check

Re-inventing standard library functions/classes.

After going through a language book/tutorial, most beginners - knowing how to handle strings and numbers - will invent their own date functions, their own 'compression algorithms', their own SORT implementations.

Oh, and they always spend their first day searching for clrscr();.

link|flag
2  
Of course I talk from personal 'experience' too;) – Vlagged Jul 14 at 12:40
28  
I can't say I agree that this is harmful. Implementing some of the basic stuff (even if it already exists) can be a good way for beginners to learn the basics, as well as how not to implement things. This is not harmful as long as you eventually figure out that standard libraries exist. I would take a programmer who wrote his own linked list implementation over one that uses the built-in libraries without question... – William Brendel Jul 14 at 12:41
8  
@William: agreed: I would take a programmer who once upon a time wrote his own linked list implementation(s), too. – Vlagged Jul 14 at 12:44
3  
Don't forget ones writing "encryption algorithms". – ryeguy Jul 14 at 12:58
1  
Almost thought I would be clear of this one, except for that last clrscr(). darn! – TokenMacGuy Jul 16 at 18:13
show 8 more comments
vote up 2 vote down

That they will "break" something!

Or, to define "newcomers" as those that don't do it, "It'll be easy to change! It's software!"

cheers,

link|flag
vote up 1 vote down

"But you can do anything!"

link|flag
24  
But... you can. That's my favorite part about programming. – William Brendel Jul 14 at 12:16
vote up 10 vote down
  1. That their program will work.
  2. If the previous hurdle is overcome miraculously, that their program will work as expected by the end user
  3. If the previous hurdle is again overcome miraculously, that their program will stand the test of time, i.e that it will be maintainable
  4. If all of the previous hurdles are again overcome miraculously, that their second system will be as good or better
link|flag
vote up 2 vote down

That the program has to be correct the first time.

Fail fast, early, and often. It's the only way to get better.

link|flag
vote up 32 vote down

Maybe not the most harmful, but they usually can't estimate how long stuff will take to be done, they think it can be done much faster than it really must(including me).

As for harmful stuff, good companies usually keep beginners away from where they can do much harm. They are usually encouraged to work by someone more experienced, so they can learn better.

link|flag
1  
plz one more upvote, so I can get a comma =) – Samuel Carrijo Jul 14 at 12:16
4  
The question says beginners :) – Daniel Daranas Jul 14 at 12:17
1  
I think my estimates would usually be pretty good if all factors were under my control, but they're not... Inevitably, I hit some major stumbling block. Very often, it's a bug or limitation I didn't realize in some library (usually in-house library) that we're using. Also, the compiler has cost me tons of time due to bugs and non-compliance (MSVC6). Does that make me a bad estimator? I still run over my estimates even when I add in a factor of 3 or so of what I think it would take me working with reasonable technology... – rmeador Jul 14 at 15:30
show 5 more comments
vote up 6 vote down

It has something to do with computers.

link|flag
show 3 more comments
vote up 29 vote down

That if their code doesn't compile or work, it is because of a bug in the compiler.

link|flag
2  
@Neil, Yes! Seen Jeff's post on this topic? codinghorror.com/blog/archives/… – Rob Wells Jul 14 at 12:18
1  
@Rob No, this is the synthesis of my own experience as an instructor. – Neil Butterworth Jul 14 at 12:19
7  
@Neil: I vehemently disagree. Hardware errors are much more common. – Andrew from NZSG Jul 14 at 12:23
show 1 more comment
vote up 2 vote down

That all there is to it is building cool new stuff everyday. Maintenance IS a part of programming!

link|flag
vote up 0 vote down

That it is a promising career path and they should all go there. Then it takes years to clean up the system of primates' code.

link|flag
vote up 7 vote down

That you have to use every feature of the language you are learning, inheritance above all.

Updated: be obsessive about assembly inline code in C

link|flag
vote up 0 vote down

That automated testing is a waste of time.

link|flag
vote up 40 vote down

That because their program compiles and runs it does what they expect it to do.

link|flag
3  
Yes! This is quite seductive and can be hard to get rid of. – Anders Eurenius Jul 14 at 12:56
2  
hey - the compiler said '0 errors' who am I to argue? – mgb Jul 16 at 3:04
show 1 more comment
vote up 0 vote down

Most new programmers overestimate the intelligence of the compiler, in my experience. This might take the form of expecting c arrays to multiply like vectors or matrices, right down to telling the computer what they want in English. ("diagonalize matrix A;") I've also seen people expect the compiler to be completely aware of all the code right from the beginning, and so being lax about what order things go in.

link|flag
vote up 20 vote down

That if their program works on their own computer, then it will work on everybody else's computer too.

"But it works on my machine!"

link|flag
1  
@Zifre: I vehemently disagree. Even number-crunching programs sometimes have problems on other machines, e.g. some system resource runs out where you didn't check for it and bang! – Anton Tykhyy Jul 14 at 13:21
1  
Learning the difference between works and works well. I see this especially on database driven apps. No, 1000 rows in your test db is no "a lot" of data. Also, no, a 1MB javascript file is not a good idea just because it's fast on a LAN. – AngerClown Jul 14 at 13:27
5  
We're not shipping your machine! – oɔɯǝɹ Jul 16 at 20:38
show 2 more comments
vote up 20 vote down

That the user is a programmer.

link|flag
9  
No that's more from experienced programmers. – Zifre Jul 14 at 12:56
show 3 more comments
vote up 22 vote down

That programming is all about the syntax. Turns out it is all about problem solving.

link|flag
1  
Sometimes using the syntax is the problem solving... but in general agreed. – mavnn Jul 16 at 15:22
show 2 more comments
vote up 1 vote down

Overestimating the importance (and the time share) of actually writing code followed by a little testing/debugging, while underestimating or simply forgetting about writing unit tests, and other important activities such as requirements, writing specifications, design, system test, and customer acceptance.

link|flag
vote up 19 vote down

Thinking if it doesn't look horribly complicated it must be wrong or "bad" code.

I must admit years ago in school I was guilty of thinking my programs didn't look complicated enough! These days I want to cry if something doesn't turn out as simple as:

//start

if(something)
{
    do_stuff();
}

//go home

:P

link|flag
vote up 14 vote down
  • Programming is easy: Programming is a lot of fun but don't ever think of it as being easy. It takes a lot of experience, learning, and failure to get better at it and be humble about it.
  • Tools do it for me so I don't need to learn what happens underneath the covers: Tools make things a lot easier and allow you to get things done quicker. However, you still need to know and get familiar with what's happening underneath the covers because sooner or later you will need to pop open the hood.
  • Lack of curiosity
  • It's all about the newest and the coolest technologies: Not necessarily. It is about what's right for the customer and the problem you're trying to solve.
link|flag
show 2 more comments
vote up 5 vote down

The most common misconception is that you can write an application by starting your favorite IDE/editor and then write code immediately.

Yes, it will create an application. Yes, it's probably cr@p too when you're finished...

You start developing software by first creating a design. Preferably with pen and paper or with some useful tools on your computer. Writing the actual code just happens to be a small part of the whole process. (If not, you're doing something wrong!)

link|flag
vote up 1 vote down

Clever programmers knows that:

  1. Best way to speed up your appliacation is to come up with a better algorithm
  2. Unit testing is the best way to speed up your development and cut on debugging
  3. Never implement feature that you're not sure you need
link|flag
vote up 8 vote down

"I am going to make a ton of money by playing with computers!"

Edit: Another one that drives me nuts:

"The other guy's code isn't calling mine correctly, so it's not my fault the system doesn't work." -- with no proactive investigation, diagnosis, suggested patch, nothing. As a manager or a team leader, this really gets under my skin.

link|flag
show 3 more comments
vote up 0 vote down

Or, to add another insult to injury, the newbie starts to improve the performance of a piece of code, making it 5 times better and being very proud of himself... Until someone reminds him that he improved the performance of just a small piece of the whole process with a net result of one second for a process that takes two hours.

(I've actually had a colleague who did something dumb. A process had to import half a million of records and he was real proud that he made it start up faster simply by skipping some initialization. As a result, the first log entry would appear within a second instead of after 10 seconds. Unfortunately, the whole process slowed down from 30 minutes to 6 hours...)

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

"The problem is not in my program, it's a bug in the library / OS / language."

"It worked on my machine! What is wrong with yours?"

"Everything is a pattern, you just have to find them."

"I don't need to test because I only made a one line change."

"Source control is a waste of time for this project."

link|flag
show 3 more comments
vote up 1 vote down
  1. They read a tutorial on the web, copy-paste, the code it's working but they don't know why and they are happy with it.
  2. The code works on the local machine but not on others
  3. The problem is with the machine, not with the alien between the chair and the keyboard
  4. Writing the code but when it comes to maintenance they prefer a beer...
link|flag
vote up 4 vote down

That their code doesn't need to be documented. They're the only ones who will ever look at it, right?

link|flag
vote up 7 vote down

That you have to have design patterns in your code.

link|flag
vote up 2 vote down

That the hard part is typing in the code. The farther up you go, the more that comes to be the easy part.

link|flag
vote up 1 vote down

Being resistant to changing code because of some gut feeling that it will be slower, e.g. changing nested ifs to a table-driven approach.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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