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
Q1: Write a Pseudocode which inputs Studentname, test1, test2, test3 marks and produce an output of student name, all his/her marks and average as well.
DECLARE STNAME: STRING
DECLARE TEST1, TEST2, TEST3: INTEGER
DECLARE AVG: REAL
OUTPUT “ENTER STUDENT NAME:”
INPUT STNAME
OUTPUT “ENTER TEST1 MARKS:”
INPUT TEST1
OUTPUT “ENTER TEST2 MARKS:”
INPUT TEST2
OUTPUT “ENTER TEST3 MARKS:”
INPUT TEST3
AVG ← (TEST1+ TEST2+TEST3)/3
OUTPUT “”
OUTPUT “=======RESULT=======”
OUTPUT “STUDENT NAME:”, STNAME
OUTPUT “TEST1 MARKS:”, TEST1
OUTPUT “TEST2 MARKS:”, TEST2
OUTPUT “TEST3 MARKS:”, TEST3
OUTPUT “AVG MARKS:”, AVG
OUTPUT “==============”
Create same python code here :