What will be the output of the following program when the button is clicked?
```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim a, b, c, acronym As String
a = "federal"
b = "aviation"
c = "administration"
acronym = a.Substring(0, 1) & b.Substring(0, 1) & c.Substring(0, 1)
Select Case acronym
Case "FAA"
txtBox.Text = "Federal Aviation Administration"
Case "DEA"
txtBox.Text = "Drug Enforcement Agency"
Case Else
txtBox.Text = "Unknown acronym. Sorry."
End Select
End Sub
```
(A) Federal Aviation Administration
(B) Drug Enforcement Agency
(C) Syntax error
(D) Unknown acronym. Sorry.
(D) Unknown acronym. Sorry.
You might also like to view...
________ computing refers to the efficient and eco-friendly use of computers
A) Grid B) Distributed C) Ubiquitous D) Green
Any time there is no expectation of privacy for a person or their information, evidence collected under those circumstances will be considered admissible
a. True b. False
What type of device can be used to block unwanted traffic initiated from the Internet and can also restrict Internet access from an internal network?
A. hub B. switch C. firewall D. VPN
Placing a new item on top of the queue is formally referred to as ____.
A. enqueueing B. serving C. pushing D. inserting