Predict the output of the following code
public class Equals 
{
public static void main(String [] args)
{
int x = 50
double y = 50.1;
boolean b = (x = y);
System.out.println(b);
}
}

Posted on by