What is the best way comments can be used when planning out a program?

Comments can be used to plan out a high-level version of the solution before actually writing any of the detailed code.
  • Comments should only be used to write method and class descriptions and should never be used for planning.
  • Comments can be used to write out every extremely detailed step of the solution, before writing any of the high-level code.
  • Comments can be used to record all of the questions that you have about the problem statement.

There are no hints for this question