Moderate

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); } } ?

Correct answer: A. 0

  • A. 0
  • B. 1
  • C. 2
  • D. 3

Explanation

The expression `1 / 4` uses integer operands, so integer division produces 0 before multiplication by 10. Thus `f` is 0.0 and `Math.round(f)` returns 0.

Last updated

Practise Software Design and Architecture

493 free Software Design and Architecture MCQs from Software Engineering, each with the correct answer and an explanation. Unlimited attempts, no account needed.

Exams that ask Software Engineering questions like this

Software Engineering is on this paper prepared for on TestUstad, and all of them draw the same bank, so this question is worth knowing for it.

Related questions