User:Elina Real Teaching Lesson Plan 20

From ICTED-WIKI
Revision as of 03:15, 12 March 2024 by WikiSysop (talk | contribs) (→‎Assessment:)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Subject:Computer Science Class:8"A"
Unit:18 Topic:Pseudocode
Period:7th Time:45min
no of student:64 School:Adarsha Secondary School

Specific Objective:[edit | edit source]

  • Students will understand the basic concept of pseudocode.
  • Students will be able to write clear and effective pseudocode to represent algorithms.
  • Students will practice translating pseudocode into actual code in a programming language.
  • Studnet will be able to differentiate between flow chart and pseudocode.

Teaching Material:[edit | edit source]

Diff of flow chart and pseudocode

Daily uses material

Teaching Learning Activity:[edit | edit source]

  • Begin by discussing the basic concept of pseudocode.
  • Disscuss how to use varaible, input/output ,process and basic operation in pseudocode.
  • Discuss the simple example:
  • Write a pseudocode to find greater number between 2 number.(

Start

Read A,B

If "A is greater than "B" THEN

Display "A is greater"

ELSE

Display "B is greater"

ENDIF

Stop)

  • Write a pseudocode to find the area of rectangle(

Start

input the value of length

input the value of breadth

Area=Length*breadth.

Display Area

Stop)

  • Explain the process of translating pseudocode into an actual programming language.
  • Summarize the key concepts learned in the lesson.

Assessment:[edit | edit source]

Evaluate Studnet based on their participation in discussion and assign a following questions:

  • Write a pseudocode to display all even number from 2 to 20.
  • Write a pseudocode to find the sum and avarage of 3 different input number.
  • write a pseudocode to print ten multiples of the input number.