↳
http://www.newscientist.com/article/mg20227115.500-humans-prefer-cockiness-to-expertise.html On the other hand, people prefer cockiness to competency, so maybe the best answer is to boast about how you taught Donald Knuth everything he knows. Meno
↳
http://en.wikipedia.org/wiki/Dunning-Kruger_effect The results of the Dunning-Kruger study show that incompetent people massively overestimate their ability, while truly competent people are typically unaware that they are on the far-right side of the bell curve. Assuming that the interviewer is aware of this effect, the best strategy to play is modesty. Meno
↳
Yes, at-least by the standards of the people I worked and studied with in the past. Meno
↳
// should be OK for base 10 int atoi(char* string) { int val = 0; // check if value is negative bool negative = *string == '-'; // skip sign if(negative || *string = '+') string++; while(*string) { // accumulate digits val = 10*val + (*string - '0'); string++; } // remember to check for sign if(negative) val = -val; return val; } Meno
↳
Enrico, you didn't consider integer overflow case .. INT_MAX, INT_MIN.
↳
Can you tell me what did the director spoke to you... please I have my round in few days. Meno
↳
Branching by feature: code release from trunk; branching by release: release directly from branch Meno
↳
Allmost all version control system today support branching . It basically independent line of work that stem from one central code base. Meno
↳
I was new to Git and didnt know much about strategies with branching.
↳
Limit the number of executors used by Jenkins and run cleanup as a post build step. This can be a trial and error process and the number of executors can be changed on the fly via Groovy code. They person asking me the question did not seem to understand any of this, notrdid he have an actual answer for the problem himself. Meno
↳
There is an option in jenkins to clear workspace it has downloaded for the build, once the build is complete. There is also an option in jenkins to only keep history of last few builds. Meno
↳
North Pole
↳
Infinity.
↳
I enjoyed the job, lots of different assignments to do. Never any compelling reason to leave and go elsewhere. Meno
↳
RJ45 connector
↳
Did you undergo face to face interview?
↳
installed almost everything successfully :)
↳
First, I made sure I knew what I was talking about. I gave examples, and when pressed, stayed confident in my answer. As ever, don't bluff. Meno
↳
Take credit if the results are good; place blame on your direct reports if the results are bad. This is the Rain Bird way, no joke. Tony likes to hear answers like this. Meno