1 |
A ____ could be any vilid expresion including arithmetic expression relational expression,s logical expressions. |
If
condition
while
compound
|
2 |
A set of multiple instructions enclosed in braces is called a block or. |
if
if -else
while
compound
|
3 |
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
|
4 |
If we want to assocate more than one statements to an if statement, then they need to be enclosed inside a. |
()
{ }
*
:
|
5 |
In whihc statement we -specify a condition, and assoclate a code to it. |
go to
selection
If
loop
|
6 |
How many types of selection structure. |
1
2
3
4
|
7 |
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
|
8 |
In which control all the statments are executed in the given dequence. |
Error Control Statements
Selection ctonrol statemetns
Repetition cotrol statements
Sequential Control Statements
|
9 |
Which of the followingt is the default control structrue in C language. |
Sequenctial Control Statements
Selection Control statements
Repetition Control Statements
Error Control Statements
|
10 |
Which of the following is not a type of control statements in C language. |
Sequential Control Statements
Selection control statements
Repetitio contorl statements
Error Control Statements
|
11 |
How many types of control statements |
1
2
3
4
|
12 |
To initialize the array in a single statement, initialize it ___________ declaration: |
at the time of
after
before
both a & b
|