Important Terms

  • Algorithm: A list of steps that occur in a specific order
  • Sequencing: Things are done in order
  • Flow chart: A way to write an algorithm; use arrows to tell the descision
  • Psuedo code: Fake code. It’s verbal instructions and comments on what each section is doing

Continued Mathematical Operators

  • Addition: a + b
  • Subtraction: a - b
  • Multiplication: a * b
  • Division: a / b
  • Modulus(remainder of a / b): a MOD b
  • For python MOD is %
  • Math is in order of operations