consider the following descriptions of two methods, which appear in the same class. public void methoda(int arg) – calls methodb with the value of arg * 10 public void methodb(int arg) – displays the value of arg 10 consider the call methoda(4), which appears in a method in the same class. what, if anything, is printed as a result of the call methoda(4)?