The following question deals with Object Oriented Programming in Python Pseudocode into a flowchart. The question: Design a class named Pet, which should have the following fields: name- holds name of the pet type-holds the type of animal the animal age-holds age of animal The Pet class should also have the following methods: setName: stores string value in the name field setType: stores string value in the type field setAge: stores integer value in age field getName: returns value of the name field getType: returns value of the type field getAge: returns value of the age field. Once you have created the class, design a program in flowchart form that creates an object of the class and prompts the user to enter the name, type, and age of his or her pet. This data should be stored in the object. Use the object's accessor methods to retrieve the pets name, type, and age and display this data on screen. Also, the class methods should each be illustrated as separate functions. The flowchart details need to be written as pseudocode. All I need is the flowchart with this program in it. Thank you for giving your time to answer this question. My textbook does not show me how to put it in a flowchart. If this question is lacking details you need, please leave feedback on it.
OOPs
In today's technology-driven world, computer programming skills are in high demand. The object-oriented programming (OOP) approach is very much useful while designing and maintaining software programs. Object-oriented programming (OOP) is a basic programming paradigm that almost every developer has used at some stage in their career.
Constructor
The easiest way to think of a constructor in object-oriented programming (OOP) languages is:
The following question deals with Object Oriented
The question: Design a class named Pet, which should have the following fields:
- name- holds name of the pet
- type-holds the type of animal the animal
- age-holds age of animal
The Pet class should also have the following methods:
- setName: stores string value in the name field
- setType: stores string value in the type field
- setAge: stores integer value in age field
- getName: returns value of the name field
- getType: returns value of the type field
- getAge: returns value of the age field.
Once you have created the class, design a program in flowchart form that creates an object of the class and prompts the user to enter the name, type, and age of his or her pet. This data should be stored in the object. Use the object's accessor methods to retrieve the pets name, type, and age and display this data on screen. Also, the class methods should each be illustrated as separate functions. The flowchart details need to be written as pseudocode. All I need is the flowchart with this program in it.
Thank you for giving your time to answer this question. My textbook does not show me how to put it in a flowchart. If this question is lacking details you need, please leave feedback on it.
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 11 images