What is the first line of the file created by the following code?

```
Dim query = From line In IO.File.ReadAllLines('UN.txt")

Let data = line.Split(",&')
Let country = data(0)
Let population = 1000000 * CDbl(data(2))
Let area = CDbl(data(3))
Let density = population / area
Select country & " , " & density.ToString('N1")
IO.File.WriteAllLines("NewFile.txt", query)

```
(A) Afganistan,31800000/251772
(B) Afganistan,126.3
(C) Afganistan,126.3047519
(D) country,density

(B) Afganistan,126.3

Computer Science & Information Technology

You might also like to view...

The SUM function will suggest a range of cells for the argument if data is ________ or to the left of the selected cell

Fill in the blank(s) with correct word

Computer Science & Information Technology

With an Azure RemoteApp cloud deployment, you can…

A) Host and store all data for applications within the Azure cloud platform. B) Use your Microsoft accounts for credentials. C) Configure and synchronize your organizational credentials through Azure Active Directory. D) Implement a cloud-only approach to host your applications without connecting to a local on-premises network. E) All of the above

Computer Science & Information Technology