🧠 Section A · Concept Check ● BEGINNER 4 × 1 = 4
🧮 Section B · Problem Solving ● INTERMEDIATE 2 + 3×3 = 11
5Define with the keyword .
6Values are sent back with .
🚀 Section C · Challenge ● CHALLENGE 5
✂ answer key — fold or cut before handing out
1-B 2-B 3-B 4-C | 5 def 6 return 7 = def square(n): return n * n 8 = 16 9 = def greet(name): print(f'Hello {name}') | 10 = print shows output; return passes a value to the caller