Question: Based on the definition of the Method Test below: public class Methodtest ! private int xval; private int yval; private String strs; public MethodTest() {

Based on the definition of the Method Test below: public class Methodtest ! private int xval; private int yval; private String strs; public MethodTest() { xval - Wal - B; strs - Unicnown > public int overloadedMethod ( int x ) { xval - x return xval - 10; public int overloaded Method ( int x, int y){ xval - x yal-y: return xalyval; } public String overloadedMethod ( Strings) { strs - S; return strs + xVal + yval; } ) What will print if you execute the short program below: Methodtest test - new MethodTest(); String result; test.overloadedMethod ( 3 ); test.overloadedMethod ( 4, 9 ); result - test.overloadedMethod( "Test" ); System.out.println( result ): O "Test" O "Test39" O "Test 309 O "Test49" O "Test00
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
