Match the 1. match the column a to column bcolumn a column b(a) logical boolean operator 1. loop within another loop(b) exit 2. similar to do... loop(c) while... wend 3. come out of loop(d) nested loop 4. looping(e) repetition of statements 5. and operator2. tick() the correct option:(a) which of the following is used to take decision in the program ?(1) end if() if-then-else(iv) not operator(w) cls(b) which of the following is used to transfer the control of the program to specific labelor line number?(1) too goto(iv) transfer(iii) send3. write a program to display a table of 5 less than 11 using do-while loop.(don't spam )
Answers
Answered by
5
Answer:
a-5
b-3
c-2
d-1
e-4
2-if-then-else
b-goto
3.
include <stdio.h>
main()
{
int i=1;
do{
printf("5*i=%d",5*i);
}while(i<12);
}
Explanation:
Answered by
0
Answer:
if u feel that my answer is correct then mark me as brainliest...nested loop - looping with another loop
Attachments:
Similar questions