Used when a question asks for clarification regarding programming terms.
2
votes
1answer
40 views
Difference between RTTI and reflection in Java
My question is when how does the class info gets loaded during runtime?
When someone calls instanceof is that considered RTTI or reflection? Or it depends on the actual situation?
0
votes
2answers
94 views
C programming , need help understanding some concept
This is a very simple program I have done in C and works fine but I don't understand some terminology:
Instead of list[list_size] = strdup(file) I do:
char*test=file and ...
1
vote
1answer
41 views
Is there a term that refers to both class and instance variables and not variables defined in methods?
The correct term would refer to both $instance_variable and $class_variable and not to $method_variable.
class {
public $instance_variable;
static $class_variable;
function do_something() {
...
-3
votes
1answer
90 views
How does Winforms work? [closed]
Winforms doesn't use the Model–View–Controller paradigm like wpf. How is it designed then? Does it use another architecture? I want to understand it better.
1
vote
2answers
41 views
What's an entity in entity framework?
In the tutorials im following for learning about the entity framework, they keep mentioning entities. I often see it gets used as a synonym for the dbsets<> in the database context class, but ...
5
votes
9answers
194 views
Would you call it level or depth?
Which word would you pick to label the absolute stack level of an element—in other words its degree of nesting relative to the root/document element?
Between level and depth which one would you ...
37
votes
4answers
4k views
What constitutes a fold for types other than list?
Consider a single-linked list. It looks something like
data List x = Node x (List x) | End
It is natural to define a folding function such as
reduce :: (x -> y -> y) -> y -> List x ...
-7
votes
2answers
69 views
short term for a class which instances are only used for variable storage? [closed]
Something like a structure, how do you call that? I'm sure there is a shorter term then "class which instances are only used for variable storage"
2
votes
1answer
51 views
In Windows what is a “runtime image”? [closed]
I am reading the book "MySQL 5.0 Certification Study Guide".
On page 362 it states:
• mysql-debug contains support for debugging. Normally, you don't choose this server for production use ...
2
votes
1answer
35 views
What is the inverse notion of “refinement”
In the world of generic programing the notion of refinement is very common. In particular given a concept C1, then we say that a concept C2 refines C1 if it provides all the functionalities of C1 and ...
-1
votes
1answer
56 views
What's the difference between programmer, coder and developer? [closed]
I want to know what is the difference between programmer, coder and developer.
I really got confused to choose one of them as a job title for me.
Would you PLEASE help me understand the difference ...
6
votes
5answers
225 views
What is the difference between iteration and traversing?
The past few weeks I have been learning about iterators. I still do not understand the main difference between iterating through a link list and traversing through one. I know that traversing means to ...
6
votes
1answer
74 views
Is there a name for a tree like graph, where nodes can have multiple parents, but still from only 1 level above
Is there a name for a tree like graph, where nodes can have multiple parents, but still from only 1 level above.
Therefore the graph is directed and acyclic, but it has other constraints as well.
0
votes
3answers
31 views
What is the general term for cruft left over after a build?
When I run some commands, like certain scripts or Makefiles, a number of files and folders are generated along the way to the final output. (For the moment, let's not go into whether or not the script ...
2
votes
2answers
37 views
What term is used to denote the distance between two types in an inheritance hierarchy?
I have an extension method for calculating the distance between a base type and a derived type, such that the same type would have return a value of 0 and a direct subtype would return a value of 1. ...
4
votes
2answers
72 views
Why is an Arduino program called a sketch?
I've recently began Arduino development, and while explaining it to friends and co-workers, one of the questions I've received that I have no answer for and also would like to know is why is the ...
0
votes
0answers
6 views
Term for the state of optional variable when its value differs from default?
Let's say I have an optional variable called foo. It's default value is bar. Let's be in a state when we haven't modified the value yet since initialization.
Is there a terminology for saying that ...
0
votes
1answer
46 views
Correct compiler terminology
I'm coding a compiler that consists of four separate programs: the preprocessor, the to-assembly compiler, the assembler (NASM) and the linker (ld).
When writing about it, I have some issues ...
1
vote
4answers
77 views
How to understand the meaning of “Contract”
I always see the word contract and it seems to have different meanings or at least it is how it looks to me (I am not a native English speaker) so when I see the word "contract" I cannot be sure what ...
-1
votes
2answers
58 views
How is called this type of web vulnerability?
In a hacking challenge I've found something like the following:
<input type="hidden" value="1500" name="price">
This challenge makes you understand that if you are smart enough to change the ...
0
votes
0answers
23 views
Term for “flag” which is set by one and consumed by another entity?
is there a special term to emphasise the semantic meaning of a boolean flag which is set by one entity and consumed by another?
"Flag" as such can be all kind of usage, so it can be set and reset by ...
0
votes
0answers
18 views
Accepted terminology for a set of three images, beginning, middle, and end [closed]
Hopefully, this question will fall within the bounds of an acceptable question for SO, because this question is asking about a very specific problem that I'm actually having regarding programming that ...
1
vote
0answers
23 views
Is there a more formal definition of filesystem?
Wikipedia says about file systems:
a filesystem is a type of data store which can be
used to store, retrieve and update a set of files. The term could
refer to the abstract data structures ...
0
votes
1answer
49 views
Unit tests and Integration tests definitions & Maven
How do you define border between Unit testing and Integration testing?
Where is it exactly? In what part is layers testing ?
Related
Terminology for integration tests which test each layer and the ...
1
vote
1answer
56 views
Terminology shift with maven-release-plugin
Usually developers say that we make build, than deploy to servers in different environments (integration, test, production). Deployment to production environment is release.
Now with Maven and ...
1
vote
1answer
26 views
Terminology for integration tests which test each layer and the layers below it (Jenga tests)
In my app, I've developed an automated testing strategy where each layer has some unit tests and some integration tests.
It seems to me that "integration test" is a fairly sweeping term, which is ...
4
votes
4answers
97 views
Is there a term which interchangeably describes either an Interface or an Abstract Class in C#?
What is the correct term to describe a type which may be either an interface or an abstract, but is not a concrete type?
This question arises as a result of wiring up StructureMap as an ...
0
votes
3answers
73 views
Why is Java's “protected” less protected than default? [closed]
In Java, we have four access specifiers: public, protected, package-private (default), and private. This is well known and not an issue for me.
My question is with regard to the naming of protected. ...
0
votes
1answer
23 views
Original and concise class names?
How can I come up with original class names that avoid generic style words such as BlahManager ?
Also how to avoid long class names ? Here's an example from Java:
...
0
votes
2answers
78 views
What is the difference between tree depth and diameter?
Hi Im little confused with the difference between the depth and the diameter of a tree.Sorry if Its already asked but I couldn't find it.
1
vote
1answer
58 views
Technical terminology - URL Paths types: Absolute, relative, and
I understand that an absolute path is of the type:
http://www.example.com/thisdir/4/5uy3/2/s.js
and also, that relative paths are of the type:
5uy3/2/s.js (in relation to directory "4")
but ...
0
votes
0answers
23 views
Is there a name for this synchronization primitive?
Suppose I have a synchronization primitive with the following features:
It has a Count property which is initially zero.
It has a Wait method. When invoked on an object with Count zero, it returns ...
0
votes
1answer
49 views
Java OO — An object that provides a new way to interact with other objects?
Let's say I have a List<Apple> object, and each apple has a color.
I implement another object that is constructed with its input the list of apple objects. I might implement functionality on ...
0
votes
0answers
44 views
C “backslash encode/decode” special characters like quote, tab, escape, newline, etc [duplicate]
I would like to take a string like "Bob[TAB]John[TAB]Harry "The Hammer" Jones" and "backslash" encode the string as such:
"Bob\tJohn\tHarry \"The Hammer\" Jones"
So I can read/write single line ...
0
votes
2answers
9 views
What is the proper term for an ordering where the order of items is concretely determined?
For example, if I want to sort these rows:
A | 1
A | 2
B | 0
and I use only the first column, there is no concrete order for the first two rows. If I use a secondary sort key on column two, then I ...
2
votes
1answer
63 views
What is the term for full-fledged packages like PyQt and PySide?
I learned about them for GUIs, and they are indeed my favourite Python option for such purposes. However, they are so much more than that. They implement network sockets, media management, regular ...
0
votes
3answers
46 views
What is the term used to describe a variable that refers to another variable?
When a variable is declared, there is one "step" between the variable and its value.
x = 'hi'
Depending on the complexity of the code, x may be referred to by other variables and arguments. This ...
3
votes
1answer
73 views
Correct terminology for Array functions on own line
I'm having a hard time trying to find the right term for a function like:
var array = [1, 2, 3];
array.pop();
return array; // returns [1, 2];
And:
var array = [1, 2, 3].pop();
return array; // ...
1
vote
2answers
58 views
Are indented code under an `if` and a `def` both called blocks in Python?
In Python, keywords like def, class introduce a new scope. Others, like if or for do not - they use the scope of the enclosing code. (The scope resolution is explained in Short Description of Python ...
0
votes
0answers
44 views
Standard term for non-negative number
What is the most standard non-technical term for a non-negative floating point number?
I.e. floating point number that can have values of 0, 0.5, 1.0, 2.0, 2.1, etc. but not negative values.
Is ...
2
votes
1answer
122 views
Any difference between Lazy evaluation and Short-circuit evaluation?
From Wikipedia:
Lazy evaluation is:
In programming language theory, lazy evaluation or call-by-need is
an evaluation strategy which delays the evaluation of an expression
until its value is ...
1
vote
2answers
19 views
How do I differentiate between an enum's name from enum index items?
I'm having a terrible time communicating with my teammates when I talk about enums. I can never properly differentiate what part of the enum I'm talking about.
enum PowerLevel {
Low,
Medium,
...
0
votes
5answers
58 views
Is there a name for expressions that return what they are, instead of a reference?
I've noticed that strings, numbers, bool and nil data seem to be straight forward to work with. But when it comes to functions, tables, etc. you get a reference instead of the actual object.
Is ...
4
votes
5answers
102 views
Why does GitHub call foreign submissions, a “Pull Request”?
I'm curious why GitHub calls submissions to merge, "Pull requests."
From my understanding, git pull will pull all changes, from a remote repository, into a current working branch. Then merge those ...
0
votes
1answer
28 views
Do “SO” and “RO” postfixes have a standard meaning, as in “EnvelopeSO”?
I'm working with a communication layer and there are objects called "*EnvelopeSO" and "*EnvelopeRO".
I've tried to find them at wikipedia, search engines, here, but they are hard to search for.
Are ...
1
vote
1answer
61 views
Is an abstract ViewModel considered a Model when it is inherited?
If I have an abstract ViewModel (VM-A), which is inherited by child ViewModels (VM-B,C,D), is that ViewModel (VM-A) considered a model of ViewModels?
Example: VM-A is a "Shape" class contains x ...
1
vote
2answers
109 views
Lock/monitor/critical section extension?
How is it called when critical section is extended in subclass or caller function?
Suppose class A has synchronized methods m1 and m2
class A {
public synchronized void m1() {}
public ...
6
votes
3answers
172 views
What is the proper terminology for each type of an identifier?
Take the following code:
IFoo foo = new FooImplementation();
The identifier foo has two types:
IFoo - This is the type the compiler will enforce. I will only be able to call methods that are ...
0
votes
1answer
136 views
What would you call a fact table with effective from date and to date?
A slightly silly question in some ways as this is just about terminology.
If I have a fact table that records facts that change overtime with respect to the dimensions the fact belongs to, what would ...
3
votes
2answers
54 views
What is the jargon for REST messages (ie request body and response body)
I know this probably a dumb question but I know that the REST urls one hits in REST parlance are called "resources".
My question is what should one call the response/request bodies. Should they be ...


