User:Shridhar Paudel: Difference between revisions

From ICTED-WIKI
Jump to navigation Jump to search
No edit summary
(Replaced content with "Category: MICTE {| class="wikitable" |+ !SN !Lesson Plan !Topic !Submittion date !reference |- |1 | | | | |- | | | | | |- | | | | | |}")
Tags: Replaced Visual edit
Line 1: Line 1:
=== '''Micro Teaching Lesson Plan 2''' ===
[[Category: MICTE]]
[[Category: MICTE]]
{| class="wikitable"
{| class="wikitable"
|Subject: Programming in C
|+
|Date: 2080/10/24
!SN
!Lesson Plan
!Topic
!Submittion date
!reference
|-
|-
|Class: BICTE
|1
|Period: 2<sup>nd</sup>
|
|
|
|
|-
|-
|Semester: 1<sup>st</sup>
|
|Time: 10 minutes
|
|
|
|
|-
|-
|Topic: Conditional Statement in C
|
|
|
|
|
|
|}
|}
= Specific Objectives: =
At the end of this topic the students will be able to:
a)   Understand the syntax of ''if'' statement
b)   Use of ''if'' statement in suitable situation
= 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 give the concept of ''if'' statement with syntax:
Syntax:       ''if (condition)''
''                   {''
''                   Block of statement 1;''
''                   }''
''                   else''
''                   {''
''                   Block of statement 2;''
''                   }''
c)    I will solve the following program and make students more clear.
Example: Write program in C that accepts any two numbers and display greater one.
                   #include<stdio.h>
                   #include<conio.h>
                   void main()
                   {
                   int a,b;
                   printf(“Enter any two numbers:”);
                   scanf(“%d %d”,&a,&b);
                   if(a>b)
                   {
                   printf(“%d is greater number”,a);
                   }
                   else
                   {
                   printf(“%d is greater number”,b);
                   }
getch();
                   }
= Evaluation: =
In the above discussed program, what will be the output when (a>b) will be replaced by (a<b)?

Revision as of 21:48, 7 February 2024

SN Lesson Plan Topic Submittion date reference
1