FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
what is the action of doing something over and over again in coding
A
code
B
circle
C
program
D
loop
Explanation: 

Detailed explanation-1: -loop. The action of doing something over and over again.

Detailed explanation-2: -The while loop is used to repeat a section of code an unknown number of times until a specific condition is met.

Detailed explanation-3: -In general, repeat refers to an action, event, or task that once completed, is performed again. For example, in Microsoft Word 2000 and above, the F4 key repeats the last action performed.

Detailed explanation-4: -A repeat loop is used any time you want to execute one or more statements repeatedly some number of times. The statements to be repeated are preceded by one of the repeat statements described below, and must always be followed by an end repeat statement to mark the end of the loop. Repeat loops may be nested.

Detailed explanation-5: -To loop through a set of code a certain number of times, you can use the range() function, which returns a list of numbers starting from 0 to the specified end number.

There is 1 question to complete.