Tagged Questions
0
votes
3answers
298 views
What to expect as a programmer in a bank? [closed]
After three phone interviews, I got this offer in a large bank as a Java programmer. I have no prior experience in financial institutions (only two years as a regular Java dev), so I'm a little bit ...
2
votes
1answer
524 views
Subtractive color mixing algorithm
Here is my problem:
I have a set of 'n' colors including the primary colors and their codes in hexadecimal. Now given another color 'x' I wonder if it's actually possible to come up with a mix ...
14
votes
4answers
869 views
Documenting mathematical logic in code
Sometimes, although not often, I have to include math logic in my code. The concepts used are mostly very simple, but the resulting code is not - a lot of variables with unclear purpose, and some ...
0
votes
1answer
288 views
I'm trying to create a visual representation of something, but I don't know what words to use, so I'll try to describe it
My project team is making a site that will use reddit style voting to track users' opinions on various issues, and use the data to create a "heat map". I say heat map in quotes because I'm not sure ...
0
votes
2answers
348 views
why is a naturally ordered set generated at 9 but not 10 digits
code found at: fatal error...Java Runtime Environment: EXCEPTION_ACCESS_VIOLATION
Presuming that the problem indicated above is due to the test app and not due specifically to method ...
4
votes
5answers
910 views
Why disallow int-to-short assignment but allow multiplication and other math?
In Java, the following code does not compile:
int val = 1;
short shortVal = val; // Incompatible types
Anyone know why Java chooses to complain about this assignment, instead of simply truncating, ...
7
votes
5answers
5k views
What skills are needed for machine learning jobs?
I posted this question on Quora, but didn't get enough responses. reposting it here.
I am a learner sitting at home and learning linear algebra, very interested on working in Machine Learning ...