Based on the method exampleMethod, what is the return type of the method?
public static String exampleMethod(int n, char n)
public static String int minimum(int x, int y)
{
int smaller;
if (x < y)
smaller = x;
else
smaller = y;
return smaller;
}