All India Exams
  • Sign In / Register Sign In
Home AptitudeBankEngineeringEnglishGKInterviewOnline TestPlacement PapersReasoning
  • Home
  • Aptitude
  • Bank
  • Engineering
  • English
  • GK
  • Interview
  • Online Test
  • Placement Papers
  • Reasoning

Control Flow Statements C Questions And Answers

Here you can find Control Flow Statements C Questions and Answers.

Why Control Flow Statements C Questions and Answers Required?

In this Control Flow Statements C Questions and Answers section you can learn and practice Control Flow Statements C Questions and Answers to improve your skills in order to face technical inerview conducted by Banks. By Practicing these interview questions, you can easily crack any Bank Exams interview.

Where can I get Control Flow Statements C Questions and Answers?

AllIndiaExams provides you lots Control Flow Statements C Questions and Answers with proper explanation. Fully solved examples with detailed answer description. All students, freshers can download Control Flow Statements C Questions and Answers as PDF files and eBooks.

How to solve these Control Flow Statements C Questions and Answers?

You no need to worry, we have given lots of Control Flow Statements C Questions and Answers and also we have provided lots of FAQ's to quickly answer the questions in the Bank Exams interview.

Control Flow Statements C Questions & Answers

1. Which keyword can be used for coming out of recursion?

Control Flow Statements C Questions & Answers

2. What is the output of this C code? int main() { int a = 0, i = 0, b; for (i = 0;i < 5; i++) { a++; continue; } }

Control Flow Statements C Questions & Answers

3. What is the output of this C code? int main() { int a = 0, i = 0, b; for (i = 0;i < 5; i++) { a++; if (i == 3) break; } }

Control Flow Statements C Questions & Answers

4. The keyword ‘break’ cannot be simply used within:

Control Flow Statements C Questions & Answers

5. Which keyword is used to come out of a loop only for that iteration?

Control Flow Statements C Questions & Answers

6. What is the output of this C code? void main() { int i = 0, j = 0; for (i = 0;i < 5; i++) { for (j = 0;j < 4; j++) { if (i > 1) break; } printf("Hi \n"); } }

Control Flow Statements C Questions & Answers

7. What is the output of this C code? void main() { int i = 0; int j = 0; for (i = 0;i < 5; i++) { for (j = 0;j < 4; j++) { if (i > 1) continue; printf("Hi \n"); } } }

Control Flow Statements C Questions & Answers

8. What is the output of this C code? void main() { int i = 0; for (i = 0;i < 5; i++) if (i < 4) { printf("Hello"); break; } }

Control Flow Statements C Questions & Answers

9. What is the output of this C code? void main() { int i = 0; if (i == 0) { printf("Hello"); continue; } }

Control Flow Statements C Questions & Answers

10. What is the output of this C code? void main() { int i = 0; if (i == 0) { printf("Hello"); break; } }

Home EngineeringComputer Science & EngineeringC Multiple Choice Questions & AnswersControl Flow Statements

Control Flow Statements - C Multiple Choice Questions & Answers

This is the c programming questions and answers section on " Control Flow Statements " with explanation for various interview, competitive examination and entrance test. Solved examples with detailed answer description, explanation are given and it would be easy to understand. Are you searching for Questions On Control Flow Statements in C? Aspirants can practice these Control Flow Statements C Questions for the various competitive examinations and interviews with the help of this page. The provided set of Control Flow Statements C Quiz includes the multiple choice questions. So, the contenders can practice the questions in the Control Flow Statements C Online Test by referring to the below sections of this post. The students who are very eager to improve the skills in the C programming can check this article and take part in the Control Flow Statements C MCQ Quiz.



Control Flow Statements C Questions - Control Flow Statements C Quiz Details

Online Test Name Control Flow Statements
Exam Type Multiple Choice Questions
Category Computer Science Engineering Quiz
Number of Questions 97


Control statements enable us to specify the flow of program control that is the order in which the instructions in a program must be executed. They make it possible to make decisions, and to perform tasks repeatedly or to jump from one portion of code to another section. While running the C program, the aspirants need to know in which flow the program will be executed. By checking the Control Flow Statements C Questions on this page, the applicants can understand all the information about the topic. Therefore, the students need to scroll down the page and practice the questions in the Control Flow Statements C Online Test.



Control Flow Statements C Multiple Choice Questions

With the help of the below section, the contenders can check the Control Flow Statements C Multiple Choice Questions. We have covered all the topics in the below Control Flow Statements C Mock Test for the sake of competitors. So, the candidates who are preparing for the examinations and are planning to attend interviews can refer to this post. All the users can learn the basic to the advanced concepts of the Control Flow Statements by practicing the Control Flow Statements C Quiz. Without any delay, the contenders need to take part in the below-provided Control Flow Statements C Online Test.

Control Flow Statements MCQ Quiz Answers with Solutions

Click on the "View Answer" button to check the right option among the given alternatives along with the explanation. There is no time duration and need not use any login details to practice the questions in Control Flow Statements C Online Test. Hence, all the candidates need to learn the Control Flow Statements C Questions and know the concept. Follow allindiaexams.in to practice more online tests and to learn the more topics.


1. Which keyword can be used for coming out of recursion?
  • A. break
  • B. return
  • C. exit
  • D. Both (a) and (b)
  • View Answer
  • Workspace
  • Report
  • Discuss

Answer & Explanation

Answer: Option B

Explanation:

none

Workspace

Report Error


2. What is the output of this C code?

int main()
{
   int a = 0, i = 0, b;
   for (i = 0;i < 5; i++)
  {
     a++;
     continue;
   }
}
  • A. 2
  • B. 3
  • C. 4
  • D. 5
  • View Answer
  • Workspace
  • Report
  • Discuss

Answer & Explanation

Answer: Option D

Explanation:

none

Workspace

Report Error


3. What is the output of this C code?

    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
  • View Answer
  • Workspace
  • Report
  • Discuss

Answer & Explanation

Answer: Option D

Explanation:

none

Workspace

Report Error


4. The keyword ‘break’ cannot be simply used within:
  • A. do-while
  • B. if-else
  • C. for
  • D. while
  • View Answer
  • Workspace
  • Report
  • Discuss

Answer & Explanation

Answer: Option B

Explanation:

none

Workspace

Report Error


5. Which keyword is used to come out of a loop only for that iteration?
  • A. break
  • B. continue
  • C. return
  • D. None of the mentioned
  • View Answer
  • Workspace
  • Report
  • Discuss

Answer & Explanation

Answer: Option B

Explanation:

none

Workspace

Report Error


  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • ...
  • 19
  • 20
  • »

Related Topics:

  • Storage Management
  • C Functions
  • Constants
  • Preprocessor
  • Pointers
  • Structures, Unions, Bit-fields
  • C Operators
  • Variable Names
  • File Access
  • Typedef

Mock Tests & Online Quizzes

  • Aptitude Online Test

  • Reasoning Online Test

  • GK Online Test

  • English Online Test

  • RRB Mock Test

  • RBI Mock Test

  • Free SBI Mock Test

  • IBPS Mock Test FREE

  • SSC Mock Test

  • CAT Exam Mock Test

  • GATE Mock Test

  • LIC Mock Test Series

  • MAT Mock Test

  • SEBI Mock Test

  • ESIC Mock Test

  • IT Courses Quiz

Newsletter

Contact Us

Questions and Answers

  • Aptitude Questions
  • Verbal Reasoning Questions
  • Non Verbal Reasoning Questions
  • Logical Reasoning Questions
  • Data Sufficiency Questions
  • Data Interpretation Questions
  • C Programming
  • C++ Programming
  • PHP Programming
  • Java Programming
  • eLitmus Sample Papers
  • ECE Questions and Answers
  • EEE Questions and Answers
  • Verbal Ability Questions
  • GK Questions
  • AMCAT Mock Online Test
  • LIC Mock Test
  • IBPS Mock Test

Interview Questions

  • Java Interview Questions
  • .Net Interview Questions
  • Networking Interview Questions
  • C Language Interview Questions
  • C++ Interview Questions
  • Testing Interview Questions
  • Android Interview Questions
  • HR Interview Questions
  • Group Discussion Topics
  • iOS Interview Questions
  • Web Technologies
  • Database Interview Questions
  • MS Office Interview Questions
  • Software Tools
  • Data Interpretation
  • PHP Interview Questions
  • CAT Mock Test
  • SSC Mock Test
© by AllIndiaExams.in. All Rights Reserved | Copyright | Terms of Use & Privacy Policy