User:Bishu Thapa/real teaching 3: Difference between revisions

From ICTED-WIKI
Jump to navigation Jump to search
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div style="column-count: 2; column-gap: 20px;">
<div style="column-count: 2; column-gap: 20px;">
'''Subject:''' C programing.
'''Subject:''' Computer Science


'''Period:''' first
'''Period:''' first


'''Topic:''' operators and its types
'''Topic:''' Numbers System and conversion Boolean Logic


'''Teaching Item:''' operators in c programming language
'''Teaching Item:''' conversion Decimal Number system to octal and vice versa. 


'''Class:''' BICT 1st semester
'''Class:''' Class 11


'''Unit:''' One
'''Unit:''' Two


'''Time:''' 15 min
'''Time:''' 45 minutes


'''No. of Students:''' 10
'''No. of Students:''' 23
</div>
</div>


== Objectives ==
== Objectives ==
At the end of this lesson, students will be able to
At the end of this lesson, students will be able to
# To define operators.
# To give example of Arithmetic, Relational and logical operators used in c  programming


== Teaching Materials ==
== Teaching Materials ==
Line 31: Line 28:
# Introduce today's topic with students.
# Introduce today's topic with students.
# Revise necessary topics required to learn previous topics.
# Revise necessary topics required to learn previous topics.
# I will explain Arithmetic, Relational and logical operators with its examples.
# I will explain Binary number system and octal number system.
# Sum up the topic and ask students if they have any doubt.
#I will explain the step with example to convert (5674)10=(?)8
##Divide the given number system by 8.
##Write the quotient under the number. This number becomes the new number
##write the remainder on right side. 
##Repeat steps (a) to (c) until 0 is produced as the new number.
##The 1's and 0's written as the remainder in reverse order. (i.e. button to top) is the required 0ctal number.
#I will show conversion steps octal number system to decimal number system using example.
## Write the octal digits as the power of 8 increasing from right to left to write starting from point 0 and so on.
## convert each power of 8 into its decimal equivalent term.
## add all these to give the decimal numbers.
## I will convert (43)8=(?)10.


== Classroom Assessment ==
== Classroom Assessment ==


# What is meant by operators?
#convert (8764)<sub>10</sub>=(?)<sub>8</sub>
# Give some examples of logical operators?
# convert (5674)<sub>10</sub>=(?)<sub>8</sub>
# convert (5674)<sub>8</sub>=(?)<sub>10</sub>


== Assignment ==
== Assignment ==
Solve the exercises 2.1,4
Solve the exercises 3,4.

Latest revision as of 05:37, 16 May 2024

Subject: Computer Science

Period: first

Topic: Numbers System and conversion Boolean Logic

Teaching Item: conversion Decimal Number system to octal and vice versa.

Class: Class 11

Unit: Two

Time: 45 minutes

No. of Students: 23

Objectives

At the end of this lesson, students will be able to

Teaching Materials

  • Daily materials

Teaching Learning Activities

  1. Introduce today's topic with students.
  2. Revise necessary topics required to learn previous topics.
  3. I will explain Binary number system and octal number system.
  4. I will explain the step with example to convert (5674)10=(?)8
    1. Divide the given number system by 8.
    2. Write the quotient under the number. This number becomes the new number
    3. write the remainder on right side. 
    4. Repeat steps (a) to (c) until 0 is produced as the new number.
    5. The 1's and 0's written as the remainder in reverse order. (i.e. button to top) is the required 0ctal number.
  5. I will show conversion steps octal number system to decimal number system using example.
    1. Write the octal digits as the power of 8 increasing from right to left to write starting from point 0 and so on.
    2. convert each power of 8 into its decimal equivalent term.
    3. add all these to give the decimal numbers.
    4. I will convert (43)8=(?)10.

Classroom Assessment

  1. convert (8764)10=(?)8
  2. convert (5674)10=(?)8
  3. convert (5674)8=(?)10

Assignment

Solve the exercises 3,4.