How to ask for help

From Computer Science Wiki

Having problems is normal. If you do not learn how to solve your own problems, life will be difficult for you.

Step One: Why can't you write this program?[edit]

When you first realize you have a problem, follow these steps:

With gratitude to and permission from Stephen Hughes (Coe College) and Philip East (University of Northern Iowa)[1]

Type of problem What you need to do to solve it
I don't understand the problem #Requirements Gathering
I can’t describe how to get a solution #Algorithmic thinking; problem decomposition
I don’t know all the details #Real world problems require research
I can solve it by hand, but I don’t know how to code it. #New Language Features
My code isn't working the way it should #Debug your code

Requirements Gathering[edit]

Do you understand EVERY. SINGLE. WORD. in the problem? In this case the student needs to: re-examine the problem statement identifying specific problem requirements; play with the problem—draw pictures of interaction, imagine inputs & outputs, ...; seek clarification from the originator of the problem, etc.[2]

Algorithmic thinking; problem decomposition[edit]

If you don't know how to get to a solution, break the problem down into smaller parts.

A common obstacle novice programmers face arises from difficulty with problem representation—making the problem more concrete in their minds. They are not familiar with thinking abstractly in terms of variables and operations on them. The action in this case is to specify the desired outcome and begin problem decomposition from that point. Produce questions that indicate intermediate outcomes desired or information needed. Identify data needed to produce the outcomes and where that data must come from; necessary manipulations of the data; tasks that may need to be repeated or occur depending on some aspect of the problem data; etc.[3]

  • Create a diagram of the problem
  • Draw a picture of the problem
  • Explain the problem to a rubber duck (really)
  • Forget about a computer; how would you solve this with a pencil and paper?
  • Think out loud
  • Explain the problem to a friend

Real world problems require research[edit]

In this case domain knowledge is lacking. Additional research on the task is required. It may be as simple as looking up a formula; finding rules for a game; etc.[4]

For example, if you are asked to solve a problem by writing a program which converts celsius to fahrenheit you might have not memorized the formula.

New Language Features[edit]

A different kind of research is needed here. Students can look up information in their text books or online about how some task can be accomplished in the programming language being used. Alternatively, they may need to consider how the problem can be represented using numbers and string or collections of them. Or, they might be encouraged to ask the teacher![5]

Debug your code[edit]

There are different techniques you can use when debugging your code. Most of them can be distilled to a few simple techniques:

  1. Look for error or warnings in your IDE (probably the fastest way to spot silly mistakes)
  2. Read error logs (on our server in Germany, they are in /var/log/php/error.log)
  3. Walk away for a few minutes.
  4. Explain the problem to a friend
  5. Click here for a PHP debugging checklist
  6. Click here for a python debugging flowchart .
  7. Make your bug lonely! Isolate your code into small chunks to understand what might not be working
  8. Make sure every variable contains a value. In php, you can dump all variables by using the print_r(get_defined_vars()); function in your code.

References[edit]