adplus-dvertising

Welcome to the Control Flow Statements in C MCQs Page

Dive deep into the fascinating world of Control Flow Statements in C with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Control Flow Statements in C, a crucial aspect of C Programming. In this section, you will encounter a diverse range of MCQs that cover various aspects of Control Flow Statements in C, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within C Programming.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Control Flow Statements in C. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of C Programming.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Control Flow Statements in C. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Control Flow Statements in C MCQs | Page 7 of 32

Q61.
Example of iteration in C
Discuss
Answer: (d).all of the mentioned
Q62.
Number of times while loop condition is tested is, i is initialized to 0 in both case.

while (i < n)
i++;
————-
do
i++;
while (i <= n);
Discuss
Answer: (d).n+1, n+1
Q63.
What is the output of this C code?
#include <stdio.h>
    int main()
    {
        int i = 0;
        while (i = 0)
            printf("True\n");
        printf("False\n");
    }
Discuss
Answer: (c).False
Q64.
What is the output of this C code?
#include <stdio.h>
    int main()
    {
        int i = 0, j = 0;
        while (i < 5, j < 10)
        {
            i++;
            j++;
        }
        printf("%d, %d\n", i, j);
    }
Discuss
Answer: (c).10, 10
Q65.
Which loop is most suitable to first perform the operation and then test the condition?
Discuss
Answer: (c).do-while loop
Q66.
Which keyword can be used for coming out of recursion?
Discuss
Answer: (b).return
Q67.
What is the output of this C code?
#include <stdio.h>
    int main()
    {
        int a = 0, i = 0, b;
        for (i = 0;i < 5; i++)
        {
            a++;
            continue;
        }
    }

a.

2

b.

3

c.

4

d.

5

Discuss
Answer: (d).5
Q68.
What is the output of this C code?
#include <stdio.h>
    int main()
    {
        int a = 0, i = 0, b;
        for (i = 0;i < 5; i++)
        {
            a++;
            if (i == 3)
                break;
        }
    }

a.

1

b.

2

c.

3

d.

4

Discuss
Answer: (d).4
Q69.
The keyword ‘break’ cannot be simply used within:
Discuss
Answer: (b).if-else
Q70.
Which keyword is used to come out of a loop only for that iteration?
Discuss
Answer: (b).continue

Suggested Topics

Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!