what does case sensitive mean and if u can translate it in arabic it will be better IF | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what does case sensitive mean and if u can translate it in arabic it will be better IF

6th Aug 2016, 11:51 AM
lord montasir
lord montasir - avatar
2 Answers
+ 2
Capital letters are called upper case letters and small letters are called lower case letters. So case sensitive means that the compiler takes two different variables if the cases are different even if the names are same. So age, Age, AGE, aGe are all different variables as it is case sensitive.
6th Aug 2016, 6:19 PM
Sumitabha Banerjee
Sumitabha Banerjee - avatar
+ 1
Case sensitive is about capital or non capital letters. Some programs/languages.../ are non case sensitive. Lets take an example with a variable. #include <iostream> using namespace std; Int main() { int name,Name; } name is not the same as Name because of case sensitive. If they were non case sensitive, then no matter how you write name,if it has these four letters.
6th Aug 2016, 5:38 PM
Vlad Cranga
Vlad Cranga - avatar