|
| 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 two numbers? |
| Flowchart |
Procedure |
Try It Yourself |
Sum of two numbers
|
Start
Read A,B
Sum = A + B
Print Sum
Stop
|
|
Step 1: Read two numbers in a variable A and B
Step 2: Add A and B then assign the result to a variable Sum
Step 3: Display or print the variable Sum
|
|
|