Select from following answers:- The variable was not initialized before it was passed in.
- Passing a value type into a procedure creates a copy of the data.

- The variable was redeclared within the procedure level.
- The procedure handled the variable as a reference.
- All Above
Procedures work with a copy of variables when you pass a value type. Therefore, any modifications that were made to the copy would not affect the original value.
Show Correct Answer
Source: MCTS Book | Asked In: MCTS |
Alert Moderator