Questions were mostly C language problems, things that don't cause you hard times if you regularly attended programming contests. E.g. concurrency, if two threads doing ++x at the same time, what can x be after?
Anónimo
It can be 1 or 2, depending on how the threads execute, since ++x is not atomic.