What mistake is in the following code?
public static double mystery (double a) {
System.out.println(a * 3.14);
}
1. The method cannot return a double.
2. It should say return true;
3. The parameter should be a boolean type.
4. There should not be a return statement.
5. The double should be changed to void since the method does not return a value.