COMPUTER SCIENCE 10TH – DETAILED QUESTION ANSWERS
CONTROL STRUCTURE
Chapter # 04
Q.1: What are control structures?
Ans:
CONTROL STRUCTURES / STATEMENTS
Control structures control the flow of execution in a program or function. Control structures are used to repeat any block of code, transfer control to a specific block of code, and make a choice by selection. There are three basic control structures in C++ programming:
- Selection / Decision Making Control Structure
- Loops / Iteration Control Structure
- Jumps