Entrance Announcement
MICTE 2080
2080 Magh 07
User:Ankitpanta/ Real Teaching Lesson Plan 20
Jump to navigation
Jump to search
Subject | Grade | Topic | Time | Period |
---|---|---|---|---|
Computer Science | IX | Qbasic Statements | 45 mins | 5th |
Specific Objectives[edit | edit source]
At the end of lesson student will be able to:
- Understand the fundamental QBASIC statements.
- Write and execute simple programs using QBASIC.
Teaching Aids[edit | edit source]
- Whiteboard and markers
- Computers with internet access (optional)
Introduction (5mins)[edit | edit source]
- Begin by discussing the Statements used in Qbasic.
Overview (15mins)[edit | edit source]
Basic Syntax :[edit | edit source]
Display the basic syntax of a QBASIC program on the projector.
- Explain each part of the syntax:
PROGRAM
: Begins the program.YourProgramName
: Name of the program.' Declarations
: Optional section for declaring variables and constants.' Statements
: Actual code or instructions.END PROGRAM
: Ends the program.
Key Statements[edit | edit source]
- PRINT Statement:
- Explain the
PRINT
statement to display output. - Demonstrate examples like:
- Explain the
- INPUT Statement:
- Discuss the
INPUT
statement to take user input. - Provide examples:
- Discuss the
- LET Statement:
- Explain the
LET
statement for assignment. - Show examples:
- Explain the
- IF...THEN...ELSE Statement:
- Introduce the
IF...THEN...ELSE
statement for conditional execution. - Provide examples:
- Introduce the
- FOR...NEXT Statement:
- Explain the
FOR...NEXT
loop for iteration. - Demonstrate examples:
- Explain the
Classroom Activities(15mins)[edit | edit source]
- Students will given a question to calculate simple interest.
Conclusion (10mins)[edit | edit source]
- Students gets basic knowledge on Statements used in Qbasic.
Assessment[edit | edit source]
- Informal assessment through class participation and engagement during discussions.