The trivia tag has no wiki summary.
-3
votes
0answers
39 views
Free or Cheap Movie Trivia API [closed]
I am looking for a free/cheap movie trivia API? Not movie information, only movie trivia. Do you have any suggestions or leads to where I can tap into something like this?
1
vote
2answers
66 views
What do you call an instance of a struct?
This is purely out of interest. I searched around a bit, knowing that instances of classes are called objects, but I couldn't find what the correct word is for an instance of a struct in C, C++, C#, ...
1
vote
2answers
253 views
CountDownTimer trivia game score - Android (java)
I have a trivia game that displays 10 questions and they each have a 10 second timer. I have 2 problems that do not function correctly.
Firstly, If the timer runs out on a question, it displays ...
1
vote
1answer
60 views
Is javadoc html or xhtml?
I was typing some Javadoc into IntelliJ this morning and used a <br> tag, which IntelliJ autocompleted to <br>|</br> in its usual helpful way... but I'm under the impression that ...
0
votes
1answer
55 views
bestbefore puzzle test case [closed]
I am trying to solve the following puzzle:
http://www.spotify.com/fr/jobs/tech/best-before/
but the grader tells me my answer is not correct.
The problem consists in reading a date in input and give ...
0
votes
1answer
53 views
how to place answers to random options?
Hello guys I am a newbie in this whole android world.I started with my trivia application but I cannot figure something here how do I randomize the options that the user is gonna choose I mean I will ...
0
votes
1answer
825 views
Public domain trivia database for game? [closed]
A friend of mine is making a trivia game in C++, and I am asking on his behalf if there are any public domain trivia databases? It should preferably be in a csv style format so that it is easy to ...
1
vote
2answers
164 views
What is the best way to access the data for trivia game
I'm basically creating a trivia type of game. Where you have a question and after you answer you press a button to see if you are right or not. Then you move on to the next question.
I've got one ...
5
votes
7answers
315 views
C# trivia game: What to do in case of a tie?
I'm currently working on a trivia game. I have written a Team class, a Question class and a Round class.
This is my Team class (I wont post properties, constructors, and methods since they are not ...
1
vote
2answers
118 views
Creating a Ruby on Rails application initialization trivia
I am preparing a trivia for my teammates, to have some fun and refresh knowledge about Rails application initialization process :)
I need to plant a "pig" somewhere, along the way in a Rails ...
6
votes
2answers
351 views
Why does the Scala library only defines tuples up to Tuple22?
I'm curious if anyone knows why the Scala library stops at 22 with its tuple types (Tuple22) ?
Does the mysterious number '22' have a special hidden meaning? Is this an internal joke of some kind?
...
1
vote
2answers
275 views
Debugging Trivia game in Python
Creating function to print question, add choices to a list.
def print_et_list ():
answer_list = []
function = open ("modStory.txt","r")
#Question
question = function.readline()
...
2
votes
6answers
956 views
Hello World In C# without semicolon
Is it possible to write Hello World like in C without semicolon;?
In C:
if(printf("Hello World!")) //prints Hello World
{
}
In C#:
//do stuff
12
votes
5answers
3k views
Why is the default terminal width 80 characters?
80 seems to be the default in many different environments and I'm looking for a technical or historical reason. It is common knowledge that lines of code shouldn't exceed 80 characters, but I'm hard ...
3
votes
1answer
101 views
PowerShell extension and profile folder
Wikipedia says that PowerShell 2.0 was distributed with Windows 7; so as I use Windows 7, I'm obviously using that version.
But that raises two questions:
Why is PowerShell's folder ...
0
votes
1answer
149 views
What programming language would James Bond have programmed in? [closed]
Until the recent Bond movies James preferred British made gadgets.
The classic for me is from "You Only Live Twice", as there is real British gyro-copter nicknamed Little Nellie which (in the movie) ...
5
votes
3answers
157 views
Is there an HTML tag that can be used anywhere in the DOM?
This sounds a bit like a trivia question, but it would help me figure out my options solving an actual problem. Is there an HTML tag that can be used anywhere in the DOM? (something to be used as a ...
4
votes
3answers
315 views
Maximum number of fields for a C++ object
This answer states that in Java the maximum number of fields an object may have is 65536.
Is there any such limit imposed on an object in C++?
8
votes
1answer
239 views
.NET: What is the object header used for?
In .NET there are 8 bytes of overhead for each object. 4 bytes are a pointer to the object's type. What are the other 4 bytes, known as the object header, used for?
2
votes
5answers
274 views
What was the first Hello World Application written in? [duplicate]
Possible Duplicate:
Where does ‘Hello world’ come from?
What was the first Hello World application written in?
0
votes
3answers
457 views
Detect ASP.NET version from output HTML?
Ok, this is probably a trivial thing to know - hence the trivia tag! - but does anyone know of any difference in final output that would give away the version of the runtime that was used?
In other ...
9
votes
7answers
6k 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 release of COBOL so I ...
6
votes
4answers
251 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. Is there a good ...
37
votes
8answers
3k 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 know?
(language ...
5
votes
8answers
551 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 on its own. I have ...
1
vote
4answers
147 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 items are already ...
1
vote
5answers
191 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 because of ...
11
votes
11answers
3k 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 suggestion I have is ...
0
votes
12answers
2k views
Which is your favorite programming trivia? [closed]
... and that has helped a lot to remember some programming concept.
30
votes
11answers
6k views
