Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

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;
   
}
 
PREVIOUS NEXT
Tagged: #Based #method #return #type
ADD COMMENT
Topic
Name
3+9 =