Examlex

Solved

What Is the Difference in the Execution of the Do

question 12

Multiple Choice

What is the difference in the execution of the Do Until Loop (first example) and the Do Loop Until (second example) ? '
First Example:
SngPayAmount = 200
Do Until sngPayAmount > 150
SngPayAmount = sngPayAmount - 50
Loop


'Second Example:
SngPayAmount = 200
Do
SngPayAmount = sngPayAmount - 50
Loop Until sngPayAmount > 150


Definitions:

Definition

A statement that explains the meaning of a word or phrase, clarifying its essence or boundaries.

Left Side of the Brain

The hemisphere of the brain associated with logical reasoning, analytical thinking, and language processing.

Statistics

The discipline involved in gathering, examining, explaining, and displaying data.

Pictographs

Simple images or symbols used to represent words, phrases, or data.

Related Questions