Advertisements
Advertisements
प्रश्न
Define control structure.
Advertisements
उत्तर
A program statement that causes a jump of control from one part of the program to another is called a control structure or control statement. As you have already learned in C++, these control statements are compound statements used to alter the control flow of the process or program depending on the state of the process.
APPEARS IN
संबंधित प्रश्न
Elif can be considered to be the abbreviation of ______.
Which is the most comfortable loop?
What is the output of the following snippet?
i=1
while True:
if i%3 ==0:
break
print(i,end='')
i +=1
Write a note on the break statement.
Write is the syntax of if..else statement?
Write a note on if..else structure.
Write the syntax of the while loop.
Write a detail note on for loop?
Write a detailed note on if..else..elif statement with suitable example.
Write a program to display a multiplication table for a given number.
