Which of the following is true about if statements?

a. if the condition is not a boolean expression, the program returns 0.
b. if the condition evaluates as false, then the block is skipped.
c. In python, an if statement begins with "if", followed by the block, and ends with the condition.
d. if the block isn’t indented, python can still interpret it properly.