Assume that we have defined a class called House that has at…
Assume that we have defined a class called House that has attributes of owner’s name, address, number of bedrooms, and number of baths. The attribute names in the class definition are name, address, numBRs and numBAs. numBRs and numBAs are integers. The other attributes are strings (characters). What code must we add to the definition if we want to add an additional attribute lotSize and assign it to a House object when that object is instantiated? lotSize is an integer and is the name used inside the class definition. Check all the code that must be added.