vote up 12 vote down star
5

One of the pitfalls I run into on a daily basis is customers saying one thing while meaning another. Usually, this is just due to a miscommunication somewhere, but occasionally they are, in fact, saying the same thing I am just using a different term.

For example, one of my customers the other day mentioned a feature he called, "find as you type." Being a little confused, I asked him what he meant, and he described the feature in Google where, once you start typing a search query, Google suggests other, popular queries that match the letters you have typed.

Click! He meant AutoComplete! He was not wrong, it is just that I had never heard that term before.

In the spirit of reducing confusion, what terms can you think of that are different but mean, essentially, the same thing?

Also, what terms do people think mean the same thing, but don't. Please differentiate between the two.

Please only one set of terms per answer, so we can vote on the best ones.

flag
1  
@Barry Brown you are correct. I want terms that actually are synonymous. If you want to submit commonly-confused terms, that's fine, just mark it as such. – Matthew Jones Jun 25 at 17:26
show 12 more comments

48 Answers

prev 1 2
vote up 0 vote down

Operating System == Kernel who manages hardware and gives a very basic API vs. the whole software distribution

link|flag
vote up 5 vote down

I once heard a junior dev use NULL and VOID interchangeably.

Scariest thing I'd ever heard.

link|flag
1  
Void is the absence of a variable, Null is a variable with undefined/zero value. – Brad Gilbert Jun 27 at 4:58
1  
Danger, Brad Gilbert! [re: zero] – Alistair Knock Jul 31 at 20:58
show 2 more comments
vote up 2 vote down

Also Architecture is a term that requires constant clarification. It means topology to some. To others it means class diagrams, the product of software engineering. To others it is just a catch all for the above and umpteen other concepts.

link|flag
vote up 1 vote down

Value Object == Value Type

Value Objects are classes representing immutable attributes, as in Domain Driven Design.

Value Types are variables whose values are held on the stack (int, bool, struct, etc). These are spoken of in relation to Reference Types, which live on the heap and have memory pointers.

link|flag
vote up 2 vote down

There are 180 pages of preferred terms in the "Microsoft Manual of Style for Technical Publications," which is a great book for technical writers, but I think programmers should have it too.

Many of the entries mention unacceptable (or outdated) equivalents.

Example: "system tray Do not use. Use notification area instead."

link|flag
3  
Yeah, right. I know where and what my system tray is. Without reading that, I wouldn't have a clue where or what the notification area is. – David Thornley Jun 25 at 19:49
1  
googlefight.com/index.php?lang=en_GB&word1=&q…; – Nosredna Jun 25 at 23:38
show 3 more comments
vote up 7 vote down

"open source" == "free software"

If you watch Revolution OS, you'll hear Richard Stallman use the term "free software" and others like Linus Torvalds and Bruce Perens use "open source." After watching the film, I think they're talking about the same thing, but disagreeing (vehemently in some cases) on what to call it.

(I hope none of them are reading this.)

link|flag
1  
And neither term should be confused for "license-free". – jeffamaphone Jun 25 at 18:39
1  
They are talking about the same thing in the practical sense, but very different things in the philosophical sense. Free Software is a social movement. Open Source software is somewhere between a development technique and a way to talk about Free Software without sounding like Stallman, inclusive. The difference in the Free Software Foundation's definition of Free Software and the Open Source Initiative's definition of Open Source Software is almost trivial, though. – David Thornley Jun 25 at 19:48
show 1 more comment
vote up 2 vote down

Host == Server

.. Which is untrue :)

link|flag
vote up 1 vote down

Whenever dealing with Departments of Education you must learn that "system" means software and "technology" means hardware.

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

Hyperlink = Link = Anchor

I've run across people who use these terms interchangeably, and of course, they aren't the same thing.

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

Users often confuse "web browser" with "the Internet." I'll hear them say "I'm going to the Internet," which means "I'm launching a web browser."

link|flag
12  
"my internet is broken" – Chris Simpson Jun 25 at 17:32
5  
youtube.com/watch?v=o4MwTvtyrUQ – Jim Puls Jun 25 at 17:42
1  
LOL 3.5 out of 50 got it right :D – MiseryIndex Jun 25 at 17:54
3  
That video goes to show me that users just want to get work done and don't care what the various components are called. It's pointless to try to distinguish between IE and Firefox, Google and Yahoo, and search engines and browsers; to them it's just "the Internet." – Barry Brown Jun 25 at 18:59
show 3 more comments
vote up 1 vote down

Client == End User

They can be the same person, but more often then not the one writing the check to you is not the one that uses the thing you built.

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

Drop down = Combo box

link|flag
1  
Drop down list = what you you get when you use the select tag in HTML. Combo box = a combination of a drop-down list or list box and a single-line textbox where the user can either type a value directly into the control or choose from the list of existing options (e.g. the font selector in the Formatting toolbar in Word or Excel.) – mikej Jul 17 at 15:24
show 2 more comments
vote up 33 vote down

parameter == argument

Parameter is the variable in the declaration of function or method.

Argument is the actual value of this variable that gets passed to function.

I like this one because it happens even to programmers

link|flag
1  
@Naveen: Will you accept Klingon jokes to answer that question? – mmyers Jun 25 at 17:28
23  
A parameter is a "hole" that the developer leaves in the function definition, an argument is what the user of that function plugs into that "hole", when calling the function. – Jörg W Mittag Jun 25 at 17:28
1  
This should be an SO question itself. – Barry Brown Jun 25 at 22:46
1  
@Barry It is already stackoverflow.com/questions/156767/… – victor hugo Jun 25 at 22:51
1  
These are also referred to, respectively as "formal parameter" and "actual parameter"; see also chortle.ccsu.edu/CS151/Notes/… and en.wikipedia.org/wiki/Parameter_(computer_science/…). – Steve Melnikoff Jun 27 at 15:20
show 4 more comments
vote up 3 vote down

computer == system == workstation == machine == box

link|flag
2  
So this is a computer? geocities.com/pubot5/cardboardbox.jpg – Ólafur Waage Jun 25 at 20:16
1  
"...terms that mean the same thing or don't..." – Eli Jun 25 at 21:51
show 2 more comments
vote up 2 vote down

System == Library == Framework == Program == Application == Software

link|flag
vote up 9 vote down

"Client" is the big, perennial classic term that means so many things, all within the context of almost every development project.

link|flag
1  
"Client" isn't being used as a synonym, though. It just has many different definitions. – Barry Brown Jun 25 at 17:51
4  
client gets even more fun when using X – cobbal Jun 25 at 18:36
show 2 more comments
vote up 12 vote down

"CPU" = tower

A favorite term I have heard customers use.

link|flag
11  
butbutbut that's the "hard drive" – Jeremy Jun 25 at 18:48
show 3 more comments
vote up 4 vote down

hard disk drive = computer

link|flag
1  
I get that all the time. People call that black thing under their desk the "hard disk" instead of the computer. – Barry Brown Jun 25 at 17:17
prev 1 2

Your Answer

Get an OpenID
or

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