Let A be the base class in C++ and B be the derived class from A with protected inheritance. Which of the following statement is false for class B?
1
Member function of class B can access protected data of class A
2
Member function of class B can access public data of class A
3
Member function of class B cannot access private data of class A
4
Object of derived class B can access public base class data