Question:You pass a value-type variable into a procedure as an argument. The procedure changes the variable; however, when the procedure returns, the variable has not changed. What happened? (Choose one.) - VB.NET
A The variable was not initialized before it was passed in.
B Passing a value type into a procedure creates a copy of the data.
C The variable was redeclared within the procedure level.
D The procedure handled the variable as a reference.
+ AnswerB
+ Report