Skip to main content

Developing a lesson plan in the subject of your specialization on the basis of 5E learning Model (8638 02 q5)

The 5 E lesson supports inquiry-based instruction. It allows children to make discoveries and to process new skills
in an engaging way. Teachers can also adequately plan power objectives more effectively by using the 5E process. Children
are not just learning with this method, they are more knowledgeable about their own metacognition because they are
coached along and not dictated by teachers merely lecturing. The role of the teacher is to facilitate and support students as
they use prior knowledge to build new knowledge. The 5 Es are:
Engage
Explore
Explain
Elaborate
Evaluate DETAILED LESSON PLAN IN SCIENCE VI
OBJECTIVES
At the end of the lesson, the pupils are expected to:
a) Identify the effects of human activities and the cycles in an ecosystem.
b) Illustrate the cycle in an ecosystem
c) Give importance to the ecosystem
LEARNING CONTENT
TOPIC: Human Activities and the Cycles in an Ecosystem
MATERIALS: Charts, Pictures
REFERENCE: Science and Health 6, pp.84-87
PRESENTATION and QUESTION ANSWERS
The atmosphere normally has about 21% oxygen and 0.03% carbon dioxide. The continuous exchange of these gases
between green plants and animals maintains the oxygen-carbon dioxide level. Unfortunately, man’s destructive activities
disrupt this balance. if trees and another green plant become scarce in an ecosystem, the supply of oxygen is reduced. As a
result, the amount of CO2 in the air increases, and the O2 and CO2 is disrupted. The cutting down of trees has resulted in
the rapid denudation of our forest.
GENERALIZATION
The cycles of ecosystem may be disrupted by natural disasters such as typhoon, earthquakes, volcanic eruptions and by
human activities such as uncontrolled cutting of trees, kaingin, combustion of fossil fuels, and throwing of garbage in the
river.
EVALUATION Different objective questions related to the topic will be asked.
ASSIGNMENT List down fast growing trees that should be planted to increase forest cover.

Comments

Popular posts from this blog

Jeeto Pakistan Show Essay

Jeeto Pakistan Jeeto Pakistan is a popular and successful show  world wide. It is on aired twice a weak; on Friday and Sunday 11 month of the year and daily during Ramadan. It was started 4 years ago during Ramadan and it is hosted by Pakistan’s celebrity of showbiz industry Fahad Mustafa. Fahad Mostafa is youngest celebrity of Pakistan and he is hosting this show from the very first day till now. He has also done work in many drama serials and movies, his recent famous movie was Actor in Law. Jeeto Pakistan show is on aired at ARY channel in evening from 19:30 to 22:30. It is totally a commercial show which is sponsored by different companies like Q. Mobilejk , Sogo, Qarshi and many other companies. This show includes many segments and each segment offers different prizes like bikes, cars, gold, ummrah tickets, commercial plots and many other appliances are distributed among people. People are selected for this show by Lucky Draw and one can be selected by doing shopping of ...

Area Calculation By ImageJ

  Area Calculation By ImageJ      Open the Software      File => Open       Zoom in the Image and select the straight line        Mark the small line on graph and go to analyse => set scale      Set known distance 01, unit cm and click ok       Go to free hand and cover the area you want to calculate       Then press (ctrl + m) repeat the process for 3 time       After that go to the result and summarize 

Weight conversion program using functions in c++

#include<iostream> using namespace std; int num(int n) { cout<<"num of chocolate:"; cin>>n; return n; } int ounce(int a) { cout<<"weight in ounce:"; cin>>a; return a; } int pound(int b) { cout<<"weight in pound:"; cin>>b; return b; } int main () { int n, a, b; char choice; cout<<"enter choice 'o' for ounce and 'p' for pounds:"; cin>>choice; int x, y, z; x = num(n); y = ounce(a); z = pound(b); if (choice == 'o') {cout<<"total weight in ounce:"<<x*y;} if (choice == 'p') {cout<<"total weight in pounds:"<<x*z;} return 0; } ************************** Output: