Assume the file Alphabet.txt contains 26 records, the lowercase letters of the alphabet in ascending order. What is stored in Target.txt after the following code is executed?
```
Dim letter As String
Dim sr As IO.StreamReader = IO.File.OpenText("lphabet.txt"
Do While Not sr.EndOfStream
Dim sw As IO.StreamWriter = IO.File.CreateText("arget.txt"
letter = sr.ReadLine
sw.WriteLine(letter)
sw.Close()
Loop
sr.Close()
```
(A) The alphabet in descending order.
(B) The alphabet in ascending order.
(C) a
(D) z
(D) z
Computer Science & Information Technology
You might also like to view...
You must have two recordable drives in order to burn a disc
Indicate whether the statement is true or false
Computer Science & Information Technology
Toimprove traffic to your e-commerce site,? _______.
A. ?fill your web pages with lots of keywords for search engines to find and index B. ?post popular content, such as cat videos, on your site C. ?acquire links to your site on other sites D. ?advertise your website on local papers
Computer Science & Information Technology