For Loop and While Loop in Pascal Programming – Lesson 7

In this article, we seek to explore the for loop and while loop in Pascal programming. Loops make our lives easier. They are great tools in programming when we have large amounts of repetitive processes to run. In this article, we will explore: What are the for and while loops used for? In Pascal programming, … Read more

Pascal Variables – Lesson 2

As with any other programming language, Pascal variables are meant to hold data of different types that are expected to change while the program is being run. The types of variables used in Pascal programs are char, string, integer, real and boolean. To initialize a variable, we write the variable name followed by a colon … Read more