Computer Science - Object-Oriented Programming - Polymorphism - Poly or Not?
Students categorize code examples as 'Polymorphism' or 'Not Polymorphism'. 12 examples. POLYMORPHISM: 'dog.speak() and cat.speak() produce different sounds' ✓. 'for shape in shapes: shape.draw()' ✓. 'len("hello") and len([1,2,3]) both work' ✓. 'print(1+2) vs print("a"+"b") - + does different things'