User:Shridhar Paudel/Lesson Plan 1: Difference between revisions

From ICTED-WIKI
Jump to navigation Jump to search
Micro Teaching Lesson Plan 1
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
Lesson Plan 1
'''Lesson Plan 1'''
Subject: Programming in C Date: 2080/10/23
{| class="wikitable"
Class: BICTE Period: 2nd
|Subject: Programming in C
Semester: 1st Time: 10 min.
|Date: 2080/10/23
Topic: Basic Program in C
|-
Specific Objectives:  
|Class: BICTE
|Period: 2<sup>nd</sup>
|-
|Semester: 1<sup>st</sup>
|Time: 10 minutes
|-
|Topic: Basic Program in C
|
|}
 
= Specific Objectives: =
At the end of this topic the students will be able to:
At the end of this topic the students will be able to:
a) Understand some data types in C
 
b) Follow the proper format/structure using simple program.
a)   Understand some data types in C
Teaching Materials:
 
b)   Follow the proper format/structure using simple program.
 
= Teaching Materials: =
Whiteboard, Marker, Computer
Whiteboard, Marker, Computer
Teaching Learning Activities:
 
a) At first, I will revise the topic which was taught last day within one minute.
= Teaching Learning Activities: =
b) Then I will teach data types used in C like:
a)   At first, I will revise the topic which was taught last day within one minute.
 
b)   Then I will teach data types used in C like:
 
char – single character/string
char – single character/string
int – integer value
int – integer value
float – decimal / integer value
float – decimal / integer value
c) I will also teach simple program to make it clear.
 
c)    I will also teach simple program to make it clear.
 
Example: Write program in C that ask two numbers and display sum.
Example: Write program in C that ask two numbers and display sum.
#include<stdio.h>
 
#include<conio.h>
                   #include<stdio.h>
void main()
 
{
                   #include<conio.h>
int a,b,sum;
 
printf(“Enter any two numbers:”);
                   void main()
scanf(“%d %d”,&a,&b);
 
sum=a+b;
                   {
printf(“Sum = %d”,sum);
 
getch();
                   int a,b,sum;
}
 
d) I will also clear the doubt of the students if any.
                   printf(“Enter any two numbers:”);
Evaluation:
 
                   scanf(“%d %d”,&a,&b);
 
                   sum=a+b;
 
                   printf(“Sum = %d”,sum);
 
                   getch();
 
                   }
 
d)   I will also clear the doubt of the students if any.
 
= Evaluation: =
In the above discussed program, can we use the variables x,y in place of a,b to calculate sum?
In the above discussed program, can we use the variables x,y in place of a,b to calculate sum?

Latest revision as of 10:33, 8 February 2024

Lesson Plan 1

Subject: Programming in C Date: 2080/10/23
Class: BICTE Period: 2nd
Semester: 1st Time: 10 minutes
Topic: Basic Program in C

Specific Objectives:

At the end of this topic the students will be able to:

a)   Understand some data types in C

b)   Follow the proper format/structure using simple program.

Teaching Materials:

Whiteboard, Marker, Computer

Teaching Learning Activities:

a)   At first, I will revise the topic which was taught last day within one minute.

b)   Then I will teach data types used in C like:

char – single character/string

int – integer value

float – decimal / integer value

c)    I will also teach simple program to make it clear.

Example: Write program in C that ask two numbers and display sum.

                   #include<stdio.h>

                   #include<conio.h>

                   void main()

                   {

                   int a,b,sum;

                   printf(“Enter any two numbers:”);

                   scanf(“%d %d”,&a,&b);

                   sum=a+b;

                   printf(“Sum = %d”,sum);

                   getch();

                   }

d)   I will also clear the doubt of the students if any.

Evaluation:

In the above discussed program, can we use the variables x,y in place of a,b to calculate sum?