Which statement is/are true?
I. Default constructor only contains "super();" call.
II. We can't use any access modifier with a constructor.
III. A constructor should not have a return type.
A. Only ...
Which code fragment cause a compilation error?
A.
float flt = 100F;
B.
float flt = (float) 1_11.00;
C.
float flt = 100;
D.
double y1 = 203.22;
float flt = y1
E.
int y2 = 100;
float flt = (float) y2;