Question: Given the base class Instrument, define a derived class StringInstrument for string instruments with a constructor that initializes the attributes of the Instrument class as


Given the base class Instrument, define a derived class StringInstrument 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 12.8.1: LAB: Instrument information (derived classes) 0/10 main.py Load default template
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
