Software Development IST

1234567891011121314151617181920212223
Across
  1. 3. this control structure means that the algorith or program loops over a block of code again and again
  2. 5. pretend code used to show the logic of an algorithm
  3. 7. step-by-step description of a solution to a problem
  4. 8. raw facts
  5. 9. named memory location e.g. name, country, etc.
  6. 15. this type of decision has two or more choices
  7. 17. use of past and previous information to make future decisions
  8. 18. this is also known as 'input/output' in flowcharts
  9. 19. this refers to a cohesive block or sequence of code, usually indicated by that sequence being indented the same way
  10. 20. method or way of thinking about or dividing logic in an algorithm
  11. 22. form of data e.g. integer, string etc.
  12. 23. this control structure means that the algorithm or program must make a decision
Down
  1. 1. information we do something with
  2. 2. this symbol indicates selection
  3. 4. data with meaning
  4. 6. this type of loop means the condition to repeat is AFTER the code block
  5. 10. this symbol acts like a 'please turn over' for flowcharts
  6. 11. this symbol indicates a process
  7. 12. this control structure means that processes are executed step-by-step
  8. 13. graphical way of showing an algorithm
  9. 14. this type of decision has only two choices
  10. 16. this flowchart symbol is equivalent to BEGIN or END in pseudocode
  11. 21. this type of loop means the condition to repeat is BEFORE the code block