Computer Science, asked by roymithu477, 3 months ago

Java is case sensitive
Explain ​

Answers

Answered by Anonymous
3

Answer:

Java is case-sensitive because it uses a C-style syntax. Case sensitivity is useful because it lets you infer what a name means based on it's case. For example, the Java standard for class names is uppercasing the first letter of each word ( Integer , PrintStream , etc).

Answered by rashidkhna73
0

Answer:

Java, like most programming languages, is case sensitive. Even the slightest difference in naming indicates different objects (count does not equal Count). In order to be consistent, programmers follow naming conventions. For example, variables are lowercase (car) and classes are uppercase (Car).

Similar questions