float a=5, b=2; int c; c=a%b; System.out.println(c); What is the output of the above program?
float a=5, b=2; int c; c=a%b; System.out.println(c);
2
3
1
compilation error