نتایج جستجو برای: constructivist instructional design

تعداد نتایج: 973072  

2004
Weidong Pan Igor Hawryszkiewycz

Currently many instructional Web sites just simply deliver course materials without integrating the role of teacher in guiding learners to use these materials to construct knowledge. Learners only passively receive the presented materials. Our research is to provide support services to actively assist learners to construct knowledge using the constructivist approach to learning. This paper focu...

2012

Inline with the BSCS 5E instructional model, the Minds of Chimera project is using constructivist learning to instruct and motivate creativity in a heavily modified Minecraft game server. We currently are developing games around kinematics, Boolean logic and computer programming to inspire player creativity and create new games. We are using a model of inspiration based on Investment Theory’s c...

1991
Andrew J. Peterson

Contemporary educational communications and technology have brought new ways for presentation of museum content. Advances in telecornmunlcations, computers, videography and printing are revolutlonlzing the grounds on which people encounter art, science, and culture. This techndoglcal change Is causing scientlsts and educators to re-think the formats for their material In our museums and, eventu...

2006
Lisa Wise James Quealy

After more than a decade, the early claims that elearning would transform university teaching are yet to be realised. As elearning, with learning management systems as the centrepiece, becomes entrenched in the mainstream, there is growing demand for a solid theoretical research base to inform elearning practice. We argue that the lack of a solid research base is in part due to the inherent dif...

2012
Normah Mulop Zaidatun Tasir Khairiyah Mohd Yusof

A courseware for enhancing the learning of thermodynamics has been designed and developed based on ADDIE instructional design model with the integration of constructivism learning theory and visualization characteristics. The development of the courseware, which follows the guidance of the ADDIE model, has five phases consisting of analysis, design, develop, implement, and evaluate. The constru...

2006
Charlotte N. Gunawardena Ludmila Ortegano-Layne Kayleigh Carabajal Casey Frechette Ken Lindemann Barbara Jennings

We discuss the development of an instructional design model, WisCom (Wisdom Communities), based on socio-constructivist and sociocultural learning philosophies and distance education principles for the development of online wisdom communities, and the application and evaluation of the model in an online graduate course in the USA. The WisCom model aims to facilitate transformational learning by...

2008
William J. Matthews

Over the previous two decades the emergence of post-modernist thought (i.e., radical constructivism, social constructivism, deconstructivsm, post-structuralism, and the like) on the American intellectual landscape has presented a number of challenges to various fields of intellectual endeavor (i.e., literature, natural science, and social science) (Matthews, 1998; in press). Nowhere is this cha...

2000
Maureen Tam

This paper examines the characteristics and value of designed instruction grounded in the constructivist theory. It also attempts to connect the theory to the prevailing technology paradigms to establish an alignment between pedagogical and technological considerations in support of the assumptions arising from constructivism. Distance learning provides a unique context in which to infuse const...

Journal: :Educational Technology & Society 1999
Susan M. Miller Kenneth L. Miller

This articles examines the role of computer-mediated communication as well as broader interpretations of communication in Web-based instruction. Overviews of cognitive processing and cognitive constructivist paradigms are presented to illustrate their relevance for guiding development of Web-based courses. Instructional goals and communication strategies associated with these paradigms are iden...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->