Which of the following statements are true?
Select 2 options
Correct Options are : A C
All operands of type byte, char or short are promoted at least to an int before performing mathematical operations.
If one of the operands is larger than an int then the other one is promoted to the same type.
System.out.println ((float)5/4); will print 1.25.
If you remove the explicit cast (float), it will print 1.