Find the correct Blue Java statement. *
A) 10=int num; B) float f = 'a'; C) String s="JAVA"; D) double d = 2.1589763
Answers
Answered by
0
Answer:
This is a widening conversion (5.1.2): float f = i; // String conversion of ... a double argument: double d = Math.sin(f);
Similar questions