Answer:
The left and right index finger
Explanation:
Left index finger: R, T, F, G, C, V
Right index finger: Y, U, H, J, B, N
Answer:
a) Global
Explanation:
The scope of a variable declared outside of any function is Global.
Let us consider an example:
int g;
int add(int a,int b){
return a+b;
}
int subtract(int a,int b){
return a-b;
}
Here the variable g is defined outside any function and is accessible anywhere within the program. This is a global variable.
Variables defined within each function - a,b on the other hand have a local scope are are visible only within their respective function bodies.
Answer:
starting with lowercase letters, using uppercase letters for the first letter in a new word
Explanation:
starting with a dollar sign, using lowercase for the remaining parts of each word
Idk what is it?
a computer?
plz mark me as brainliest