1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
forsale [732]
4 years ago
13

A ____ is a structure that allows repeated execution of a block of statements.

Computers and Technology
2 answers:
yan [13]4 years ago
7 0

Answer:

Loop.

Explanation:

A loop is a structure that allows repeated execution of a block of statements.

Leokris [45]4 years ago
3 0

Answer:

loop

Explanation:

Loop is the one which is used to execute the specific statement again and again until the condition is true.

In the programming, there are 3 basic loop used.

1. for loop

<u>Syntax:</u>

for(initialization, condition, increment/decrement)

{

  statement;

}

the above statement execute until the condition in the for loop true when it goes to false, the loop will terminate.

2. while loop

<u>Syntax:</u>

initialization;

while(condition)

{

  statement;

increment/decrement;

}

it is work same as for loop and the increment/decrement can be write after or before the statement.

3. do while

syntax:

initialization;

do

{

   statement;

   increment/decrement;

}while(condition);

here, the statement execute first then, it check the condition is true or not.

so, if the condition is false it execute the statement one time. this is different with other loops.

You might be interested in
The divBySum method is intended to return the sum ofall the elements in the int arrayparameter arr that are divisible by the int
charle [14.2K]

Answer:

Explanation:

The following program is written in Java and creates the divBySum method using a enhanced for loop. In the picture attached below I have provided an example of the output given if called using the array provided in the question and a divisible parameter of 3.

public static int divBySum(int[] arr, int num) {

       int sum = 0;

       for (int x : arr) {

           if ((x % num) == 0) {

               sum += x;

           }

       }  

       return sum;

   }

4 0
3 years ago
Why aren’t I leveling up? I have enough points and even a brainliest. Could an expert please help me!! I am really confused.
svlad2 [7]
This actually happened to me when I was supposed to be an expert. Answer one more question, log out and back in, and then you should be the next rank!
Hope this helps! Have a happy holiday!
8 0
3 years ago
Which functions are available in a word table
Doss [256]
Change case, repeat last action, thesaurus, <span>Disable hyperlinks.</span>
5 0
3 years ago
People are more affected by technology than science because technology _____.
erik [133]
Has more of a direct influence in our everyday life because of the use of cellphones, technology, and cameras. Where else science is the idea that we should know affects us but often isn't clearly understood by the average person.

7 0
3 years ago
Read 2 more answers
Luka is responsible for the translation of the computer program. Luka looks for errors during the stage of a computer program.
denis23 [38]

Answer:

He should check if a syntax error pops up to fix the code

Explanation:

A syntax error message pops up when the code is not proper

8 0
2 years ago
Read 2 more answers
Other questions:
  • The ____ statement is used to execute specific programming code if the evaluation of a conditional expression returns a value of
    10·1 answer
  • I am a receptionist for a large corporation
    8·1 answer
  • On a timeline, a milestone 11 years in the future will be to the
    7·1 answer
  • Why should you log out when you finish an online session?
    9·1 answer
  • the command prompt window should be avoided because it is dangerous to do commands there? True or false
    14·1 answer
  • Of the listed principles, which one states that multiple changes made to computer systems shouldn’t be made simultaneously?
    9·1 answer
  • Select the characteristics that describe the evolution of computers that predate the personal computer (select all correct answe
    12·1 answer
  • What is the command to display the user name with which youhave logged in?
    8·1 answer
  • Explain with example how does delay marriage help for population management​
    6·1 answer
  • 1 point
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!