Answer: A. True
For example, the code
if(x > 5)
{
y = 10;
}
will check to see if x is larger than 5. If so, then it assigns the number 10 to the variable y. If x is not larger than 5, then everything in the curly braces is not executed and it skips over this section.