What should you know well about your Digital Portfolio

5 阅读1分钟

What should you know well about your Digital Portfolio?

  1. What is the functionality of your program?
  2. What is the input and output of your program?
    • correct/normal output
    • incorrect/abnormal output
  3. Purpose of your procedure.
  4. Parameter(s) of your procedure.
  5. Arguments passed into the procedure when it is called.
  6. The returned value (if any) of your procedure.
  7. Selection/conditional statements (especially the first one) in your ppr.
  8. Iteration/loop statements in your ppr.
  9. What data your list stores?
  10. How you access data in the list (especially when loops are used), for what purpose?
  11. Variables in your ppr.
  12. How to modify your code to have a syntax error? What is the error?
  13. How to modify your code to have a run-time error? What is the error?
  14. How to modify your code to have a logic error? What is the error?