Computer Science, asked by aryankumatanda, 5 months ago

3. __flow of control can be achieved by using if statement.​

Answers

Answered by Anonymous
1

Answer:

Statement flow of control can be achieved by using if statement ..

Explanation:

If you find my answer helpful than mark my answer as Brainliest ...

Answered by nasaanirudh
0

Answer:

Conditional statements and loops are a very important tool in programming. There aren't many things we could do with code that can only execute line-by-line unconditionally. That's what "flow control" means - guiding the execution of our program, instead of letting it execute line-by-line regardless of any internal or external factors. Every programming language supports some form of flow control, if not explicitly via ifs and fors, or similar statements - then it implicitly gives us the tools to create such constructs, i.e. low-level programming languages usually achieve that affect with a lot of go-to commands. Loops were a concept used long before computer programming was even a thing, but the first person to use a software loop was Ada Lovelace, commonly known by her maiden name - Byron, while calculating Bernoulli numbers, back in the 19th century.

Similar questions