Given the code fragment: float x = 22.00f % 3.00f; int y = 22 % 3; System.out.print(x + ", "+ y); What By Singh | December 31, 2022 0 Comment Given the code fragment:float x = 22.00f % 3.00f;int y = 22 % 3;System.out.print(x + “, “+ y);What is the result? A. An exception is thrown at runtime B. 7.33, 7 C. Compilation fails D. 1.0, 1 E. 1.0f, 1 Correct Answer: D