Search Results for:
-
Lesson 69: Integrated Development Environment (IDE)
What is an IDE? An Integrated Development Environment (IDE) is a single piece of software that provides comprehensive facilities to […]
No Comments -
Lesson 61: Program Development Life Cycle
What is Program Development? Program development is the process of designing, creating, testing, and maintaining software programs. It helps solve […]
No Comments -
Lesson 63: Notions on Algorithms
What is an Algorithm? An algorithm is a step-by-step procedure for solving a problem or achieving a particular goal. It […]
No Comments -
Lesson 71: Introduction to Programming
Program Errors and Correction Syntax error: a place in a program where the syntax rules of the programming language were […]
No Comments -
Lesson 72: Declarative Instructions
Basic Data Types Integers (int): whole numbers, either positive, negative, or zero (e.g., 1, 2, -4, 0), used for counting, […]
No Comments -
Lesson 73: Operators
Arithmetic Operators Addition (+): adds two or more numbers together, e.g. 2 + 3 equals 5. Subtraction (-): subtracts one […]
No Comments -
Lesson 74: Input, Output and Assignment Instructions
Input Reading data from the user or a file uses functions such as scanf() or cin in C++. For example, […]
No Comments -
Lesson 75-77: Writing, Compiling and Executing a Program
Representing an Algorithm as a Program Once an algorithm has been designed, it can be translated into a working program […]
No Comments -
Lesson 79: Introduction to Web Programming
HTML and CSS HTML (Hypertext Markup Language) is a standard markup language for structuring content on the web, used for […]
No Comments -
Lesson 80: Common HTML Tags
Elements, Tags and Attributes Element: a fundamental building block of an HTML document, represented by a tag. Elements can contain […]
No Comments