What does statically typed language mean?
As the compiler reads your code and translates it to binary, it has to know the data type.
What is the syntax for a do/while loop?
do { [prog st] } while (boolean expression)
When are global variables allocated?
At compile time
Where are global variables allocated?
The data section in memory
How do the increment/decrement forms differ?
In ++x (prefix) the variable is modified, then used in the expression. In x++ (postfix), first the variable is used in the expression, then it is modified