what is case sensitive, and case insensitive. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what is case sensitive, and case insensitive.

9th Oct 2016, 5:05 PM
rahman ash
rahman ash - avatar
6 Answers
+ 5
Case Sensitive it is check if CAPITAL LETTER or small letter $name; $NAME; both variables above are not the same Case Insensitive it doesn't matter if CAPITAL LETTER or small letter ,just write and run your code $name; $NAME; both variables above are the same
10th Oct 2016, 1:15 PM
Victor Alagwu
+ 1
case sensitive means you should carefully put name for variable, Constantine and function. for example if you write $Name = 1 and you user the variable with $name then it won't give you any value. you should call it with $Name; while case insensitive you don't have to worry about the using of the capital letter or normal letter. both will be treated the same by the the program.
10th Oct 2016, 9:33 AM
AW Pramono
AW Pramono - avatar
+ 1
case sensitive means capital letters and small letters are considered different..for eg. "HELLO" and "hello" are two different strings.. while case insensitive means capital letters and small letters are considered as same.. Hello and HELlo are same in case of case insensitive
3rd Nov 2016, 8:06 AM
Radhika Gupta
Radhika Gupta - avatar
0
thank you guys
10th Oct 2016, 1:18 PM
rahman ash
rahman ash - avatar
0
WPSAP
10th Oct 2016, 4:06 PM
suanndiany
0
I don´t see the difference between them. When I run the code I receive the same result
28th Dec 2016, 4:36 PM
Thiago
Thiago - avatar