12. operator+(object1, object2)
13. a. bool b. bool
14. a. friend istream& operator>>(istream&, strange&);
b. const strange& operator=(const strange&);
16. The statement in Line 4, overloads the binary operator * for the class opOverload. Because * is a
17. In Line 4, the formal parameter of the function operator+ should be of type myClass. The correct
statement is:
18. In Line 4, the function operator + is overloaded as member of the class, so it should have only one
parameter. The correct statement is:
19. In Line 3, the return type of the function operator should be bool. The correct statement is:
20. In Line 3, the function operator+ is a friend function of the class, so it cannot be constant.
21. In Line 3 and 10, the return type of the function operator should be findErrors. In Line 3, the type
of the objects a and b must be findErrors. Also since operator* is a friend function of the class, the
name of the class and the scope resolution operator in the heading of the function, in Line 10, are not