vote up 139 vote down star
111

I am doing some research into common errors and poor assumptions made by junior (and perhaps senior) software engineers.

What was your longest-held poor assumption that was eventually corrected?

For example: I at one point failed to understand that the size of an integer was not a standard (depends on the language and target). A bit embarrassing to state, but there it is.

Be frank: what hard-held belief did you have, and roughly how long did you maintain the assumption? It can be about an algorithm, a language, a programming concept, testing, anything under the computer science domain.

flag
5  
Poll question = probably should be a wiki. – gnovice May 20 at 14:25
5  
@Demi: The question you linked to IS a community wiki. – R. Bemrose May 20 at 14:27
1  
You may be interested doi.acm.org/10.1145/1364782.1364795 doi.acm.org/10.1145/984458.984495 doi.acm.org/10.1145/1142031.1142053 – Simon Gibbs May 20 at 14:28
2  
Thanks for the information regarding community wiki - I have made the change. Can we reopen this now? – Demi May 20 at 14:40
21  
I think we've found a bug. When 1. a question is posted as non-wiki, 2. people answer as non-wiki, 3. the question is changed to wiki, and 4. the question gets > 30 answers, the non-wiki answers are not automatically changed to wiki. Is this a known bug already? – mmyers May 20 at 16:36
show 8 more comments

161 Answers

prev 1 2 3 4 5 6
vote up 233 vote down

That people knew what they wanted.

For the longest time I thought I would talk with people, they would describe a problem or workflow and I would put it into code and automate it. Turns out every time that happens, what they thought they wanted wasn't actually what they wanted.

Edit: I agree with most of the comments. This is not a technical answer and may not be what the questioner was looking for. It doesn't apply only to programming. I'm sure it's not my longest-held assumption either, but it was the most striking thing I've learned in the 10 short years I've been doing this. I'm sure it was pure naivete on my part but the way my brain is/was wired and the teaching and experiences I had prior to entering the business world led me to believe that I would be doing what I answered; that I would be able to use code and computers to fix people's problems.

I guess this answer is similar to Robin's about non-programmers understanding/caring about what I'm talking about. It's about learning the business as an agile, iterative, interactive process. It's about learning the difference between being a programming-code-monkey and being a software developer. It's about realizing that there is a differnce between the two and that to be really good in the field, it's not just syntax and typing speed.

Edit: This answer is now community-wiki to appease people upset at this answer giving me rep.

link|flag
6  
Or change what they want after seeing what they previously wanted. People like to change their minds. I know, cuz I'm a people. – sheepsimulator May 20 at 14:36
11  
You were giving them what they asked for, not what they wanted. – Brent Baisley May 20 at 15:43
40  
Why do boring uncontroversial no-answers get up-voted so excessively?! – Niko May 20 at 16:50
26  
Wow. Sounds like someone needs a hug. – bzlm May 20 at 20:26
11  
My god @ people complaining, stackoverflow rep is not a competition. Upvote if you enjoyed the answer, don't downvote because you are jealous you didn't post it first. – Dmitri Farkov May 21 at 21:12
show 16 more comments
vote up 61 vote down

That all languages are (mostly) created equal.

For a good long while I figured that the language of choice didn't really make much of a difference in the difficulty of the development process and the potential for project success. This is definitely not true.

Choosing the right language for the job is as important/critical as any other single project decision that is made.

link|flag
7  
I feel that chosing the right libraries is what matters. It just so happens there's often a 1-to-1 correspondence between languages and libraries... – Kevin Montrose May 21 at 5:07
3  
But if two programming languages are both Turing complete then what's the difference? You can write any program in either language! ;) – Bill the Lizard May 21 at 14:17
6  
I disagree, the decision what language to use is way less important than who will actually be implementing the project. As just one example of many other more important decisions. – Boris Terzic May 22 at 13:53
1  
While Turning complete languages do make it possible to implement the same application the syntax and metaphors of some languages do often lend themselves to particular problem types – Crippledsmurf May 27 at 11:15
5  
BrainFu** is as turing complete as python is. – hasen j May 27 at 18:31
show 5 more comments
vote up 8 vote down

I used to assume it's enough to program Win32 applications.

Also that every program must come with a GUI, because command-line is "outdated".

link|flag
vote up 40 vote down

That anything other than insertion/bubble sort was quite simply dark magic.

link|flag
45  
I am a RESEARCHER in sorting algorithms! And they STILL feel like dark magic. – Arno Setagaya May 20 at 19:31
5  
I once had a line of code in my program that was a long and complicated and I didn't feel like breaking it up or explaining it (it was some complicated lighting formula), so I put it all on one line and #define'd it to be DARK_MAGICK, and the only comment was a warning against trying to unravel the mysteries of the dark magick – Alex May 23 at 10:26
show 5 more comments
vote up 26 vote down

That condition checks like:

if (condition1 && condition2 && condition3)

are performed in an unspecified order...

link|flag
9  
In what language? Languages like C/C++, Java, and Python guarantee that the conditions are evaluated left to right and that evaluation stops at the first condition that returns false. It's part of the langauge spec. I assume that most other languages make the same guarantee. – Clint Miller May 20 at 15:49
27  
@Clint: Yeah, hence "that turned out to be incorrect". – bzlm May 20 at 16:22
3  
actually, this one depends on the language, and & will evaluate all conditions (not shortcut). And I've seen many people use And (&) in VB instead of AndAlso (&&) – Lucas May 20 at 20:44
2  
. . . Actually it will crash in VB.net too unless you use AndAlso re Lucas' comment – Binary Worrier May 21 at 8:28
show 9 more comments
vote up 18 vote down

Having No defects is possible before go live

Definitely not true, even P2 defects get left open at times

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

That private member variables were private to the instance and not the class.

link|flag
6  
Some people think they should be. See 'case 4' in gbracha.blogspot.com/2009/03/… – Daniel James May 20 at 15:18
114  
I held that assumption until... just now. – TheMissingLINQ May 20 at 15:29
7  
@ebrown I usually only find it useful when writing an equals() method – Dave Webb May 20 at 18:13
7  
They are in Ruby. – Mike Kucera May 20 at 20:48
12  
This is so normal to me that this answer didn't make sense the first few times I read it. Now I want to learn Ruby so it can confuse me the other way. :) – jmucchiello May 21 at 15:13
show 19 more comments
vote up 138 vote down

That non programmers understand what i'm talking about.

link|flag
132  
understand/care.. – nickf May 20 at 15:15
4  
I still have this one at times... I thought at least my wife would have started to understand properly by now :P – workmad3 May 21 at 7:35
2  
Oh dear, I fear I may be yet to learn this! – thatismatt May 21 at 17:09
show 1 more comment
vote up 151 vote down

Bug free software was possible

link|flag
22  
+1, although NASA almost managed it – Patrick McDonald May 20 at 14:31
35  
Yes but the "almost" cost a few million of dollars :) – Jem May 20 at 15:04
2  
It hasn't yet been achieved, but it's definitely possible (as long as we continue to work with deterministic digital hardware). We'd have to start from scratch with a new, carefully engineered OS and hardware free of serious design faults. – Triynko May 20 at 16:45
10  
@Triynko your "possible" and @JaredPar's "possible" are not the same. Theory and practice might be the same in theory but are very different in practice. – wilhelmtell May 22 at 2:30
6  
@Joseph, part of the problem is people think Hello World programs are bug free. They're not. Most do not check for errors in printf for instance or account for other failed IO attempts. – JaredPar May 22 at 18:01
show 15 more comments
vote up 15 vote down

That programming is easy.

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

That programming is impossible.

Not kidding, i always thought that programming was some impossible thing to learn, and i always stayed away from it. And when i got near code, i could never understand it.

Then one day i just sat down and read some basic beginner tutorials, and worked my way from there. And today i work as a programmer and i love every minute of it.

To add, i don't think programming is easy, it's a challenge and i love learning more and there is nothing more fun than to solve some programming problem.

link|flag
2  
Amen! But, hey, don't proclaim this view from rooftops. We don't want everyone to know programming is fun, now do we? ;) ;P – MasterPeter May 20 at 14:30
7  
MasterPeter: It would give us more fodder for us to increase our rep when they come here asking questions. – TheTXI May 20 at 14:32
2  
I would say that programming is hard to do right. It is, however, possible, which seems to be your point. – Steve S May 20 at 14:33
4  
@Olafur: Why would you want the question to be wiki, but not your answer? – gnovice May 20 at 14:52
2  
This mirrors my experience exactly. I wish I'd started sooner now :P – Skilldrick May 20 at 14:59
show 6 more comments
prev 1 2 3 4 5 6

Your Answer

Get an OpenID
or

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