1 |
Whihc of the following is a decision statement is called. |
Nested if
Simple if
Many if
Multiple if
|
2 |
Selection statements within selection statements are called. |
if -else
condition
while
nested selection structures
|
3 |
_______ statement excutes the set of statements under if statements if the condition is true and execute the set of statemetns under else other wise, |
if - else
condition
while
compound
|
4 |
A ____ could be any vilid expresion including arithmetic expression relational expression,s logical expressions. |
If
condition
while
compound
|
5 |
A set of multiple instructions enclosed in braces is called a block or. |
if
if -else
while
compound
|
6 |
Which Statements is used ot execute not set of instructions, if a particular condition is true and another set of instructions if the condition is false. |
if
else
if else
loop
|
7 |
If we want to assocate more than one statements to an if statement, then they need to be enclosed inside a. |
()
{ }
*
:
|
8 |
In whihc statement we -specify a condition, and assoclate a code to it. |
go to
selection
If
loop
|
9 |
How many types of selection structure. |
1
2
3
4
|
10 |
The statements which help us to decide whihc statements should be executed next, on the basis of conditions, are called. |
Error Control Statements
Selection statements
Sequential Control Statements
Repetition Control Statements
|
11 |
In which control all the statments are executed in the given dequence. |
Error Control Statements
Selection ctonrol statemetns
Repetition cotrol statements
Sequential Control Statements
|
12 |
Which of the followingt is the default control structrue in C language. |
Sequenctial Control Statements
Selection Control statements
Repetition Control Statements
Error Control Statements
|