1 |
Which of the following is the default control structure in C language ? |
|
2 |
_______ statement excutes the set of statements under if statements if the condition is true and execute the set of statemetns under else other wise, |
- A. if - else
- B. condition
- C. while
- D. compound
|
3 |
_________ statement executes the set of statements under if statement if the condition is true and executes the set of statements under else otherwise: |
- A. if else
- B. condition
- C. while
- D. compound
|
4 |
A ____ could be any valid expression including arithmetic expressions, relational expressions, logical expressions: |
- A. if
- B. while
- C. compound
- D. condition
|
5 |
If we want to assocate more than one statements to an if statement, then they need to be enclosed inside a. |
|
6 |
Which statement is used to execute one set of instructions if a particular condition is true and another set of instructions if the condition is false ? |
- A. if
- B. if else
- C. else
- D. loop
|
7 |
How many types of control statements are available in C language ? |
|
8 |
The statements which help us to decide whihc statements should be executed next, on the basis of conditions, are called. |
- A. Error Control Statements
- B. Selection statements
- C. Sequential Control Statements
- D. Repetition Control Statements
|
9 |
In whihc statement we -specify a condition, and assoclate a code to it. |
- A. go to
- B. selection
- C. If
- D. loop
|
10 |
In which control all the statements are executed in the given sequence: |
|