Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Represent people by a class hierarchy. Classes are often used to model objects in the real world. We may represent the data about a person in a program by a class Person, containing the person's name, address, phone number, date of birth, and nationality. A method __str__ may print the person's data. Implement such a class Person. A worker is a person with a job. In a program, a worker is naturally represented as class Worker derived from class Person, because a worker is a person, i.e., we have an is-a relationship. Class Worker extends class Person with additional data, say name of company, company address, and job phone number. The print functionality must be modified accordingly. Implement this Worker class. A scientist is a special kind of a worker. Class Scientist may therefore be derived from class Worker. Add data about the scientific discipline (physics, chemistry, mathematics, computer science,...). One may also add the type of scientist: theoretical, experimental, or computational. The value of such a type attribute should not be restricted to just one category, since a scientist may be classified as, e.g., both experimental and computational (i.e., you can represent the value as a list or tuple). Implement class Scientist. Researcher, postdoc, and professor are special cases of a scientist. One can either create classes for these job positions, or one may add an attribute (position) for this information in class Scientist. We adopt the former strategy. When, e.g., a researcher is represented by a class Researcher, no extra data or methods are needed. In Python we can create such an "empty" class by writing pass (the empty statement) as the class body: It is a continuous debate in computer science whether multiple inheritance is a good idea or not. One obvious problem \(^{11}\) in the present example is that class Professor inherits two names, one via Teacher and one via Scientist (both these classes inherit from Person). Neither of the two widely used languages Java and C# allow multiple inheritance. Nor in this book will we persue the idea of multiple inheritance further. Name of program file: Person.py.

Short Answer

Expert verified
Create a class hierarchy: `Person`, `Worker`, `Scientist`, with specific classes `Researcher`, `Postdoc`, and `Professor`. Use inheritance properly and `pass` for empty classes.

Step by step solution

01

Define the Person Class

Create a class named `Person` that will include attributes to store basic personal details such as name, address, phone number, date of birth, and nationality. Additionally, define the `__str__` method that outputs these details in a string format.
02

Extend Person to Create Worker Class

Derive a new class `Worker` from the `Person` class. Add attributes specific to a worker such as company name, company address, and job phone number. Override the `__str__` method to include the new worker-specific details while also displaying the inherited personal details.
03

Extend Worker to Create Scientist Class

Derive a new class `Scientist` from the `Worker` class. Add attributes for scientific discipline and type of scientist, allowing the type to be specified as a list or tuple. Override the `__str__` method to include these new attributes, along with those inherited from `Worker` and `Person`.
04

Create Specific Classes for Researcher, Postdoc, and Professor

Define classes `Researcher`, `Postdoc`, and `Professor`, each inheriting from the `Scientist` class. Since no new attributes or methods are required, use the `pass` statement to create these classes.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

Key Concepts

These are the key concepts you need to understand to accurately answer the question.

Class Inheritance
The concept of "Class Inheritance" is a cornerstone of Object-Oriented Programming (OOP). Inheritance allows a class, known as the "child" or "derived" class, to inherit properties and behaviors (attributes and methods) from another class, referred to as the "parent" or "base" class. This feature promotes code reusability and logical hierarchy in program design.
In Python, inheritance is implemented by defining a new class that specifies an existing class in parentheses. For instance, if we have a `Person` class, a `Worker` class can be derived using:
  • `class Worker(Person):`
With this single line, `Worker` inherits all the features of `Person`. It can also introduce additional attributes and methods or modify the inherited ones. In our exercise solution, this is demonstrated by the `Worker` class adding job-related details and modifying how personal data is printed to include these new details.
Class inheritance especially shines when the "is-a" relationship is evident. For example, a "Worker is-a Person," making `Worker` a logical child of `Person`. Such relationships create clean and maintainable code structures.
Python Programming
Python Programming provides a user-friendly way to implement Object-Oriented concepts like class inheritance and class hierarchies. Python classes are easy to create using the `class` keyword, and features like inheritance are straightforward to use.
The Python `__str__` method, which we use here, is a special method that defines a class's string representation. In a way, it acts like the `toString()` method available in other programming languages. When we print an object of the class, the `__str__` method is called automatically, allowing us to customize what gets printed. For example, our `Person` class uses `__str__` to output personal details. The `Worker` class, which extends `Person`, overrides this method to include additional details, such as company information.
Python's flexibility lies in its ability to use dynamic types, enabling attributes like the type of scientist in a class `Scientist` to be defined as a list or tuple. This way, we can store multiple types of scientific expertise in one attribute, showcasing Python's dynamic and yet robust approach to data handling.
Class Hierarchies
Class Hierarchies in programming help us create organized and logical structures for representing real-world objects and their relationships. Hierarchies start with a base or parent class and extend down to more specific subclasses.
In our exercise, we begin with a `Person` class, which forms the base of the hierarchy. As we move down, the `Worker` class extends `Person`, while `Scientist` builds upon `Worker`. Each step down the hierarchy represents a refinement and specialization of the class. For example, a `Scientist` is a kind of `Worker`, who is originally a `Person`. The hierarchy allows us to manage both common and specific data effectively.
Further, we see more specific classes like `Researcher`, `Postdoc`, and `Professor` derived from `Scientist`. These classes do not introduce new attributes but demonstrate how to extend a hierarchy when specific differentiation is needed, often for clarity or future expansion. The empty use of these classes with a `pass` statement in Python signifies their readiness to expand while maintaining the existing hierarchical structure.

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Make a calculus calculator class. Given a function \(f(x)\) defined on a domain \([a, b]\), the purpose of many mathematical exercises is to sketch the function curve \(y=f(x)\) compute the derivative \(f^{\prime}(x)\), find local and global extreme points, and compute the integral \(\int_{a}^{b} f(x) d x .\) Make a class CalculusCalculator which can perform all these actions for any function \(f(x)\) using numerical differentiation and integration, and the method explained in Exercise \(7.36\) or \(7.37\) for finding extrema. Here is an interactive session with the class where we analyze \(f(x)=\) \(x^{2} e^{-0.2 x} \sin (2 \pi x)\) on \([0,6]\) with a grid (set of \(x\) coordinates) of 700 points: Design the class such that the above session can be carried out. Hint: Use classes from the Diff and Integrator hierarchies (Chapters \(9.2\) and \(9.3\) ) for numerical differentiation and integration (with, e.g., Central2 and Trapezoidal as default methods for differentiation and integration). The method set_differentiation_method takes a subclass name in the Diff hierarchy as argument, and makes an attribute df that holds a subclass instance for computing derivatives. With set_integration_method we can similarily set the integration method as a subclass name in the Integrator hierarchy, and then compute the integral \(\int_{a}^{b} f(x) d x\) and store the value in the attribute integral. The extreme_points method performs a print on a MinMax instance, which is stored as an attribute in the calculator class. Name of program file: CalculusCalculator.py.

Make super- and subclass for a point. A point \((x, y)\) in the plane can be represented by a class: We can extend the Point class to also contain the representation of the point in polar coordinates. To this end, create a subclass PolarPoint whose constructor takes the polar representation of a point, \((r, \theta)\), as arguments. Store \(r\) and \(\theta\) as attributes and call the superclass constructor with the corresponding \(x\) and \(y\) values (recall the relations \(x=r \cos \theta\) and \(y=r \sin \theta\) between Cartesian and polar coordinates). Add a _-str__- method in class PolarPoint which prints out \(r, \theta, x\), and \(y\). Verify the implementation by initializing three points and printing these points. Name of program file: PolarPoint.py. 0

Make circle a subclass of an ellipse. Chapter \(7.2 .3\) presents class Circle. Make a similar class Ellipse for representing an ellipse. Then create a new class Circle that is a subclass of Ellipse. Name of program file: Ellipse_Circle.py.

Compute convergence rates of numerical integration methods. Most numerical methods have a discretization parameter, call it \(n\), such that if \(n\) increases (or decreases), the method performs better. Often, the relation between the error in the numerical approximation (compared with the exact analytical result) can be written as and $$ E_{i}=C n_{i}^{r} $$ Divide the first equation by the second to eliminate \(C\), and then take the logarithm to solve for \(r\) : $$ r=\frac{\ln \left(E_{i-1} / E_{i}\right)}{\ln \left(n_{i-1} / n_{i}\right)} $$ We can compute \(r\) for all pairs of two successive experiments. Usually, the "last \(r^{n}\), corresponding to \(i=N\) in the formula above, is the "best" \(r\) value \(^{12}\). Knowing \(r\), we can compute \(C\) as \(E_{N} n_{N}^{-r}\). Having stored the \(n_{i}\) and \(E_{i}\) values in two lists \(n\) and \(E\), the following code snippet computes \(r\) and \(C\) : from scitools. convergencerate import convergence_rate \(\mathrm{C}, \mathrm{r}=\) convergence_rate \((\mathrm{n}, \mathrm{E})\) Construct a test problem for integration where you know the analytical result of the integral. Run different numerical methods (the Midpoint method, the Trapezoidal method, Simpson's method, Monte Carlo integration) with the number of evaluation points \(n=2^{k}+1\) for \(k=2, \ldots, 11\), compute corresponding errors, and use the code snippet above to compute the \(r\) value for the different methods in questions. The higher the absolute error of \(r\) is, the faster the method converges to the exact result as \(n\) increases, and the better the method is. Which is the best and which is the worst method? Let the program file import methods from the integrate module and the module with the Monte Carlo integration method from Exercise 9.14. Name of program file: integrators_convergence.py. $$ E=C n^{r} $$ where \(E\) is the error, and \(C\) and \(r\) are constants. Suppose you have performed an experiment with a numerical method using discretization parameters \(n_{0}, n_{1}, \ldots, n_{N}\). You have computed the corresponding errors \(E_{0}, E_{1}, \ldots, E_{N}\) in a test problem with an analytical solution. One way to estimate \(r\) goes as follows. For two successive experiments we have

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free