2-Scope Rules Flashcards
1
Q
Local
A
Inside a function or a block
2
Q
Global
A
Outside of all functions
3
Q
Formal Parameters
A
In the definition of function parameters
4
Q
A program can have same name for local and global variables but the value of local variable inside a function will take preference.
A
True