Tagged Questions

3
votes
1answer
136 views

Estimated number of C++ programmers from 1991 to now [closed]

Hi, I am writing a paper about the history of C++ and its growth (for school related purposes, a mini thesis). In the "The explosion in Growth" chapter I'd like to add a nice tabl …
5
votes
3answers
115 views

Why does COBOL have both `SECTION` and `PARAGRAPH`?

Why does COBOL have both SECTION and PARAGRAPH? Can anybody explain why the designers of COBOL created both SECTIONs and PARAGRAPHs? These have been around since the initial relea …
6
votes
4answers
97 views

Why does python -V write to the error stream?

I was writing a script to inspect python's version on my system and I've noticed that python -V writes to the error stream, while python -h, for instance, uses the standard output. …
10
votes
7answers
371 views

Why are many ports of languages to .net prefixed with ‘Iron’?

Was discussing over lunch why several ports of languages to the .net framework are prefixed with 'Iron'. e.g. IronPython IronRuby IronLisp IronScheme IronPHP Anyone out there …
5
votes
10answers
961 views

Stacks - why PUSH and POP?

I was wondering why we use the terms "push" and "pop" for adding/removing items from stacks? Is there some physical metaphor that caused those terms to be common? The only suggest …
7
votes
9answers
1k views

MySql: MyISAM vs. Inno DB!

What are the differences between MyISAM and Inno DB types in MySql?
3
votes
8answers
348 views

Is “else if” one whole or two separate keywords in Java?

I happen to read the practicing material for SCJP certification, and I just tripped over a chapter of flow control et al, where they give the impression that "else if" is a keyword …
3
votes
2answers
183 views

Stupid trivia: looking for a quote [closed]

I know this is OT here but this audience is likely to know the answer: I've heard a pair of classic quotes about usability. The first was in the early years of personal computing …
1
vote
12answers
643 views

Which is your favorite programming trivia?

... and that has helped a lot to remember some programming concept.
0
votes
4answers
91 views

.net AppSettings historical trivia

One of the previous developers where I work habitually, consistently used: ConfigurationSettings.AppSettings["Foo"].ToString() It twigs me a bit since AppSettings collection it …
1
vote
5answers
138 views

What are the valid values of the expression (uninitialized_bool ? 1 : 2)?

What is the set of valid outputs for the following, according to the standard? bool x; cout << (x ? 1 : 2); edit: unknown(google) has got it. In gcc my code was crashing b …
-2
votes
7answers
307 views

Choose one programming meme. What would it be? [closed]

Loose coupling, layering, DRY and genericism spring to mind. If you had to choose one, what would it be and why?