Used when a question asks for clarification regarding programming terms.

learn more… | top users | synonyms (1)

0
votes
2answers
35 views

What is the term for improving an object/class model?

How do you call it when your buddy designs a class Dinosaur, that represents at the same time prehistoric dinosaurs (animals), contemporary robotic dinosaurs (toys) and US laws regarding keeping such ...
4
votes
1answer
108 views

What does QFE_Richmond actually mean?

I am developing a VBA add-in for Excel that uses the RefEdit control. One of my testers pointed out that he couldn't use keyboard shortcuts while selecting cells. And I found the solution to this ...
0
votes
1answer
47 views

What is “Full constraint” in database theory field?

What does "full constraint" mean? Its used in http://en.wikipedia.org/wiki/Multivalued_dependency
0
votes
2answers
58 views

Trying to pass a number of bytes to read() via raw_input

I'm doing some extra credit for "Zed Shaw's Learn Python The Hard Way;" the "extra credit" for exercise 15 tells you to read through pydoc file to find other things I could do files. I was interested ...
2
votes
5answers
109 views

Finding the right terminology for a dictionary table

My concern is about what I currently call "dictionary tables", that are database tables containing a list of controlled vocabulary. Let's use an example: Suppose you have a table User containing ...
0
votes
2answers
78 views

API terminology [closed]

When discussing API's would you use the phase 'push & pull' or 'send & receive'? Both make sense to me but what is 'industry standard'?
3
votes
4answers
58 views

jQuery terminology regarding callback functions

$('#foo').click(function(){ }); Is function(){ } an anonymous function, or a self-invoking function? And what would be the difference between the two?
0
votes
3answers
38 views

Whats the correct terminology when referring to the “home” page when logged in or not

Struggling with some terminology here. Using twitter as an example, if you are logged in you have a completly different "home" page as to when you are not. How do you refer to each of those pages, so ...
1
vote
1answer
146 views

Difference between declarative and model-based specification

I've read definition of these 2 notions on wiki, but the difference is still not clear. Could someone give examples and some easy explanation?
2
votes
3answers
126 views

Python terminology: things to left of “= argv” in Learn Python the Hard Way exercise 13

Zed Shaw's "Learn Python the Hard Way" frequently asks you to "write out in English" what each and every line of a script does. I am struggling to do that with some stuff associated with the function ...
0
votes
2answers
96 views

Is “derived” in C++ the same thing as “extended” in Java?

As the title states: when I "derive" a class in CPP, that's pretty much the same thing as "extending" a class in Java, yes?
0
votes
3answers
37 views

Where can I find more information about JavaScript terms?

I have started to learn JavaScript on Codecademy recently and I was wondering where I could find more information about it. I am really confused with some of the terms that are being used like ...
4
votes
3answers
257 views

Interfaces, absolutly nothing other then pure virtual functions, or…?

Every time I read about interfaces, it is mentioned that it hasn't have any data members or implementation what so ever. But when I see code with interfaces, they have both. class IInterface { ...
0
votes
2answers
42 views

Is incorrect data type a fault?

As fault is a cause of an error, is incorrect data type (e.g. causing overflow) considered a fault?
1
vote
2answers
442 views

What's implicit method call and explicit method call?

I read about those terms in my python text book, I can't figure out the meaning by looking up the literal meaning of them, could someone explain that to me or provide me some reference? --update the ...
0
votes
2answers
1k views

Fault/error/failure in this example [closed]

Having following general definitions: fault - a cause of the error (mistake in coding) error - incorrect state that may lead to failure failure - deviation of the service from the correct service ...
4
votes
4answers
354 views

What's the difference between a Predicate and a Functor?

I just read somebody call a class with a constructor and an operator() a predicate: // Example class Foo { public: Foo(Bar); bool operator()(Baz); private: Bar bar; }; However, I ...
0
votes
3answers
148 views

What is the name of the “yield return” concept? IEnumerable, Iterator, Generator?

What exactly is the official name of the yield return concept? public IEnumerable<T> Bar() { ... yield return foo; ... } I've heard(read) it being referred to as: Iterator ...
6
votes
1answer
278 views

What is shotgun/voodoo programming?

I saw the term in in this question. I think I have an idea, but not sure if this a localized term or if wide spread meaning for the term. Shotgun would implie that he might be (over) using a tool ...
3
votes
1answer
65 views

What is considered a “View” exactly?

Just going through the starting tutorials, and while I got the app running fine, I just want to make sure I have the Android terminology right. For example, the first app tutorial I went through has ...
1
vote
1answer
482 views

What is a latent error - an example?

Quoting an document dealing with taxonomy of threats etc.: An error is detected if its presence is indicated by an error message or error signal. Errors that are present but not detected are ...
2
votes
2answers
96 views

An example of dormant fault?

I have been thinking about the dormant fault and cannot figure out an example. By definition, dormant fault is a fault (defect in the code) that does not cause error and thus do not cause a failure. ...
0
votes
1answer
75 views

As nibble for 4-bit, octet for 8-bit, is there a english word for 2-bit or 3-bit?

And, though the length of a machine word is dependent, but it's often 16-bit long. Is there english words explicitly defined for 2-bit, 3-bit, and 16-bit?
4
votes
1answer
293 views

Dictionary for vernacular of C++ language lawyers

In C++ there are terms that not mentioned or explained in most C++ books. For example: singular iterator (link) qualified name (link) dependent name deduced context shadow x/gl/pr-value (link) ...
0
votes
0answers
37 views

What does the work pack mean in data type?

I first came across pack was the String#unpack method in ruby, it is used to get the storage structure and represent in a given way. and today I read about a chapter in the book "Understand Machine ...
0
votes
1answer
89 views

Functional test vs functional testing terminology issues

I have been trying to understand these but every article, wiki etc. says something else. My understanding is that: Functional test means testing of a new functionality in isolation and against docs. ...
1
vote
1answer
159 views

Difference between binding and mapping

Is there a semantically difference in the terms binding mapping in means of binding an object model to another representation, for instance XML. Does one include only the one-way mapping or are ...
2
votes
2answers
209 views

What is the Fork & Pull Model in GitHub?

I have heard this term used for managing a code base in GitHub. What does it mean?
3
votes
4answers
132 views

Proper terminology for “dynamically allocated memory emulating multi-dimensional array”?

Some time ago I asked a question in which I was told (in the commits) that using the term "multi-dimensional array" for a construct like this: int **a; Initialized like this: a = malloc(n * ...
4
votes
5answers
764 views

terminology of Class “attribute” vs “member” vs “variable” vs “field”

It seems that developers often use these terms interchangeably when referring to a piece of data stored in an instance of a Class. Is there any technical difference between each term, or is it fine to ...
0
votes
2answers
45 views

In which cases should I keep multiple targets instead of one in a Makefile?

targetOne : header/headerAB.h source/sourceA.cpp source/sourceB.cpp source/main.cpp g++ -Wall header/headerAB.h source/sourceA.cpp source/sourceB.cpp source/main.cpp Is there a reason why I ...
1
vote
1answer
367 views

What does lowlink mean in Tarjan's SCC algorithm?

I was reading the code in the following link http://www.cosc.canterbury.ac.nz/tad.takaoka/alg/graphalg/sc.txt I kept bumping into the word "low-link", and I have no idea what it means. I know this is ...
4
votes
2answers
257 views

Why is MapReduce in CouchDB called “incremental”?

I am reading the O'Reilly CouchDB book. I am puzzled by the reduce/re-reduce/incremental-MapReduce part on page 64. Too much is left to rhetory in the O'Reilly book with the sentence If you're ...
2
votes
1answer
46 views

Is there a common name for the function f(a b) = b(a)?

The type of this function is T -> (T -> U) -> U. I believe that in Haskell, it would be something like ($ . flip). Or, from an object-oriented perspective (which is the way I've been looking ...
0
votes
1answer
41 views

What's “protocol relative” // called (i.e. instead of http:// or https://)?

You can write //google.com instead of http://google.com and https://google.com where // is relative to your current protocol. But what's the term for //?
14
votes
5answers
636 views

Does the term “monad” apply to values of types like Maybe or List, or does it instead apply only to the types themselves?

I've noticed that the word "monad" seems to be used in a somewhat inconsistent way. I've come to believe that this is because many (if not most) of the monad tutorials out there are written by folks ...
1
vote
1answer
56 views

Common terminology for types of data validation?

Are there any common terms for the difference between data validation you can do on, say, an object in and of itself, and validation that requires access to some sort of external resources? For ...
-4
votes
1answer
68 views

What is the derivation that people use PC to refer “Windows-based" operating system? [closed]

This question is about the terminology, which is the foundation for technical discussion and communication. The better we understand the terminology, the smoother we communicate. As we know, PC ...
4
votes
1answer
104 views

Compilers that compile `generic made up language X` into portable C

I'm looking for two things. The first is a terminology. What do we call compilers that compiles one language into another? Secondly, are there any compilers that compile generic made up language X ...
3
votes
2answers
212 views

The meaning of the term - Resource Acquisition Is Initialization

I know what RAII does. It is all about preventing memory leaks etc. when/if a code throws an exception. Now, I wish to understand the meaning of that smart term. ...
1
vote
1answer
32 views

What is the name of this property of a function?

Suppose that you have a function f: List a -> a such that f is associative and f(x, y, z) === f(x, f(y, z)). Is there a conventional name for this latter property? Examples of functions with this ...
0
votes
2answers
136 views

Does “fork” always mean parallel in java?

I am new to java world. Some names sound very funny for me. One of them is fork... I guess it takes the fork for food to mean parallel. Is it always the case? For example: If I see a function ...
2
votes
3answers
132 views

Is the Zend Framework really a framework or a library? [closed]

A library can be described as a collections of functionality that you can call. A framework can be described as a pre-made program where in various places you can insert your own code. The framework ...
0
votes
3answers
254 views

Functional Programming Vs Declarative Programming Vs Imperative Programming

I have been too used to Imperative Programming which is the usual way of telling the computer to perform step by step the procedure to get the final result. On the other hand, declarative programming ...
1
vote
2answers
86 views

MySQL and SQL Server terminology

In SQL Server we have: Instance->Database->Schema->Objects (tables etc) I'm confused what the MySQL equivalents are, specifically "database" and "schema". From what I can tell it's ...
0
votes
0answers
21 views

Terminology: buttons and things I see on the screen? [closed]

Is there any good name for things in the user interface that I use to manipulate what I see? E.g. button, scroll bar, radio button, button, drow down, etc... Is there any good name for all the ...
0
votes
2answers
105 views

Git fast forward is (strictly pointerwise) actually fast reverse? Terminology disambiguation for Git newbies

Git fast forward merge is FORWARD in terms of TIME. The pointer goes from older to newer commits. Example (by ffwd merge master pointer is moved from commit D to commit G): Before fast-forward ...
10
votes
8answers
961 views

What are REST resources?

What are REST resources and how do they relate to resource names and resource representations? I read a few articles on the subject, but they were too abstract and they left me more confused than I ...
2
votes
1answer
311 views

Referring to URLs in RESTful APIs

Here are a couple of standard URLs of a RESTful API. http://api.example.com/user/123 http://api.example.com/users The first retrieves a single user, the second - a collection of users (let's say ...
0
votes
1answer
57 views

String escape using 'I''m happy' - technical term for that?

If I have a String I'm happy and I like to use it in a string that uses single quotation marks ('), then I need to escape the quotation mark in the string. In most of the time this is done by doing ...

1 2 3 4 5 23