InterviewSolution
Saved Bookmarks
| 1. |
Ms. Meena is not able to understand the statement "Java is a case sensitive language". Help her in understanding the above mentioned statement by giving suitable example. |
|
Answer» Java is a case sensitive language as Java distinguish between uppercase and lowercase very strictly. For example: int t num1, num1; Although both variables have same name in the above statement but java will treat them two different variables due to first character in different case. |
|