Q. Choose the correct implementation of floating point literals in the exponential form in Java. (A) float a = 12.0e2f; //1200.0 (B) float a = 100.0e-2f; // 1.0 (C) float a = 123.456e-21f; //1.23456E-19 (D) All the above ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (D) All the above