+91-85006-22255
Which of the following is not an Integer Literal?
Correct Answer : C
0x77 is hexadecimal integer literal. 077 is an octal integer literal. 245 is decimal integer. 0c12 is not integer literal since the prefix 0c is not supported. The other prefix which is supported in the integer group is 0b.
0x77
077
245
0c12
0c
0b
Topic: Integer Literals In Java
Read this topic Take test on this topic
Open In App