What numbers are displayed in the list box by the following program segment?

```
Dim numbers As String = "1492,1776,1945"
Dim temp() As String = numbers.Split(',"c)
Dim nums(2) As Integer
For i As Integer = 0 to 2
nums(i) = CInt(temp(i))
Next
lstBox.Items.Add(nums(1))
lstBox.Items.Add(nums.First)
```
(A) 1776 and 1492
(B) 1776 and 1776
(C) 1492 and 1492
(D) 1945


(A) 1776 and 1492

Computer Science & Information Technology

You might also like to view...

Select the false statement. A rethrown exception:

a. Is detected by the next enclosing try block. b. Is the immediate result of a throw command. c. Can be processed by exception handlers following the enclosing try block. d. Must have been fully processed at the time it was rethrown.

Computer Science & Information Technology

Voice over Internet Protocol (VoIP) is a protocol that uses the network infrastructure in a facility for internal calls and __________ for calls outside the facility

a. The Internet b. Cell towers c. Satellites d. None of the above

Computer Science & Information Technology

A technician wants to boot from an optical disc to run some diagnostics. The technician changed the boot order settings in BIOS/UEFI and rebooted. The system still boots to Windows. Which BIOS/UEFI setting probably needs adjusting?

A) TPM B) Virtualization C) Secure boot D) Administrator password

Computer Science & Information Technology

When a media query is true, the corresponding style rules are applied.

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

Computer Science & Information Technology