Multiple choice technology programming languages

Which of the following primitive data types are integer types?

  1. Type boolean

  2. Type float

  3. Type byte

  4. Type double

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In Java, the primitive integer types are byte, short, int, and long. float and double are floating-point types, while boolean is a logical type.