In the code below, _______ is an argument and ________ is a parameter. (Fill in both blanks with the appropriate variable name.)
public class demo
{
public static void main(string args)
{
double temp =97.8; display Temp (temp);
}
public static void displayTemp (double tempOut)
}
System.out.println (tempOut);
}