The strCode variable contains an uppercase letter. Write two different Do...Loop clauses that process the loop instructions as long as the value in the strCode variable is either A or B. Use the Until keyword in the first clause, and use the While keyword in the second clause.
What will be an ideal response?
Do Until strCode <> "A" AndAlso strCode <> "B"
Do While strCode = "A" OrElse strCode = "B"
Computer Science & Information Technology
You might also like to view...
The process of navigating the Internet either for a specific item or for an interesting topic, and then quickly moving from one item to the next is called ________
Fill in the blank(s) with correct word
Computer Science & Information Technology
__________ enable programmers to specify, with a single method declaration, a set of related methods.
a. Overloaded methods. b. Overriden methods. c. Generic methods. d. Generics.
Computer Science & Information Technology