up vote 262 down vote favorite
195
share [g+] share [fb]

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

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

For example, I misunderstood that the size of an integer is not a standard and instead depends on the language and target. A bit embarrassing to state, but there it is.

Be frank; what firm 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, or anything else about programming, programming languages, or computer science.

link|improve this question
feedback

closed as not constructive by Kev 2 days ago

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

194 Answers

1 2 3 4 5 7

For a long time (about 5 years) I thought that PHP rocks.

I thought that I know algorithms. And then I joined Topcoder.com

link|improve this answer
show 2 more comments
feedback

Bitwise comparisons on integers in SQL WHERE clauses are practically free in terms of query performance.

As it happens, this is somewhat true for the first half-million rows or so. After that it turns out to be extremely UN-free.

link|improve this answer
1  
UN-free == expensive? Is this a hidden political statement about the United Nations? Awesomes. – Kieveli May 21 '09 at 16:42
show 4 more comments
feedback

That the now popular $ sign was illegal as part of a java/javascript identifier.

link|improve this answer
1  
@Frank I wish Perl and PHP were illegal. By law. – WTP'-- Feb 13 '11 at 22:14
show 1 more comment
feedback

That ASCII was stored in a different way to binary

link|improve this answer
2  
(Open)VMS for instance does it, so technically not entirely wrong. And the reason why C supports both file modes. – MSalters Aug 31 '09 at 15:24
show 4 more comments
feedback

In the early days, most personal computers had a cassette tape interface for loading and storing programs. I did not have a computer at this time but read everything I could get my hands on (mostly magazines) that had anything to do with computers (this was the late 70's - no internet for me). For some reason I was under the impression that programs were executed directly from the cassette tape and that the only reason computers had any RAM was to store variables while the program ran. I figured that when the code had to execute a jump instruction, it would somehow rewind or advance the tape to the correct position and continue from there.

link|improve this answer
show 2 more comments
feedback

That everyone else is using the latest and greatest technology, while my team is the only one stuck with inferior outdated tools. (Except for the mystic cobol dinosaurs)

link|improve this answer
show 1 more comment
feedback

That everyone wants to produce the best\most sutiable code possible for a problem...

link|improve this answer
show 1 more comment
feedback

That, being the owner of the code I write, I'm the only person who should understand or touch it.

link|improve this answer
feedback

That managers know what they talk about.

link|improve this answer
feedback

That people would care about best practices, or even consistency.

link|improve this answer
feedback

That I need to define all the variables I'll use in my function in its beginning (Pascal style).

I used to believe I need to think about ALL the resources to be used by my function and define them before I start coding, this is probably because my first language was Pascal where that's the requirement. Then when I moved to C, I would define temp variables that are used only within loops outside those loops, disregarding in-loop scope, just so that "everything will be defined in the beginning".

It took me several years to understand that defining all the resources in advance is not a holly cow, and that scoping is by itself ultra important to code readability.

link|improve this answer
feedback

I thought "duck typing" was actually "duct typing" when I first heard of it, similar to the way people often say duck tape. "Duck typing" just sounded wrong, while "duct typing" made a weird kind of sense (cobbled-together types).

link|improve this answer
show 4 more comments
feedback

That procedural developers/programmers unfamiliar with SQL and relational databases don't need any formal training or understanding of how to work with and or use SQL and that a quick read of something like SQL For Dummies is enough to be sufficient in working with Relational databases like Oracle & SQL Server.

Far too often many errors in applications dealing with data stored in a relational database like Oracle and SQL Server are caused by a lack of understanding or how to use the langauge of relational databases; SQL.

I used to work for a software vendor who had the mentality that all a developer needed was the SQL For Dummies book or something similiar and they would be fully equipped to handle any relational database issue. Now that the clients of this vendor have databases measuring in hundreds of gigabytes this lack of SQL knowledge is coming back around in a negative way. It's not just bad performing lookups and or updates and inserts that are a problem but the actual design of the database itself that is the real obstacle.

All of that could have been avoided and resulted in far less costs now if at that time the development lead would have treated SQL and relational databases with the same leve of respect that they did with the langauge they built the application with.

Don't dismiss SQL as unimportant because it WILL come back to haunt you eventually. You may be able to get away with it for a while, even years but you will eventually hit that breaking point where you can't progress without a complete re-design of your database and that is when the costs will be highest.

link|improve this answer
feedback

That there is always a "right" way of doing things. I held onto this assumption for far too long after leaving university.

Of course I came to realise that there are always many ways a task can be completed. There are always advantages and disadvantages to each method. Look at the information available, decide, then make sure you can justify it to your boss.

link|improve this answer
feedback

Turns out it doesn't matter whether you check if memory allocation returns a reference or not under Linux, as it will actually lie to you and either actually allocate the memory at some time in the future or abort your program altogether if it doesn't have the memory you need.

link|improve this answer
feedback

I used to think that I will never program like top tier developer like the MS developer, but now I think I can write same clean code or even better.

link|improve this answer
show 1 more comment
feedback

Since college days, I thought myself to be master of programming. since I could code but others couldn't. But when I joined a company, then I was struck by my ignorance about basics. All my assumptions about myself turned out to be wrong! Now I know what I need to know and what I do not know!

link|improve this answer
feedback

When at college (mid 90's) they only had Windows 3.11 machines in the computer lab (I know, weird college).

For a while I thought that only the Windows platform was relevant to me as a professional programmer and that all other platforms were only interesting from an historical academic point of view.

After graduating from school and learning about modern unixes and linux environments I couldn't help feeling angry and disappointed about my lame school.

I cannot yet believe I graduated with a computer engineering degree without ever seeing a bash shell or even hearing about emacs or vim.

link|improve this answer
1  
Who uses Unix anyway? At least thats what I thought when I was FORCED to learn ONLY Unix in uni, basically treating non-Unix enivronments as either toys for home (windows) or nonexistent legacy (Mainframes etc). – AviD Aug 28 '09 at 10:12
show 2 more comments
feedback

My longest held (and therefore most costly) incorrect assumption was: "The business's requirements are sane and reasonable, I'm just not understanding them yet."

100 green assumptions sitting on the wall,
and if one green assumption should accidently fall,
there'd be 99 green assumptions sitting on wall.

Alternately:

Humpty dumpty sat on the wall.
Humpty dumpty had a great fall,
and all kings horses and all the kings men,
said Effim, he's only a tech.

link|improve this answer
feedback

That, by learning an exact science, I wouldn't need to improve my limited social skills.

link|improve this answer
show 1 more comment
feedback

That the evaluation order of if statements in C/C++ was compiler-specific. So writing:

if ( pointer != NULL ) && ( pointer->doSomething() )

Was un-safe because the evaluation order could be swapped. I found out recently (after many years of spouting that lie) that its part of the ANSI-C specification, you can guarantee the order and its perfectly safe.

James

link|improve this answer
show 5 more comments
feedback

That I would ever become wealthy programming software for someone else

link|improve this answer
show 1 more comment
feedback

Satisfy a customer by implenting what he wants - unfortunately this implies that a customer knows what he wants.

link|improve this answer
feedback

The less code the better. Now I know that sometimes it's worth to have more lines of code if it makes easier to read/understand

link|improve this answer
feedback

That other people would be as bothered by known bugs as I was, and would make fixing them a priority over project work.

link|improve this answer
feedback

That the benefit of OOP is that you get to reuse the object, when in reality it's the resuse of the rest of the code by creating a new object that has the same interface.

In reality, the object might be 2% of the code so reuse gets you only 2% benefit. The real benefit is reusing other 98% of the code by creating a new object that allows all the other code to something completely different. Now you have reuse of 98% of the code. Well worth th 3x longer it takes to write something as an object.

E.g., If you have a drawing program and suddenly there is a new shape you want to be able to draw you just change the ShapeObject (while keeping the interface the same). Nothing else in the program has to change.

link|improve this answer
feedback

That I wouldn't need to rapidly refactor my Object oriented code. Martin Fowler finally opened my eyes.

link|improve this answer
feedback

That tests were just another method of procrastination.

link|improve this answer
feedback

That you never finish the project you didn't start.

Seems really stupid but I put off so many projects because the scale was simply overwhelming. Having just finished a monster of a project I realized I never would have started had I realized the scope of it. In reality though, even the most complex system is pretty simple when broken into discrete and defined pieces. Yet looked at on the macro level it is quickly overwhelming.

link|improve this answer
feedback
1 2 3 4 5 7

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