Computer Science, asked by Nemichandg95gmail, 7 months ago

Which of the following is not a basic
control structure?
इनमें से कौन सा बुनियादी कंट्रोल स्ट्रक्चर नहीं है?
Select one:
a. The process
प्रोसेस
b. The loop
C. The decision
डिसिशन
d. The sequential
सिक्वेन्शिअल​

Answers

Answered by ayush13008kuma2r
4

Answer:

D. the sequential ......

Answered by vishakasaxenasl
2

Answer:

The correct answer is option(a)

The process is not a basic control structure.

Explanation:

Control Structure defines those parameters that can control the flow of the program.

In a program, there can be different types of control structures like Loop structure, decision structure, or sequential structure. Let's understand them one by one:

  • The loop: Loop contains those instructions that needed to be repeated a certain number of times. It frees the programmer from writing the same statements again and again. So, we can say that it binds the control for some time only to a specific block.
  • The Decision: At some point, we need to make some decisions based on the output of the previous computation. For example: if the output is positive, we want to display a congratulation message and for negative output, we want to display try again. So this is also a control structure because it is controlling the flow of the program.
  • The sequential: Sequential means executing the instructions in the same order in which they are written.

In the given options only the Process is the one that cannot control the flow of the program. So it can't be said to the basic control structure.

#SPJ3

Similar questions