On this question, what would be the right answer?
How many statements are there in the code below? Warning: This is a tricky one. The code is valid.
{ println("Step 2"); { println("Step 2a"); { println("Step 2a.1"); { } } } } a.1 b.3 c.4 d.7 e.None of the above
I believe it's C because a block is a statement. However it can be D as well. Which one is correct?