Skip to main content

Posts

Collaborative Learning

How can you incorporate what you learnt about teaching and learning  in the classroom in promoting collaborative learning. Collaborative learning is based on the view that knowledge is a social construct. Collaborative learning can be an effective method to motivate students, encourage active learning, and develop key critical-thinking, communication, and decision-making skills. But without careful planning and facilitation, it  can frustrate students and instructors and feel like a waste of time. With knowledge in the collaborative learning activities the following principles can be employed to improve collaborative learning in the classroom.
How can you incorporate what you learnt about teaching and learning  in the classroom in promoting collaborative learning. Collaborative learning is based on the view that knowledge is a social construct. Collaborative learning can be an effective method to motivate students, encourage active learning, and develop key critical-thinking, communication, and decision-making skills. But without careful planning and facilitation, it  can frustrate students and instructors and feel like a waste of time. With knowledge in the collaborative learning activities the following principles can be employed to improve collaborative learning in the classroom. ·                      Decide how you will divide students into groups.   Division based on closeness or students’ choice is quickest, especially for large classes; however, it means that students end up working together with friends or always with the same people. To vary group composition and increase diversity within groups, rando

Coding..........

Have you ever bothered to look out for the the longest word in English?  Just check it out here.  The longest word in English is : Pneumonoultramicroscopicsilicovolcanoconiosis.  a  word  that refers to a lung disease contracted from  the  inhalation of very fine silica particles, specifically from a volcano; medically, it is  the same as silicosis.
Hei guys ! Watch out for more on c plus plus
NEW RELEASE!!  C PLUS PLUS (C++ ) BY PROF SAM QUESTIONS AND ANSWERS Q1.   Date Design a class called Date that has integer data members to store month, day, and year. The class should have a three-parameter default constructor that allows the date to be set at the time a new Date object is created. If the user creates a Date object without passing any arguments, or if any of the values passed are invalid, the default values of 1, 1, 2001 (i.e., January 1, 2001) should be used. The class should have member functions to print the date in the following formats: 3/15/13 March 15, 2013 15 March 2013 Demonstrate the class by writing a program that uses it. Be sure your program only accepts reasonable values for month and day. The month should be between 1 and 12. The day should be between 1 and the number of days in the selected month. ANSWER. #include <iostream> #include <cstring> using namespace std; class Date {