What is the diffrences between myvariable and myVariable | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the diffrences between myvariable and myVariable

I don't no the diffrences

21st Mar 2017, 6:11 PM
Rahul Prabhakar
Rahul Prabhakar - avatar
5 Answers
+ 2
myvariable and myVariable are two different variables when case sensitivity is involved that is myvariable is written in lower case while myVariable has an uppercase 'V'. When case sensitivity is not involved myvariable = myVariable
21st Mar 2017, 6:53 PM
Agonsi Onyedikachi David
Agonsi Onyedikachi David - avatar
+ 1
Case sensitivity just tells the program to differentiate between lowercase and uppercase letters such as c and C. So myvariable and myVariable can hold two separate data points. example: int myvariable = 3; int myVariable = 2; cout << myvariable << endl; cout << myVariable << endl; outputs 3 2 That said, it is common practice for coders to use myVariable instead of myvariable for visual attractiveness. When a variable is made up of to words such as myVariable you capitalize the first letter of the second word wwhile leaving the first letter of the first word lowercase. While it's not necessary it is the common practice.
28th Mar 2017, 1:41 AM
Christian
Christian - avatar
0
what is case sensitivity
21st Mar 2017, 6:54 PM
Rahul Prabhakar
Rahul Prabhakar - avatar
0
Case sensitivity is distinguishing between uppercase letters ABCDEF... Z and lowercase letters abcdef....z When case sensitivity is on. myvariable = myvariable (EQUAL) And myvariable != myVariable (NOT EQUAL)
21st Mar 2017, 7:04 PM
Agonsi Onyedikachi David
Agonsi Onyedikachi David - avatar
0
Case sensitivity is when a compiler distinguishes lowercase from uppercase letters. For example: Say case sensitivity is on. myVariable holds a different value than myvariable because the V is uppercase in one but lowercase in the other. If case sensitivity is off, the compiler doesn't make a distinction between V and v.
23rd Mar 2017, 8:42 PM
Ethan