























Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
The basics of algorithms and flowcharts, explaining how they are used in the problem-solving and implementation phases of programming tasks. It includes examples of pseudo code and flowcharts for determining student grades, converting lengths, calculating rectangle areas, and solving quadratic equations. It also introduces decision structures and relational operators.
Typology: Assignments
1 / 31
This page cannot be seen from the preview
Don't miss anything!
























COVERED BASICS ABOUT ALGORITHMS AND FLOWCHARTS
(^) produce an ordered sequence of steps that describe solution of problem (^) this sequence of steps is called an algorithm
(^) implement the program in some programming language
Example 1: Write an algorithm to determine a student’s final grade and indicate whether it is passing or failing. The final grade is calculated as the average of four marks.
(Dictionary) A schematic representation of a sequence of operations, as in a manufacturing process or computer program. (Technical) A graphical representation of the sequence of operations in an information system or program. Information system flowcharts show how data flows from source documents through the computer to final distribution to users. Program flowcharts show the sequence of instructions in a single program or subroutine. Different symbols are used to draw each type of flowchart.
A Flowchart (^) shows logic of an algorithm (^) emphasizes individual steps and their interconnections (^) e.g. control flow from one action to the next
PRINT “PASS ” Step 1: Input M1,M2,M3,M Step 2: Step 3: GRADE (M 1 +M2+M 3 +M4)/ if (GRADE <50) then Print “FAIL” else Print “PASS” endif STAR T Input M1,M2,M3,M GRADE (M1+M2+M3+M4)/ IS GRADE< 0 PRINT “FAIL ” STOP N Y
Write an algorithm and draw a flowchart to convert the length in feet to centimeter. Pseudo code : Input the length in feet (Lft) (^) Calculate the length in cm (Lcm) by multiplying LFT with 30 Print length in cm (LCM)
Algorithm Step 1: Step 2: Step 3: Input W,L A L x W Print A STAR T Input W, L A L x W Print A STOP
Pseudo code : Input the coefficients (a, b, c) of the quadratic equation (^) Calculate d Calculate x 1 Calculate x Print x 1 and x
(^) Step 1: Input a, b, c (^) Step 2: (^) Step 3: (^) Step 4: (^) Step 5: Print x 1, x 2 d sqrt ( (^) b b 4 a c ) x 1 (– b + d ) / (2 x a ) x 2 (– b – d ) / (2 x a ) STAR T Input a, b, c d sqrt( b x b – 4 x a x c ) STOP x 1 (– b + d ) / (2 x a ) X 2 (– b – d ) / (2 x a ) Print x 1 , x 2
is A>B Print B Print A Y N
The structure is as follows: If condition then true alternative else false alternative endif