Westonci.ca is your go-to source for answers, with a community ready to provide accurate and timely information. Experience the convenience of finding accurate answers to your questions from knowledgeable professionals on our platform. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals.

public int mystery(double y) {
double result = 3 + y / 10;
if( result > 10 ) {

return result;
} else {
return 0;
}
}

Which of the following calls, when run from the same class, would return 0?
1. mystery (40.0)
2. mystery (40)
3 mystery(400.0)