Java Programming - Objects and Collections - Discussion

Discussion Forum : Objects and Collections - General Questions (Q.No. 11)
11.
What is the numerical range of char?
0 to 32767
0 to 65535
-256 to 255
-32768 to 32767
Answer: Option
Explanation:

The char type is integral but unsigned. The range of a variable of type char is from 0 to 216-1 or 0 to 65535. Java characters are Unicode, which is a 16-bit encoding capable of representing a wide range of international characters. If the most significant nine bits of a char are 0, then the encoding is the same as seven-bit ASCII.

Discussion:
1 comments Page 1 of 1.

Kshitij Shrivastava said:   6 years ago
Please explain the answer in detail.

Post your comments here:

Your comments will be displayed after verification.