Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

579
votes
354answers
238k views

New programming jargon you coined? [closed]

Question What programming terms have you coined that have taken off in your own circles (i.e. have heard others repeat it)? It might be within your own team, workplace or garnered greater popularity ...
135
votes
30answers
9k views

What is a monad?

Having briefly looked at Haskell recently I wondered whether anybody could give a brief, succinct, practical explanation as to what a monad essentially is? I have found most explanations I've come ...
101
votes
13answers
14k views

What is a lambda (function)?

For a person without a comp-sci background, what is a lambda in the world of Computer Science?
62
votes
8answers
5k views

What is a 'Closure'?

I asked a question about Currying and closures were mentioned. What is a closure? How does it relate to currying? Additional: Kyle's answer is great but to my poor procedural/OO mind Ben Childs ...
48
votes
4answers
3k views

What is 'Currying'?

I've seen references to curried functions in several articles and blogs but I can't find a good explanation (or at least one that makes sense!)
47
votes
3answers
3k views

What is the difference between currying and partial application

I'm not exactly sure how to word this question. I learnt what currying was in the first year of university, and have been using it where applicable ever since. However, I quite often see on the ...
46
votes
5answers
1k views

Arguments or parameters?

I often find myself confused with how the terms 'arguments' and 'parameters' are used. They seem to be used interchangeably in the programming world. What's the correct convention for their use?
45
votes
13answers
7k views

UI Terminology: Logon vs Login

I am crafting an application and cannot decide whether to use the terms Login/out or Logon/off. Is there a more correct option between these two? Should I use something else entirely (like "Sign ...
43
votes
6answers
2k views

What is this practice called in JavaScript?

When you wrap your JavaScript code in a function like this: (function(){ var field = ...; function doSomthing(){... ... })(); I noticed that this fixes scoping problems for me on a lot of ...
41
votes
36answers
4k views

When is a language considered a scripting language?

What makes a language a scripting language? I've heard some people say "when it gets interpreted instead of compiled". That would make PHP (for example) a scripting language. Is that the only ...
40
votes
6answers
2k views

I never really understood: what is POSIX?

What is POSIX? I read the Wikipedia article and I read it ever time I encounter the term. Fact is that I never really understood what it is. Can anyone please explain it to me by explaining "the need ...
40
votes
11answers
5k views

Why was .NET called .NET?

I always wondered why Microsoft chose such a strange, search-engine-unfriendly name for such a great platform. Couldn't they have come up with something better? Apparently the codename was NGWS: ...
34
votes
5answers
1k views

Where does the word “pragma” come from?

So I know what pragma is, and what it's used for, but what is the meaning of the word itself? I've used it many times in code, but I never really knew what the word actually means or stands for.
32
votes
8answers
4k views

What's the difference between an argument and a parameter?

When verbally talking about methods in C# during a code review or in pairing I'm never sure whether to use the word argument or parameter or something else. Either way the other people know what I ...
30
votes
18answers
2k views

Famous eponymous programming techniques [closed]

In some sports certain techniques or elements are named after the athlete who invented or first performed them—for example, Biellmann spin. Is their widespread use of such names for programming ...
30
votes
4answers
2k views

What are “downward funargs”?

Jamie Zawinski uses that term in his (now ten years old) article "java sucks" as if you should know what it means: I really hate the lack of downward-funargs; anonymous classes are a lame ...
29
votes
10answers
8k views

Simulator or Emulator? What is the difference?

While I understand what Simulation and Emulation mean in general, I ,almost always, get confused about them. Assume that I create a piece of software that mimics an existing hardware/software, what ...
29
votes
23answers
6k views

Is “performant” a valid word? What's the alternative? [closed]

Given that performant isn't officially a real word, what is an appropriate alternative term for expressing "something that performs well"? So, instead of saying something like, This iteration of ...
28
votes
1answer
813 views

What does it mean for a data structure to be “intrusive”?

I've seen the term intrusive used to describe data structures like lists and stacks, but what does it mean? Can you give a code example of an intrusive data structure, and how it differs from a ...
27
votes
15answers
2k views

What is a “real” programming language? [closed]

Recently a teacher said "PHP isn't a real programming language", but only gave, in my opinion, weak justification: It's not compiled. It's scripted. It doesn't run on every platform. Is PHP not ...
27
votes
6answers
2k views

Framework vs. Toolkit vs. Library

I'm new to programming, so what is the difference between a Framework, a Toolkit and a Library?
27
votes
15answers
8k views

What is functional, declarative and imperative programming?

In a nutshell, what is: Functional programming Declarative programming Imperative programming Are there other (more exotic) types? What type is jQuery? I really like it but don't know what it's ...
26
votes
10answers
7k views

What is null in Java?

What is null? Is null an instance of anything? What set does null belong to? How is it represented in the memory?
26
votes
6answers
3k views

Why are two different concepts both called “heap”?

Why are the runtime heap used for dynamic memory allocation in C-style languages and the data structure both called "the heap"? Is there some relation?
23
votes
11answers
2k views

What is “Orthogonality”?

What does "orthogonality" mean when talking about programming languages? What are some examples of Orthogonality?
23
votes
6answers
6k views

What is the difference between Serialization and Marshalling?

I know that in terms of several distributed techniques like RPC the term Marshalling is used, but I don't get the difference with Serialization. It both is transforming objects to series of bits no? ...
22
votes
8answers
1k views

What is 'Pattern Matching' in functional languages?

I'm reading about functional programming (in academic purpose) and I've noticed that Pattern Matching is mentioned in many articles as one of the core features of functional languages. Can someone ...
22
votes
3answers
2k views
22
votes
5answers
3k views
22
votes
8answers
5k views

count vs length vs size in a collection

From using a number of programming languages and libraries I have noticed various terms used for the total number of elements in a collection. The most common seem to be length, count, and size. eg. ...
21
votes
9answers
854 views

The History Behind the Definition of a 'String'

I've never thought about until just now, but I'm not sure why we call strings 'strings'. I'm a .Net programmer, but I know the concept of strings exist in virtually every language. Outside of ...
21
votes
6answers
6k views

utf-8 vs Unicode

I have heard conflicting opinions from people - according to wikipedia, see here there are the same thing. Are they? can someone clarify?
21
votes
11answers
3k views

'method' vs. 'message' vs. 'function' vs. '???'

I recently asked a question about what I called "method calls". The answer referred to "messages". As a self-taught hobby programmer trying to phrase questions that don't make me look like an idiot, ...
19
votes
9answers
959 views

What is “runtime”?

I have heard about things like "C Runtime", "Visual C++ 2008 Runtime", ".NET Common Language Runtime", etc. What is "runtime" exactly? What is it made of? How does it interact with my code? Or maybe ...
19
votes
17answers
1k views

Is it “iterate through” or “iterate over” something?

Just thought about it. Is there a semantic distinction, or are we free to choose? EDIT I accepted @roygbivs answer, because most of the answers suggested that it is a matter of taste which one to ...
19
votes
10answers
1k views

What does I18N safe mean?

I came across a comment in some code referring to said code being "I18N safe". What does this refer to?
18
votes
4answers
1k views

The difference between a destructor and a finalizer?

Please Note: This question is about the difference in terminology between the words "destructor" and "finalizer" and their correct usage. I have merely provided examples of their use in C# and C++/CLI ...
18
votes
13answers
8k views

What does void mean in C, C++, and C#?

Looking to get the fundamentals on where the term VOID comes from and why it would be called void. The intention of the question is to assist someone who has no C experience and is suddenly looking at ...
18
votes
15answers
3k views

What is Cloud computing?

Could anybody explain in plain words how Cloud computing works? I have read the Wikipedia article, but still not sure that I understand how cloud actually works.
17
votes
53answers
2k views

What different terms mean the same thing (or don't, but people think they do)?

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, ...
16
votes
3answers
591 views

In C++, what's the difference between the terms “source file” and “translation unit”?

What's the diference between source file and translation unit?
16
votes
11answers
523 views

Armchair Linguists: 'code' vs. 'codes'--or why I write 'code' and my manager asks for 'codes'

I wanted to tap into the collective wisdom here to see if I can get some insight into one of my pet peeves, people who treat "code" as a countable noun. Let me also preface this by saying that I am ...
16
votes
5answers
1k views

What exactly do “IB” and “UB” mean?

I've seen the terms "IB" and "UB" used several times, particularly in the context of C++. I've tried googling them, but apparently those two-letter combinations see a lot of use. :P So, i ask ...
15
votes
8answers
778 views

Correct Term for “…”

Consider printf: int printf ( const char * format, ... ); What are the terms used to describe the ... and the functions that use it? I've been calling it an ellipsis, but that's like calling & ...
15
votes
15answers
2k views

What is this particular type of revelation called?

After struggling with a particular problem or bug in some part of my code for hours, without getting anywhere, I often get a sudden revelation as soon as I try to explain the problem to one of my ...
15
votes
4answers
2k views

Where is the line between DAL and ORM?

The terms are often thrown around interchangeably, and there's clearly considerable overlap, but just as often it seems implied that people see something strongly implied by saying that a system is an ...
15
votes
8answers
4k views

What is Type-safe?

What does "type-safe" mean?
15
votes
3answers
4k views

What does WISC (stack) mean?

LAMP is a well-known acronym for the software/technology bundle/stack representing Linux, Apache, MySQL, PHP. There are a few passing references on the Web that use the acronym WISC to speak of the ...
15
votes
3answers
388 views

Where does the term “escaping” originate from?

Does anyone know where the term escaping -- as in "escaping a character in a string" -- originates from? Update: Paul Tomblin's answer, although rather brief, lead to the most compelling evidence. ...
14
votes
5answers
2k views

What does “href” stand for in HTML?

I understand what the "href" attribute in the anchor tag (<a />) is for, but what does the "h" stand for?

1 2 3 4 5 18