14293. What will the output of the following program? public class Test{ public static void main(String args[]){float f = (1 / 4) * 10; int i = Math.round(f); System.out.println(i); } } ? September 13, 2025 by Admin A. 0 B. 1 C. 2 D. 3 ✅ The correct answer is option A.