VISUAL BASIC

VISUAL PROGRAMMING

VISUAL BASIC

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
____ is a process of repeating a set of statement until a certain condition is met.
A
Looping
B
Variables
C
While
D
Do while
Explanation: 

Detailed explanation-1: -REPEAT program loop. A program loop is a series of statements that executes for a specified number of repetitions or until specified conditions are met. Use the WHILE clause to indicate that the loop should execute repeatedly as long as the WHILE expression evaluates to true (1).

Detailed explanation-2: -In programming, a loop is a sequence of instruction that is continuous repeated until a certain condition is reached.

Detailed explanation-3: -Iteration is the repetition of a process in order to generate a (possibly unbounded) sequence of outcomes.

Detailed explanation-4: -A While loop is a conditional loop that will repeat the instructions within itself as long as a condition remains true.

There is 1 question to complete.