Computer Science, asked by nikita9f, 9 months ago

java is a case sensitive language . Explain

Answers

Answered by leanderr
2

Answer:

Case sensitivity enforces capital or lower case in the text. For example, suppose you have created three variables called "endLoop", "Endloop", and "EndLoop". Even though these variables are composed of the exact same letters in the same exact order, Java does not consider them equal. It will treat them all differently.

This behavior has its roots in the programming language C and C++, on which Java was based, but not all programming languages enforce case sensitivity. Those that do not include Fortran, COBOL, Pascal, and most BASIC languages.

plz mark this answer as branliest

THANK U :)

Answered by manyanasa27
1

Explanation:

this means that java will interpret a and A differently

here case means UPPERCASE(A) and lowercase(a)

Similar questions