Kizspy | Question: 7
(Choose 1 answer)
What will be the output of the following code?
A. complie error
B. 0
C. 5.5
FJOVERFLOW.Com
public class q4 {
static float y=0;
public static void main(String[] args) {
y= 5.5;
Test1 t = new Test1();
System.out.println(y);
}
}