Explore Westonci.ca, the top Q&A platform where your questions are answered by professionals and enthusiasts alike. Get quick and reliable solutions to your questions from a community of experienced experts on our platform. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly Q&A platform.

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)