Lovebug784 Lovebug784 09-12-2022 Computers and Technology contestada finish the following implementation of the constructor for class product class product { private: int weight; double price; public: product(); }; //initialize weight with 0 and price with -1 using member initialization list