Welcome to MIC Online Module Page. E-learning has become one of the most favored means of learning in the current world. the primary purpose of this page is to provide a set of guidelines, bench marks and quality criteria against which the e-learning modules must be developed and judged. You may download the pdf version of the Module Development Guide from the left navigation pane. Here we present a summarized version.
Educational Approach
The online module developers must ensure the design and methods use for developing the e-learning are based on a good learning model that is good match for the level of the subject to be taught and the domains of learning. There are four three broad educational approaches that demands four different varieties of capabilities on the e-learning systems.
-
Synchronous Teaching and Learning: The e-learning platform must be equipped with a range of teaching and learning tools that will allow for
effective transaction of education in an interactive environment -
Didactic Learning: Students work independently on self-determined schedulers. The e-learning system must provide structured teaching materials, interactive video lessons, automatic testing and feedback mechanisms.
-
Resource based Learning: Online learning systems must provide the students with resources that are exactly the same as that would be provided for face to face students.
-
Collaborative Learning: The e-learning platform shall be embedded with various online social media tools to allow for online collaborative learning
Congratulations…
By the time you complete all the exercises you will have developed a very good understanding of the total process of developing an e-learning Program
Your next endeavor will be to develop the teaching and learning resources that you will use to populate your LMS. We provide a range of support. Please surf through our pages and find out what best suits for your development. You may also register for a training through our Faculty Support Page.
Also You will need to learn how to develop your LMS platform .
We provide a range of support. Please surf through our pages and find out what best suits for your development. You may also register for a training through our Faculty Support Page.
Head of Virtual Campus is the in-charge of managing all the activities of Virtual Campus. We have a fully dedicated team of member working in our VC, to ensure that our e-learning platforms, programs, and activities are optimized. Please visit our Head of Virtual Campus sub page to learn more about the roles, and responsibilities of our Head of VC
for E-learning facilitation
Activities
Calendar
Need Any Help?
//according to loftblog tut $('.nav li:first').addClass('active');
var showSection = function showSection(section, isAnimate) { var direction = section.replace(/#/, ''), reqSection = $('.section').filter('[data-section="' + direction + '"]'), reqSectionPos = reqSection.offset().top - 0;
if (isAnimate) { $('body, html').animate({ scrollTop: reqSectionPos }, 800); } else { $('body, html').scrollTop(reqSectionPos); }
};
var checkSection = function checkSection() { $('.section').each(function () { var $this = $(this), topEdge = $this.offset().top - 80, bottomEdge = topEdge + $this.height(), wScroll = $(window).scrollTop(); if (topEdge < wScroll && bottomEdge > wScroll) { var currentId = $this.data('section'), reqLink = $('a').filter('[href*=\\#' + currentId + ']'); reqLink.closest('li').addClass('active'). siblings().removeClass('active'); } }); };
$('.main-menu, .responsive-menu, .scroll-to-section').on('click', 'a', function (e) { e.preventDefault(); showSection($(this).attr('href'), true); });
$(window).scroll(function () { checkSection(); });