What will be the output of the following lines?
Dim alphabet, soup As String
alphabet = "abcdefghijklmnopqrstuvwxyz"
soup = alphabet.ToUpper
txtBox.Text = alphabet.Substring(0, 5) & soup.Substring(0, 5)
(A) abcdeABCDE
(B) ABCDEABCDE
(C) eE
(D) EE
(A) abcdeABCDE
Computer Science & Information Technology
You might also like to view...
When creating templates, IFERROR should be used to mask zero values
Indicate whether the statement is true or false
Computer Science & Information Technology
In Java, every class is ultimately derived from the class _____ through inheritance.
a) String b) Object c) Math d) Exception
Computer Science & Information Technology