check11.txt Edit this file and then submit it to autolab. Be sure to watch the videos very carefully, and not just skip ahead to the parts required to answer these questions! Be *very brief* in your answers! Seriously. Brief. --------------------------------------------------------------------- 1. Your full name and andrew id: 2. The full names and andrew ids of your groupmates, if you worked in a group. 3. Dates/times that you watched the videos listed in check11.html (fill this out as you go): 4. Total time this check required (fill this out when you are done): 5. OOP Part 2 5.1. What is the difference between a superclass and a subclass? 5.2. What does super().__init__(x) do? 5.3. Using the code from 1.3, add two new lines that print type(b) == object and isinstance(b, object). What are the results? Why do you think you got these results? 5.4. Give an example of a case where you might want to use a class attribute and a case where you might want to use a static method. 5.5. Section 4 demonstrates how you can access the properties of an instance with __dict__. Write a line of code that assigns a new property to an instance of A using __dict__. 5.6. What core method needed to be added to make MovingDot move? 5.7. Let's say we want to change our code to make the dots squares instead of circles. Where in the code should we make this modification? 5.8. Why is it a bad idea to check if drawnCard.suit == 1?