Given the following class definition in one source file: class Base { public Base (){ //... } public Base ( int m ){ //... } protected void fun( int n ){ //... } } public class Child extends Base{ // member methods } Which methods can be added into the Child class correctly?