Tagged Questions
0
votes
1answer
54 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 ...
0
votes
1answer
25 views
How can “object” and “class” be defined without a cycle?
I know hat classes and objects are. But I can't figure out a good definition, that is simple (for programming beginners) and doesn't have a cycle.
Here is a definition that is simple, but has a ...
1
vote
3answers
746 views
Javascript - difference between namespace vs. closure?
In Javascript, what's the difference between a namespace and a closure? They seem very similar to me.
EDIT
Specifically, this article discusses namespaces and closures, and has sentences like
...
11
votes
1answer
14k views
What is a web service endpoint?
Firstly, believe me I googled it and couldn't find any resources helpful.
I don't understand what an endpoint is, say, my webservice is located at http://localhost:8080/foo/mywebservice and my wsdl ...
2
votes
1answer
554 views
What does “wrapping” mean in programming?
In programming literature and on internet in general I noticed frequent use of term "wrapping".
For example "to wrap library in classes" or to "wrap database". Is that official in programming or just ...
0
votes
1answer
121 views
Clarification on the definition of a (p, q)-tree? [closed]
The question is
Define a (p,q)-tree as a rooted tree where every internal node has between p and q (inclusive) children. You can assume both p and q are constants with 2 ≤ p ≤ q.
I'm not sure what ...
1
vote
2answers
248 views
Correct “base path” terminology
Consider a website installed in the 'mysite' directory:
/var/www/html/mysite/index.php
document root = /var/www/html
url = www.mysite.com/mysite/index.php
What would you call the following:
...
0
votes
1answer
976 views
What's the difference between Enterprise Architect , Software/Solution Architect and a Dev Senior? [closed]
I was discussing with some friends and I got to the conclusion that in the Software area Architects are divided into Enterprise Architect and Software/Solution Architect.
Enterprise Architect => It ...
4
votes
8answers
2k views
Easy to understand definition of “asynchronous event”?
I've encountered this term a lot, and even after Googling, still can't understand what exactly it means. Is there some easy-to-understand (ideally with examples) definition of what an asynchronous ...
4
votes
3answers
1k views
Difference between “defining” and “declaring” [duplicate]
Possible Duplicate:
What is the difference between a definition and a declaration?
I am trying to thoroughly understand "defining" and "declaring" in C.
I believe x here is defined, since ...
13
votes
8answers
904 views
What exactly is Java?
The question may at first sound silly, but maybe it isn't at all.
Java is not the Java language, most people know that, since you can program Java with lots of other langauges like Scala or Groovy
...
2
votes
3answers
760 views
What is a large scale website? [closed]
I was reading a job listing that said:
MUST have prior experience on large
scale websites
What is the definition of a large scale website? Is it defined by a certain number of pages in a site ...
30
votes
8answers
9k views
What is boilerplate code?
A coworker had never heard of this, and I couldn't provide a real definition. For me, it's always been an instance of 'I-know-it-when-I-see-it'.
Bonus question, who originated the term?
2
votes
3answers
116 views
What is the differences between the term 'object' and 'instance' in a programming language?
I cannot distinguish the two terms.
How about you?
17
votes
2answers
3k views
Explanation of BASE terminology
The BASE acronym is used to describe the properties of certain databases, usually NoSQL databases. It's often referred to as the opposite of ACID.
There are only few articles that touch upon the ...
0
votes
0answers
188 views
What is Polymorphism [duplicate]
Possible Duplicate:
What is Polymorphism?
My teacher said "Add Polymorphism to your code". What is Polymorphism?
24
votes
5answers
3k 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 ...
22
votes
4answers
1k views
13
votes
18answers
2k views
What is “over-engineering” as applied to software?
I wonder what would be a good definition of term "over-engineering" as applied to software development. The expression seems to be used a lot during software design discussions often in conjunction ...
17
votes
10answers
6k views
What is a code cave, and is there any legitimate use for one?
I encountered this word for the first time in the StackOverflow question "C# Theoretical: Write a JMP to a codecave in asm." I see that according to Wiktionary, a code cave is:
an unused block of ...
7
votes
7answers
25k views
What does the term “Tuple” Mean in Relational Databases?
Please explain what is meant by tuples in sql?Thanks..
2
votes
4answers
1k views
Static factory method OR Creation method
I am wondering about correct definition for such construction:
class A {
public static A create() {
return new A();
}
private A() {
}
}
In Effective Java (Item 1) and on wikipedia article ...
1
vote
2answers
852 views
Ruby Terminology Question: Is this a Ruby declaration, definition and assignment, all at the same time?
If I say:
x = "abc"
this seems like a declaration, definition and assignment, all at the same time, regardless of whether I have said anything about x in the program before.
Is this correct?
I'm ...
3
votes
8answers
2k views
What is “runaway query”?
In the context of SQL, what does a runaway query mean?
Does it mean any query that runs wild when it takes too long?
Or does it mean when it has some side-effects due to triggers?
5
votes
3answers
386 views
What is a Sanity Suite?
I read an article about Test Driven Datamigration (German, PDF) and they mentioned a Sanity Suite. It is not well explained and there's no definition.
Is there a definition or is it a spongy word?
100
votes
3answers
12k views
What's the difference between faking, mocking, and stubbing?
I know how I use these terms, but I'm wondering if there are accepted definitions for faking, mocking, and stubbing for unit tests? How do you define these for your tests? Describe situations where ...
99
votes
7answers
7k 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 ...
70
votes
3answers
7k 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!)

