- Pascal - Classes
- Pascal - Objects
- Pascal - Date & Time
- Pascal - Units
- Pascal - Memory
- Pascal - File Handling
- Pascal - Sets
- Pascal - Variants
- Pascal - Records
- Pascal - Pointers
- Pascal - Arrays
- Pascal - Booleans
- Pascal - Strings
- Pascal - Variable Scope
- Pascal - Procedures
- Pascal - Functions
- Pascal - Loops
- Pascal - Decision Making
- Pascal - Operators
- Pascal - Constants
- Pascal - Variable Types
- Pascal - Data Types
- Pascal - Basic Syntax
- Pascal - Program Structure
- Pascal - Environment Setup
- Pascal - Overview
- Pascal - Home
Pascal Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Pascal - Decision Making
Decision making structures require that the programmer specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false.
Following is the general form of a typical decision making structure found in most of the programming languages −
Pascal programming language provides the following types of decision making statements. Cpck the following pnks to check their detail.
Sr.No | Statement & Description |
---|---|
1 |
An if - then statement consists of a boolean expression followed by one or more statements. |
2 |
An if - then statement can be followed by an optional else statement, which executes when the boolean expression is false. |
3 |
You can use one if or else if statement inside another if or else if statement(s). |
4 |
A case statement allows a variable to be tested for equapty against a pst of values. |
5 |
It is similar to the if-then-else statement. Here, an else term follows the case statement. |
6 |
You can use one case statement inside another case statement(s). |