List the categories of loops used in VBA and describe each type of loop
What will be an ideal response?
There are two categories of loops in VBA; Do loops and For…Next loops. There are two types of loops that belong to each category. In the Do loop category there are Do While loops and Do Until loops; the Do While loops cycle through code while a specified condition is true and the Do Until loops, loop through code until a specified condition is true. The two types of loops belonging to the For… Next category areFor and For Each loops; The For loops, loop through code until a specified number of loops have been completed and the For Each loops, loop through an entire object collection or an array.
You might also like to view...
A new laptop has been purchased with an 802.11n wireless card. The laptop will not connect to their existing 802.11a network. Which of the following is MOST likely the reason the laptop will not connect?
A. The laptop is too far from the existing network B. Interference C. Wrong SSID is being used D. Standard mismatch
What kind of a class might be considered to be "fragile"?
A. A built in class that is overloaded. B. A class that depends on being passed parameters from another method. C. A class that depends on field names from parent classes. D. A class that has no destructor method.