Two methods defined within a class are shown below. What can be said about the variable x used in both methods?
  public int getSum(int y){

     return this.x + y; }
 public int getMult(int y){

   return this.x * y; }