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 will create a House object with owner name “Mary Smith”, address “6 Stable Way”, numBRs is 4, and numBAs is 2. The object will be assgined the variable name h1.