What is the output of the program?
public class Utility {
static int doubleValue(int value) {
return value * 2;
}
public static void main(String[] args) {
int result = Utility.doubleValue(5);
System.out.println(result);
}
}