in the following code, the question is asked, what will be the output? The answer is a compile time error. But the thing is, i thought it was possible for some implicit downcasting to occur - in what situations?
public class Rand{
public static void main(
String argv[]){
int iRand;
iRand = Math.random();
System.out.println(iRand);
}
}