|
| Introduction |
| Computer programming |
| Variables, constants |
| Mathematical operators |
|
| Analysis and Problem solving |
| Flowchart |
| Algorithm |
|
| Flowchart Level 1 |
| Sum of two numbers |
| Sum of three numbers |
| Sum of N numbers |
| Subtraction |
| Multiplication |
| Division |
| Tables generation |
| Largest numbers out of 2 |
| Largest number out of 3 |
| Largest number out of N |
| Ascending orders (Alphabets) |
| Descending orders (Alphabets) |
| Array add |
| Array subtract |
| Two Matrix addition |
| Two matrix subtraction |
| Two Matrix multiplication |
| Ascending order (Numbers) |
| Descending order (Numbers) |
| Palindrome |
| String manipulation |
| Fibonacci numbers |
| Generate triangle using |
|
|
|
| Computer Programming Fundamentals – Problem solving skills |
| Problem: How to add three numbers? |
| Flowchart |
Procedure |
Try It Yourself |
Sum of three numbers
|
Start
Read A,B,C
Sum = A + B + C
Print Sum
Stop
|
|
Step 1: Read three numbers in variables A, B and C
Step 2: Add A, B and C then assign to a variable Sum
Step 3: Print the variable Sum
|
|
|