predict the output.
class Test
{
public static void main(String[] args)
{
Double object = new Double("2.4");
int a = object.intValue();
byte b = object.byteValue();
float d = object.floatValue();
double c = object.doubleValue();
System.out.println(a + b + c + d );
}
}
Answers
Answered by
0
SUPER MAN CAN ALSO ANSWER THIS QUESTION BUT I CAN'T ANSWER
Similar questions