Skip to main content

ICT as instructional aids in science teaching and learning process (8638 02 2)

Question 02: Elaborate ICT as instructional aids in science teaching and learning process. 
Answer:
ICT as a pedagogical tool for support in the teaching and learning processes is still used in differentdegrees and with different levels of success. In view of the various applications of ICT in other areas, it is a wonder that ICT is not more used in teaching at tertiary level. The aim of this paper is thus to investigate the use of ICT teaching aids in the interactions between lecturer and students at tertiary level from a student perspective. Student perceptions and appreciation of the use of different ICT teaching aids in the interactions with their lecturer were analysed.
Research shows that teacher-student interaction is very much beneficial in motivating students as well as in supporting them in their studies (Panchoo, 2010, Audet, 08: 35-36). This support has gone beyond the classroom with the advent of Information and Communication Technologies (ICT): the Internet and the social networks are opening more possibilities to the field of education. The use of ICT in the field of education is still used primarily as a communication tool rather than a pedagogical tool (Panchoo, 2010). Electronic mail enables teacher-student and student-student interactions and according to D'Halluin (1995), it is the tool which enables coordination. With regards to the asynchronous tool, like the forum, students are encouraged to exchange ideas on diverse themes on the Internet. The forum enables students to voice out their queries
and it gives them to ponder and reply back. However, unanswered threads are very common and they may not necessarily promote learning. According to Devaux et al., (2009:7), a forum is primarily a tool for learners to support each other. For the past years, at the University of Technology, Mauritius, some lecturers are using the to technological tools as supports in the delivery of their lecture. They have even made use of a Learning Management support (LMS) environment, Moodle, in order to facilitate communication between the lecturer and the students. They are however being used in a ad hoc manner by lecturers and it is therefore imperative to investigate on the use of those supporting tools in order to understand their
usefulness and their pertinence from a student's perspective. It is worth noting though that the collection and use of those tools (forum, email, chat) are not sufficient to promote learning and collaboration among the students (George, 2005). However, findings from the literature reveal that blended learning gives better opportunities to promote learning (Marchand, 2003) and learning communities among the students (Rovaï & Jordan, 04).

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: