- How does Java handle integer overflows and underflows?It uses those low order bytes of the result that can fit into the size of the type allowed by the operation.
- What is the difference between the >> and >>> operators?The >> operator carries the sign bit when shifting right. The >>> zero-fills bits that have been shifted out.
- Is sizeof a keyword?The sizeof operator is not a keyword.