Home /
Expert Answers /
Computer Science /
given-the-following-uml-diagram-and-variable-declarations-match-the-statements-with-predicted-resu-pa848
(Solved): Given the following UML diagram and variable declarations, match the statements with predicted resu ...
Given the following UML diagram and variable declarations, match the statements with predicted result/output. Alpha obj1 = new Alpha (); Alpha obj2 = new Beta (5); Beta's tostring method returns "Beta" when called System.out.println (obj1); System. out.println (obj2); obj1. function1(); obj1. function2 (); obj1. function2 (2); obj1. function 3 (3); obj1.function4(); obj2. function1(); obj2. function 2 (); obj2. function3(3); A. prints "Alpha" B. prints "Beta" C. calls Beta's function4() D. calls Beta's function2() E. calls Alpha's function3(int) F. Invalid (compiler error) G. call's Alpha's function1() H. call's Beta's function3(int) I. prints a refererence/address J. calls Alpha's function2(int)