Examlex

Solved

What Is the Error in the Following Method Definition

question 31

Multiple Choice

What is the error in the following method definition?
Public static void findMin(int x, int y)
{
Int min = 0;
If (x < y)
{
Min = x;
}
Else
{
Min = y;
}
}


Definitions:

Related Questions