Currently Empty: $0.00
Paper 1 – Theory (Typically 2 hours)
0/20
Introduction Paper 2 – Practical (Typically 2 hours) done
0/2
Problem Solving
0/5
Relation of Real Life and Programming done
0/5
Stages of Programming
0/14
Dealing with Constructs
0/24
Question Set 3
0/3
Flow charts – The easy concept
Concept of Validations
0/6
Question Set 4
0/2
Dealing with 1D Arrays
Dealing with 2D Arrays
Linear search with !D Array – The common pattren
Bubble Sort – The common Pattren
Modular Programming – Concept of Procedures and Functions
Handling Errors in Pseudocode
File Handling
File handling – with 1D Array
Logic Gates
Databases
PSEUDOCODE:
DECLARE NUM: INTEGER
OUTPUT “ENTER NUMBER”
INPUT NUM
IF NUM> = 0 AND NUM < =10
THEN
OUTPUT “BETWEEN 0 TO 10”
ELSEIF NUM>=11 AND NUM<=20”
OUTPUT “BETWEEN 11 TO 20”
ELSEIF NUM>=21 AND NUM<=30”
OUTPUT “BETWEEN 21 TO 30”
ELSEIF NUM>30 AND NUM<=50”
OUTPUT “BETWEEN 30 TO 50”
ELSE
OUTPUT “EITHER IT IS NEG OR MORE THAN 50”
ENDIF
REWRITE IN YOUR NOTE BOOK