Computer Science, asked by rajaniuday, 1 year ago

java is case sensitive
--------------------------------------pls explain its an hurry

Answers

Answered by tanishqsingh
6
Yes, Java is  case sensitive.
 
 For Java , a capital and a small letter are two different things.
 For eg: it handles "a"  and "A" as two different values or constants



rajaniuday: CAN U PLS EXPLAIN Y
rajaniuday: Fst ........................................
tanishqsingh: becoz, it supports UNICODE
tanishqsingh: the code gets converted into byte code which could change the meaning of code during compilation process
Answered by TPS
5
Java is case sensitive means it considers the upper case and lower case letters as different entity. You can't write "System" as "system". They are different.
Similar questions