InterviewSolution
Saved Bookmarks
| 1. |
State The Differences Between Val And Var? |
|
Answer» Val: Val, which is the short FORM of value, is a CONSTANT and it cannot be CHANGED once ASSIGNED. Var: Var, which is the short form of variable, is a STORAGE location that accepts the reassignment of values that have the same data types. Val: Val, which is the short form of value, is a constant and it cannot be changed once assigned. Var: Var, which is the short form of variable, is a storage location that accepts the reassignment of values that have the same data types. |
|