Identify the correct statement about the following pointcut expression. Assume that these 2 classes do not inherit from one another:
Identify the correct statement about the following pointcut expression. Assume that these 2 classes do not inherit from one another: Execution (* rewards.service.MyClass.*(..)) && execution(* rewards.service2.MyOtherClass.*(..)) (Select one)A . Executions of all public method calls in MyClass and MyOtherClass will be selected by this pointcutB . Public methods in MyClass...