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:

Morpheme

The smallest grammatical unit in a language that carries semantic meaning.

Cognition

The mental process of acquiring knowledge and understanding through thought, experience, and the senses.

Introspection

The examination or observation of one's own mental and emotional processes.

Morphemes

The smallest grammatical units in a language that convey meaning or grammatical function.

Related Questions