Is ‘a’ and ‘A’ are different?

Solved23.81K viewsSyntax#casesenstive c++ programming python syntax

Is ‘a’ and ‘A’ are different?

Case sensitivity.

Question is closed for new answers.
Abhishek Verma Selected answer as best April 6, 2023
0

Yes, ‘a’ and ‘A’ are different characters in ASCII encoding. The ASCII code for the lowercase letter ‘a’ is 97, while the ASCII code for the uppercase letter ‘A’ is 65.

Although they represent the same letter in the English alphabet, they are treated as distinct characters in computer systems. This means that if you enter ‘a’ and ‘A’ into a computer program, they will be recognized as two different characters with different ASCII values.

Abhishek Verma Selected answer as best April 6, 2023
0
You are viewing 1 out of 1 answers, click here to view all answers.