A ____ statement is a a control flow statement that repeatedly executes a statement or a series of statements while the value of a specific condition is truthy or until the value of a specific condition becomes truthy.a. decision-making

b. fork

c. break

d. loop

Answers

Answer 1
Answer: The answer would be loop.
Answer 2
Answer:

Answer:

Option D is correct.

Explanation:

A Loop statment is a control flow statement that repeatedly executes a statement or a series of statements while the value of a specific condition is truthy or until the value of a specific condition becomes truthy.


Related Questions

Describe how the presence or absence of balance can affect a visitor’s perceptions of a Web page.
"Write an SQL query that displays the Ssn and Last name of all employees who is a supervisor of a Department Manager"
Most networking media send data using _____ in which data is represented by only two discrete states: 0s and 1s.A. digital signalsB. contiguous signalsC. ramp signalsD. exponential signals
Implement a java program to find the smallest distance between two neighbouring numbers in an array.
Suppose an array with six rows and eight columns is stored in row major order starting at address 20 (base 10). If each entry in the array requires only one memory cell, what is the address of the entry in the third row and fourth column?

You text file begins with the following rows. The pattern is a description of the item to be repaired, its color, and the issue. bike, red, flat tire bike, blue, broken chain skate, blue, loose wheel mitt, red, torn lace Your program starts with the following lines. import csv aFile = open("data\broken.txt","r") aReader = csv.reader(aFile) countRed = 0 for item in aReader: When you write code to count the number of times red is the color, what is the index of "red"?

Answers

Answer: the answer is 1

Explanation:

edge 2021

A customer has engaged your software development company to develop a new order-processing system. However, the time frames are very tight and inflexible for delivery of at least the basic part of the new system. Further, user requirements are sketchy and unclear. a. What is the best system development strategy that might be advantageous to use in this engagement? b. What is the potential downside to using the strategy described in the part a?

Answers

Sorry b. Not answered. Thanks. Rate it if this helps.

Laptop components that can be replaced relatively easily include the ____ and the ____first part
screen
power supply
RAM

second part
hard disk
keyboard
touchpad​

Answers

Answer:

Power supply and Hard disk

Explanation:

PLEASE ANYONE!!which present margins would be best to get the most information to fit on the page​

Answers

Answer:

Normal Margin is fit on the page. The default margins for Microsoft Word is normal margin.                                      

Explanation:

The paper visual effect give the document’s theme and quality. Margins send visual effects. Making a document right helps you to send the right message to readers. Use a small paper and adding a border.

You can change the page layout that people notice first with size, orientation, and margins.

Page margins make your document readable. Margins make the document more readable, make text look inviting, and given reviewers.

With narrower margins, you can reduce more words on-page.

To many words in a line make it difficult to read the document.

Margins are of many types

  • Normal Margin
  • Narrow margins
  • Moderate margins
  • Wide margins

Normal gives an equal inch to all sides of the page.

Narrow margins give little room to each column.

Average margins squeeze words from left and right.

Wide gives space when proofing the manuscript.

Answer:

A.) narrow margins

Explanation:

e2020

____ produces a full-featured, working model of the information system. A. Loose coupling B. Fourth-generation modeling C. System prototyping D. Web servicing

Answers

Answer:

C.system prototyping

Explanation:

Prototyping produces a quickly constructed working version of the proposed information system.

Planning

Analysis

Design

System prototyping

Implementation

Answer:

c. system prototyping

Explanation:

system prototyping  produces a full-featured, working model of the information system.

The scope of a variable declared inside of a function is:a) Local - within that function

b) Within that file only

c) global

Answers

Answer:

The correct answer for the given question is option(a) i.e Local - within that function.

Explanation:

The variable which is declared inside any function are called as local variable The scope and lifetime of local variable is inside that block or function only.

They cannot access outside the function.

Following are the example of local variable

#include <stdio.h> // header file

void fun(); // function prototype

int main()// main function

{

fun(); //calling function

print("%d",t); // it gives error because t is local variable cannot access in main function

return 0;

}

void fun()

{

int t=9;// local variable

printf("t is local variable which value is:");

printf("%d",t);

}

As we seen that t cannot access outside the function .So correct answer is option(a)

Final answer:

The scope of a variable declared inside of a function is local - within that function. This prevents naming conflicts and ensures control over where a variable can be changed.

Explanation:

The scope of a variable declared inside of a function is typically local to that function. This means that it can only be accessed and manipulated within the function it is declared. It is not visible or accessible from outside of the function or elsewhere in the program file, hence options b) and c) are incorrect. This principle is fundamental in programming languages such as JavaScript, C++, Python, etc., and it is designed this way to prevent naming conflicts and provide control over where a variable can be changed.

Learn more about Variable Scope here:

brainly.com/question/36379699

#SPJ6

Other Questions