Q. What is the output of the following Java Code?
Code:int a=9; float b = a/2; System.out.println(b);
β
Correct Answer: (A)
4.0
int a=9; float b = a/2; System.out.println(b);
You must be Logged in to update hint/solution