Computer Science, asked by parmanbhatia, 8 months ago

Write down the benefits of step wise thinking?

Answers

Answered by Manjulathanu
0

Answer:

top down stepwise refinement" as a problem-solving technique. This can help a person "think through" an algorithm by doing the following:

Start with the initial problem statement

Break it into a few general steps

Take each "step", and break it further into more detailed steps

Keep repeating the process on each "step", until you get a breakdown that is pretty specific, and can be written more or less in pseudocode

Translate the pseudocode into real code.

Similar questions