retagged by
1,606 views

1 Answer

2 votes
2 votes
Answer D

Control structure defines the sequence of all the statements that are executed. The control structure includes: Sequence execution, Loop means iteration as for-loop, two way decisions as if-else, Exception Statement as try and catch and rendezvous statements.
Answer:

Related questions

3 votes
3 votes
3 answers
1
admin asked Mar 31, 2020
1,880 views
What is the correct way to round off $x$, $a$ $\text{float}$ to an $\text{int}$ value?$y=(\text{int})(x+0.5)$$y=\text{int} (x+0.5)$$y=(\text{int}) x+0.5$$y=(\text{int})(\...
5 votes
5 votes
6 answers
2
admin asked Mar 31, 2020
2,176 views
What error would the following function give on compilation? f(int a, int b) { int a; a=20; return a; }Missing parenthesis is $\textit{return}$ statement.Function should ...
4 votes
4 votes
1 answer
3
admin asked Mar 31, 2020
2,118 views
Prior to using a pointer variable it should bedeclared.initialized.both declared and initialized.none of these.
4 votes
4 votes
1 answer
4
admin asked Mar 31, 2020
3,280 views
Output of the following loop isfor(putchar('c');putchar ('a');putchar('r')) putchar('t');a syntax error.cartrt.catrat.catratratratrat...