What will be the output when the button is clicked on?

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim first, middle, last As String
first = "Augusta"
middle = "Ada"
last = "Byron"
Initials(first, middle, last)
End Sub
Sub Initials(c As String, b As String, a As String)
Dim theInitials As String
theInitials = a.Substring(0, 1) & b.Substring(0, 1) &

c.Substring(0, 1)
txtBox.Text = theInitials
End Sub
```
(A) AAB
(B) BAA
(C) abc
(D) ABA

(B) BAA

Computer Science & Information Technology

You might also like to view...

Icons that start programs can be configured to display on the computer's desktop or taskbar

Indicate whether the statement is true or false

Computer Science & Information Technology

You can use the ____ to view each of the document's elements, to search for a specific element, to find all instances of a particular symbol, or even to print a list of the document's elements.

A. Movie Manager B. Flash Control C. Movie Explorer D. Other Panels tool

Computer Science & Information Technology