FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which group of words denotes repetition?
A
if, then, else, elseif (elif), when
B
for, repeat until, while, while not
C
begine, end, input, output, print, read, write
D
None of these.
Explanation: 

Detailed explanation-1: -For example, the Pascal and Lua languages have a “repeat until” loop, which continues to run until the control expression is true and then terminates.

Detailed explanation-2: -While repeats one statement (unless enclosed in a begin-end block) as long as the condition is true. The repeat statement repetitively executes a block of one or more statements through an until statement and continues repeating unless the condition is false.

There is 1 question to complete.