What are the default values of the primitive data type int and float?
30 Likes
Default value of int is 0 and float is 0.0f.
Answered By
16 Likes
The size of '\n' is:
Which of the following is an escape sequence character in Java?
/n
\t
/t
//n
int x = 98; char ch = (char)x; what is the value in ch?