C-Control Instructions Questions and Answers
In C programming, control instructions define the flow of execution using decision-making, looping, and branching statements. Commonly tested in programming questions and answers, this concept evaluates a candidate’s logical thinking and problem-solving skills. Companies like TCS, Wipro, and Infosys often include C control instruction questions with answers in their online assessments and interviews. By mastering conditional statements (if-else, switch), loops (for, while, do-while), and jump statements, programmers can write optimized code. This section provides solved C programming MCQs and explanations to help you understand control flow deeply and perform better in technical placement rounds.
C-Control Instructions
Showing 10 of
24 questions
22. What is nesting of loops?
- Using multiple loops in program
- Placing one loop inside another
- Using loops with functions
- Breaking loops
23. Which statement transfers control to a labeled statement?
- break
- continue
- goto
- switch
24. What is the purpose of conditional operator (?:) in C?
- Mathematical calculation
- Function definition
- Shorthand for if-else
- Variable declaration