Showing posts with label CONTROL STRUCTURE. Show all posts
Showing posts with label CONTROL STRUCTURE. Show all posts

CONTROL STRUCTURE-Chapter # 04- COMPUTER SCIENCE 10TH – DETAILED QUESTION ANSWERS

 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:

  1. Selection / Decision Making Control Structure
  2. Loops / Iteration Control Structure
  3. Jumps