Mastering Java: The Ultimate Quiz for 'Thinking in Java'

Disable ads (and more) with a membership for a one time $2.99 payment

Dive into the depths of Java with our quiz based on "Thinking in Java, Fourth Edition" by Bruce Eckel. Test your knowledge, solidify concepts, and prepare for certification with challenging questions and insightful feedback.

Each practice test/flash card set has 50 randomly selected questions from a bank of over 500. You'll get a new set of questions each time!

Practice this question and more.


In Java, what is the result of truncating a floating-point number when cast to an integral type?

  1. Rounding up

  2. Rounding down

  3. It gets converted to the nearest integer

  4. Truncates the decimal part

The correct answer is: Truncates the decimal part

When a floating-point number is cast to an integral type in Java, all decimal places are truncated. This means the number is rounded down to the closest integer without taking into account the decimal part. Therefore, both options A and B are incorrect because the number is not rounded up or down, it is simply truncated. Option C is also incorrect because the number is not converted to the nearest integer, it is simply truncated.