1.A data member of a class can be declared as static and is normally used to maintain values common to the entire class.
2.A friend function can be invoked like a normal function without the help of any object.
3.The scope resolution operator (::) can be overloaded like normal operators ✓ Correct
4.Multiple inheritance may lead to duplication of inherited members from a "Grandparent" base class. This may be avoided by making the common base class a virtual base class.