16.8 LAB: Instrument information (derived classes) Given the base class Instrument, define a derived class String Instrument for string instruments with a constructor that initializes the attributes of the Instrument class as well as new attributes of the following types • integer to store the number of strings • integer to store the number of frets • boolean to store whether the instrument is bowed Ex. If the input is: Drums Zildjian 2015 2500 Guitar Gibson 2002 1200 6 19 False the output is: Instrument Information: Name: Drums Manufacturer: Zildjian Year built: 2015 Cost: 2500 Instrument Information: Name: Guitar Manufacturer: Gibson Year built: 2002 Cost: 1200 Number of strings: 6 Number of frets: 19 Is bowed: False
16.8 LAB: Instrument information (derived classes) Given the base class Instrument, define a derived class String Instrument for string instruments with a constructor that initializes the attributes of the Instrument class as well as new attributes of the following types • integer to store the number of strings • integer to store the number of frets • boolean to store whether the instrument is bowed Ex. If the input is: Drums Zildjian 2015 2500 Guitar Gibson 2002 1200 6 19 False the output is: Instrument Information: Name: Drums Manufacturer: Zildjian Year built: 2015 Cost: 2500 Instrument Information: Name: Guitar Manufacturer: Gibson Year built: 2002 Cost: 1200 Number of strings: 6 Number of frets: 19 Is bowed: False
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Concept explainers
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:
Question
I need boolean
![16.8 LAB: Instrument information (derived classes)
Given the base class Instrument, define a derived class String Instrument for string instruments with a constructor that initializes
the attributes of the Instrument class as well as new attributes of the following types
●
●
integer to store the number of strings
integer to store the number of frets
boolean to store whether the instrument is bowed
•
Ex. If the input is:
Drums
Zildjian
2015
2500
Guitar
Gibson
2002
1200
6
19
False
the output is:
Instrument Information:
Name: Drums
Manufacturer: Zildjian
Year built: 2015
Cost: 2500
Instrument Information:
Name: Guitar
Manufacturer: Gibson
Year built: 2002
Cost: 1200
Number of strings: 6
Number of frets: 19
Is bowed: False](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fa332979b-3709-48a2-942a-205e2ae2d053%2Fbe06acd8-f3ab-41c3-af90-e63769e5f3dc%2F1edpbpe_processed.png&w=3840&q=75)
Transcribed Image Text:16.8 LAB: Instrument information (derived classes)
Given the base class Instrument, define a derived class String Instrument for string instruments with a constructor that initializes
the attributes of the Instrument class as well as new attributes of the following types
●
●
integer to store the number of strings
integer to store the number of frets
boolean to store whether the instrument is bowed
•
Ex. If the input is:
Drums
Zildjian
2015
2500
Guitar
Gibson
2002
1200
6
19
False
the output is:
Instrument Information:
Name: Drums
Manufacturer: Zildjian
Year built: 2015
Cost: 2500
Instrument Information:
Name: Guitar
Manufacturer: Gibson
Year built: 2002
Cost: 1200
Number of strings: 6
Number of frets: 19
Is bowed: False
![1 class Instrument:
4
3
4
3
1
5
6 class String Instrument (Instrument):
def __init__(self, name, manufacturer, year_built, cost, num_strings, num_frets):
super(). __init__(name, manufacturer, year_built, cost)
3
def __init__(self, name, manufacturer, year_built, cost):
self.name = name
self.manufacturer manufacturer
self.year_built year_built
self.cost = cost
4
def print_info(self):
3 if __name__
4
3
print('Instrument Information: ')
print(' Name:', self.name)
print(' Manufacturer:', self.manufacturer)
print(' Year built:', self.year_built)
print(' Cost:', self.cost)
self.num_strings
self.num_frets
__main__":
=
= num_frets
instrument_name input()
manufacturer_name = input()
year_built =
int(input())
cost = int(input())
string_instrument_name
string_manufacturer
=
input()
3 string_year_built = int(input())
1
=
num_strings
=
my_instrument
my_string_instrument
string_cost int(input())
num_strings int(input())
num_frets = int(input())
=
input()
=
Instrument (instrument_name, manufacturer_name, year_built, cost)
String Instrument(string_instrument_name, string_manufacturer, string_year_built,
num_strings, num_frets)
my_instrument.print_info()
my_string_instrument.print_info()
print(' Number of strings:', my_string_instrument.num_strings)
print(' Number of frets:', my_string_instrument.num_frets)](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fa332979b-3709-48a2-942a-205e2ae2d053%2Fbe06acd8-f3ab-41c3-af90-e63769e5f3dc%2F49qgi5_processed.png&w=3840&q=75)
Transcribed Image Text:1 class Instrument:
4
3
4
3
1
5
6 class String Instrument (Instrument):
def __init__(self, name, manufacturer, year_built, cost, num_strings, num_frets):
super(). __init__(name, manufacturer, year_built, cost)
3
def __init__(self, name, manufacturer, year_built, cost):
self.name = name
self.manufacturer manufacturer
self.year_built year_built
self.cost = cost
4
def print_info(self):
3 if __name__
4
3
print('Instrument Information: ')
print(' Name:', self.name)
print(' Manufacturer:', self.manufacturer)
print(' Year built:', self.year_built)
print(' Cost:', self.cost)
self.num_strings
self.num_frets
__main__":
=
= num_frets
instrument_name input()
manufacturer_name = input()
year_built =
int(input())
cost = int(input())
string_instrument_name
string_manufacturer
=
input()
3 string_year_built = int(input())
1
=
num_strings
=
my_instrument
my_string_instrument
string_cost int(input())
num_strings int(input())
num_frets = int(input())
=
input()
=
Instrument (instrument_name, manufacturer_name, year_built, cost)
String Instrument(string_instrument_name, string_manufacturer, string_year_built,
num_strings, num_frets)
my_instrument.print_info()
my_string_instrument.print_info()
print(' Number of strings:', my_string_instrument.num_strings)
print(' Number of frets:', my_string_instrument.num_frets)
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 3 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education