Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 712 Bytes

File metadata and controls

28 lines (22 loc) · 712 Bytes

Week 6 Milestone Rubric (Foundations)

Student can:

  1. Explain variables (in simple words)
  • 0 = cannot explain
  • 1 = partial ("it stores something")
  • 2 = clear ("it stores a value like score or lives")
  1. Explain a loop
  • 0 = cannot explain
  • 1 = partial ("it repeats")
  • 2 = clear ("it repeats N times; we use it for rounds")
  1. Explain a condition (if/else)
  • 0 = cannot explain
  • 1 = partial ("it chooses")
  • 2 = clear ("it checks a rule and chooses what happens")
  1. Explain a function
  • 0 = cannot explain
  • 1 = partial ("a block of code")
  • 2 = clear ("a named block we can reuse; can take inputs")
  1. Make a small change and debug
  • 0 = needs full help
  • 1 = needs hints
  • 2 = mostly independent