OOP Concepts Quiz
37 Questions
0 Views

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition

Podcast

Play an AI-generated podcast conversation about this lesson

Questions and Answers

What is the primary purpose of overriding the magic method eq in a class?

  • To create a new instance of the class
  • To store data that is unique to an object
  • To print the class variable when an object is printed
  • To enable meaningful comparisons between objects (correct)
  • Which statement accurately describes class variables?

  • They are unique to each instance of the class.
  • They are shared among all instances of the class. (correct)
  • They are defined inside instance methods.
  • They can only be accessed through an instance of the class.
  • How can instance variables be accessed within a class?

  • Through the class name directly
  • Using the self keyword (correct)
  • Only after calling the __init__ method
  • By referencing the class constructor
  • If a class does not override the str method, what will typically be output when an object is printed?

    <p>The memory address of the object</p> Signup and view all the answers

    What best describes instance variables in a class?

    <p>They store data that may differ from one instance to another.</p> Signup and view all the answers

    What does encapsulation primarily focus on in object-oriented programming?

    <p>Controlling access to an object's data</p> Signup and view all the answers

    How does inheritance promote code reuse in object-oriented programming?

    <p>By allowing a class to inherit attributes and methods from another class</p> Signup and view all the answers

    Which statement describes composition in object-oriented programming?

    <p>It combines objects of other classes to create a main class.</p> Signup and view all the answers

    What distinguishes polymorphism from other object-oriented concepts?

    <p>It permits multiple classes to implement the same method uniquely.</p> Signup and view all the answers

    What is not a consequence of using inheritance in object-oriented programming?

    <p>Flexible system design</p> Signup and view all the answers

    In the context of abstraction, which of the following is true?

    <p>It hides unnecessary details and shows only relevant functionalities.</p> Signup and view all the answers

    What does the 'has a' relationship in composition imply?

    <p>One class contains objects of another class.</p> Signup and view all the answers

    Which of the following statements represents a distinction between composition and inheritance?

    <p>Composition leads to less modification complexity compared to inheritance.</p> Signup and view all the answers

    What is the primary purpose of an instance variable in a class?

    <p>To store unique values for each instance of the class</p> Signup and view all the answers

    How does a class method differ from an instance method?

    <p>Class methods are bound to the class, while instance methods are bound to an instance</p> Signup and view all the answers

    What will happen when the line 'Person.species = "Homo sapiens sapiens"' is executed?

    <p>The species variable for all instances will change to &quot;Homo sapiens sapiens&quot;</p> Signup and view all the answers

    What should be the first parameter of a class method?

    <p>cls</p> Signup and view all the answers

    If the class variable 'wheels' is changed using the class method 'change_wheels', what will be the output of 'car1.describe()' after this change?

    <p>This is a red Toyota with the new wheel count.</p> Signup and view all the answers

    Which of the following is a valid statement about instance methods and instance variables?

    <p>Instance methods can only access other instance variables from the same instance.</p> Signup and view all the answers

    What will be the output when 'print(person1.name)' is executed after 'person1.name = "Alicia"'?

    <p>Alicia</p> Signup and view all the answers

    Which of the following best describes a class variable?

    <p>A value shared by all instances of the class</p> Signup and view all the answers

    What is the primary purpose of polymorphism in object-oriented programming?

    <p>To allow different subclasses to override a method from a superclass</p> Signup and view all the answers

    Which method is called when the print() function is used on an object?

    <p><strong>str</strong></p> Signup and view all the answers

    What will happen if neither str nor repr are defined in a class?

    <p>The object's memory address will be printed</p> Signup and view all the answers

    When both str and repr methods are defined in a class, which one takes precedence during print operations?

    <p><strong>str</strong></p> Signup and view all the answers

    What does the eq method determine in a class?

    <p>How objects are compared for equality</p> Signup and view all the answers

    If a class defines only the repr method but not str, what will print(p) return?

    <p>The output from <strong>repr</strong></p> Signup and view all the answers

    Which of the following is an example of a magic method?

    <p><strong>init</strong>()</p> Signup and view all the answers

    What is the term used for special methods that start and end with double underscores?

    <p>Magic methods</p> Signup and view all the answers

    What will the output of 'print(even_squares)' be given the definition of even_squares?

    <p>[0, 4, 16, 36, 64]</p> Signup and view all the answers

    Which of the following correctly describes lambda functions?

    <p>They are limited to one line of code.</p> Signup and view all the answers

    Given the lambda expression 'add = lambda a, b: a + b', what will 'add(6, 4)' return?

    <p>10</p> Signup and view all the answers

    What distinguishes the sorted() function from the sort() method?

    <p>sorted() returns a new sorted list.</p> Signup and view all the answers

    What is the primary purpose of the map() function in Python?

    <p>To apply a function to every item in an iterable.</p> Signup and view all the answers

    In the given examples, how does 'filter(lambda x: x % 2 == 0, numbers)' process the numbers list?

    <p>It removes all odd numbers from the list.</p> Signup and view all the answers

    What would be the outcome of the line 'letters = [word[0] for word in sentence.split()]' given the sentence 'The quick brown fox'?

    <p>['T', 'q', 'b', 'f']</p> Signup and view all the answers

    Which of the following statements about hash functions is NOT true?

    <p>They always produce a random output.</p> Signup and view all the answers

    Study Notes

    Encapsulation vs. Abstraction

    • Encapsulation hides an object's internal data and controls access through methods.
    • Abstraction hides complexity, revealing only necessary parts for interaction.

    Inheritance

    • Allows a class to inherit attributes and methods from another class, promoting code reuse.
    • Creates class hierarchies; subclasses inherit and expand superclass behaviors.
    • Establishes an "is a" relationship (e.g., Dog is an Animal).

    Composition

    • A class is built using objects from other classes.
    • Provides a modular design, enabling classes to reuse functionality without inheritance.
    • Establishes a "has a" relationship (e.g., Car has an Engine).

    Inheritance vs. Composition

    • Inheritance is less flexible because subclasses inherit all superclass characteristics, potentially creating dependencies.
    • Composition is more flexible, allowing classes to be built from independent parts, enabling easier modification.

    Polymorphism

    • Objects of different classes can be treated as objects of a common superclass.
    • A method operates differently based on the calling object.
    • Involves defining methods with the same name but different parameters or implementations within a class.

    Magic Methods

    • Special methods allowing customization of how objects interact with built-in operations and functions.
    • Automatically called by Python during specific operations.
    • Examples: __str__, __repr__, __eq__

    __str__ Magic Method

    • Called by str() and print().
    • Returns a human-readable string representation of an object.

    __repr__ Magic Method

    • Called by repr().
    • Returns a more formal string representation, suitable for debugging or logging.

    __eq__ Magic Method

    • Called by ==.
    • Defines how two objects are compared for equality.

    Class vs. Instance Variables

    • Class Variables: defined within a class but outside any instance methods; shared by all instances; typically store data common to all instances.
    • Instance Variables: defined within the __init__ method or any instance method; unique to each instance; store data specific to each object.

    Class Methods

    • Bound to the class, not an instance.
    • Take the class as the first argument (cls).
    • Modify class state for all instances or provide utility functions for the class.
    • Decorated with @classmethod.

    List Comprehensions

    • Provide a concise syntax for creating new lists based on existing lists.
    • Syntax: [expression for item in iterable (if condition)]

    Lambda Anonymous Functions

    • Syntax: lambda arguments: expression
    • Define concise, nameless functions for immediate use.
    • Commonly used within other functions like map(), filter(), and sorted().

    Hash Functions

    • Map data into a fixed-size value, crucial for data structures like dictionaries and sets.
    • Properties:
      • Deterministic: Produce the same output for the same input.
      • Efficient: Quickly calculate the hash value.
      • Relatively uniform: Distribute input values evenly within the hash range.

    Studying That Suits You

    Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

    Quiz Team

    Related Documents

    Mid-Test Theory PDF

    Description

    Test your knowledge on key Object-Oriented Programming concepts such as encapsulation, abstraction, inheritance, composition, and polymorphism. This quiz will help you understand how these principles facilitate modular design and code reuse in software development.

    More Like This

    Use Quizgecko on...
    Browser
    Browser