A good answer might be:Yes. |
Using Several Lines per StatementYou can use several lines for a statement. Anywhere a space character is OK you can split a statement. This means you can't split a statement in the middle of a name, nor between the quote marks of a string literal, nor in the middle of a numeric literal. Here is the program with some statements correctly put on two lines:
Although correct, the division of statements is confusing to humans. It is also true that anywhere one space is OK any number of spaces are OK. Here is a better style for the program:
It is a good idea to indent the second half of a split statement further than the start of the statement. |
QUESTION 9:Is the following correct?
Click Here after you have answered the question
|