Question: Based on the definition of the methodtest class below: public class Methodtest { private int xval; private int yval; private string strs; public methodtesto {

Based on the definition of the methodtest class below: public class Methodtest { private int xval; private int yval; private string strs; public methodtesto { xval = ; yval = ; strs = "unknown"; } public int overloadedMethod ( int x ) { xval = x; return xval * 10; public int overloadedMethod (int x, int y){ xval = x; yval = y; return xval * yval; } public string overloadedmethod ( Strings) { strs = 5; return strs + xval + yval; } } What change(s) would you need to make to the class to set the values of both xval and yval to 100 when overloadedmethod is called with empty parameters? Example: overloadedMethod(); Change the constructor to set the values of Val and yVal to 100 when overloaded Method if no value is sent. Create a new overloaded Method with empty parameters that sets the values of xVal and yVal to 100. You don't need to do anything. Java will handle this automatically. This cannot be done in Java
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
