LinkedIn Python Badge Q1: What is an abstract class? An abstract class exists only so that other "concrete" classes can inherit from the abstract class. Q2. What happens when you use the build-in function any( ) on a list? The any( ) function returns True if any item in the list evaluates to True. Otherwise, it returns False. if any([True, False, False, False]) == True: print('Yes, there is True') >>> Yes, there is True Q3. What data structure does a binary tree degenerate to if it isn't balanced properly? linked List Q4. What statement about static methods is true? Static methods serve mostly as utility methods or helper methods, since they can't access or modify a class's state. Q5. What are attributes? Attributes are a way to hold data or describe a state for a class or an instance of a class. Q6. What is the term to describe this code? count, fruit, price = (2, 'apple', 3.5) tuple unpacking Q7. What built-in list method would you use ...