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.


c. strName will be modified, but all changes will be lost when the procedure ends.

Computer Science & Information Technology

You might also like to view...

: FlowLayout is ________.

a. an abstract class b. a way of organizing components vertically c. the simplest layout manager d. left-aligned by default

Computer Science & Information Technology

Define the three possible result types the Performance Analyzer tool might propose

What will be an ideal response?

Computer Science & Information Technology

The efficiency of the sequential search is O(logn).

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

You click ____________ to navigate between web pages and websites.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology