InterviewSolution
Saved Bookmarks
| 1. |
Java is case sensitive language explain |
|
Answer» Java is a CASE sensitive language and when we are not following the pre- defined RULES, our result will varyExplanation:LET say, if there is a pre-defined VARIABLE "User" is defined a Camel case , then if we DECLARE it as "user", it wont consider that as a pre defined variablein short Java treats RUN and run differently |
|