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]
3 years ago
13

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

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

Answer:

Loop.

Explanation:

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

Leokris [45]3 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
A major weakness of a lot of file processing systems is that ____.
Gnesinka [82]

They are several weaknesses or disadvantages of file processing systems but the major weakness is data redundancy and inconsistency. By data redundancy, I mean duplication of data. There are no better methods to validate insertion of duplicate data in file systems. Data redundancy can also increase the chance for errors.






7 0
4 years ago
Which slideshows design can not be use?
Readme [11.4K]

Answer:

Is there suppose to be a pic ?

Explanation:

7 0
3 years ago
The Yacht club has a web site that consists of a picture of the yacht club room along with the yacht club rules on the left. On
lidiya [134]
External CSS style sheet
6 0
4 years ago
4.3 Code Practice<br> edhisve
mars1129 [50]

<u>Answer</u>:

<u>Incomplete question. However, I infer you need assistance to provide full question</u>.

Explanation:

Here's the full question;

"4.3 code practice adhesive (in python 3) write a program that uses a loop to print the uppercase alphabet with the correct ASCII number next to each letter. (e.g., one line might be A 65)".

Thus, you are expected to use the computer programming language Python to write the program.

7 0
3 years ago
What is the first step of the program development cycle?
yan [13]
1) Problem Definition
2) Problem Analysis
3) Algorithm Development
4) Coding & Documentation
5) Testing & Debugging
6) Maintenance
8 0
3 years ago
Other questions:
  • How can we set the color of a text that acts as a link in a web page​
    10·2 answers
  • What is the purpose of a scatter plot introduction to computer applications
    6·2 answers
  • What is the leading use of computers
    15·2 answers
  • When a structure must be passed to a function, we can use pointers to constant data to get the performance of a call by ________
    14·1 answer
  • Driving is expensive. Write a program with a car's miles/gallon and gas dollars/gallon (both floats) as input, and output the ga
    12·2 answers
  • Polymorphism means ______________.
    15·2 answers
  • Deleting anitem from a linked list is best when performed using two pointersso that the deleted item is freed from memory.
    7·1 answer
  • Why is failure important when you are designing a solution to a problem?
    6·2 answers
  • Write a statement that calls the recursive method backwardsAlphabet() with parameter startingLetter.
    8·1 answer
  • 1. If we want define style for an unique element, then which css selector will
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!