Answer is B
Hope that helped ^^
Answer: from what
Explanation:
// A single if statement
if (boolean expression)
Do statement;
// Or a single if with {}
{
}
// A block if statement: { } required
Do Statement1;
Do Statement2;
...
Do StatementN;
Note
It is B
Hope this helps