Multiple Choice
What is wrong with the following GetName procedure?
Sub GetName(ByVal strName As String)
StrName = InputBox("Enter your Name:")
End Sub
A) The procedure is missing a Return statement.
B) GetName is a reserved word and cannot be used as a name of a procedure.
C) strName will be modified, but all changes will be lost when the procedure ends.
D) The syntax for the call to InputBox is incorrect.
Correct Answer:

Verified
Correct Answer:
Verified
Q17: Choose a new, more descriptive name for
Q18: When calling a procedure, passed arguments and
Q19: Which debugging command executes a function call
Q20: A is a special variable that receives
Q21: Which is the correct way to define
Q23: When a procedure finishes execution, _.<br>A) control
Q24: Which of the following does not apply
Q25: When debugging a program in break mode,
Q26: Although you can omit the ByVal keyword
Q27: Which statement is not true regarding functions?<br>A)