🧠 Section A · Concept Check ● BEGINNER 4 × 1 = 4
🧮 Section B · Problem Solving ● INTERMEDIATE 2 + 3×3 = 11
5Classes are defined with the keyword .
6The first parameter of a method is .
🚀 Section C · Challenge ● CHALLENGE 5
✂ answer key — fold or cut before handing out
1-A 2-B 3-B 4-A | 5 class 6 self 7 = class Dog: def __init__(self, name): self.name = name 8 = d = Dog('Rex') 9 = d.name | 10 = def bark(self): print('Woof')