InterviewSolution
Saved Bookmarks
| 1. |
What Is Variable Initialization And Why Is It Important? |
|
Answer» This refers to the process wherein a variable is ASSIGNED an initial value before it is USED in the program. WITHOUT initialization, a variable would have an unknown value, which can lead to unpredictable outputs when used in COMPUTATIONS or other operations.
This refers to the process wherein a variable is assigned an initial value before it is used in the program. Without initialization, a variable would have an unknown value, which can lead to unpredictable outputs when used in computations or other operations.
|
|