نتایج جستجو برای: educational goal

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

2013
Brigitte Vachon Bruno Désorcy Michel Camirand Jean Rodrigue Louise Quesnel Claude Guimond Martin Labelle Johanne Fournier Jeremy Grimshaw

BACKGROUND The scientific literature continues to advocate interprofessional collaboration (IPC) as a key component of primary care. It is recommended that primary care groups be created and configured to meet the healthcare needs of the patient population, as defined by patient demographics and other data analyses related to the health of the population being served. It is further recommended ...

Journal: :Canadian journal of public health = Revue canadienne de sante publique 2011
Lipi Mishra Ananya T Banerjee Mary E MacLennan Paul F Gorczynski Kate A Zinszer

Students vocalized their concern with public health training programs in Canada at the 2010 CPHA Centennial Conference. Given these concerns, we reviewed the objectives and curricula of public health graduate (master's) programs in Canada. Our objective was to understand to what extent public and population health graduate programs in Canada support interdisciplinary, multidisciplinary and know...

Journal: :Journal of dental education 2015
Marcela Alcota Alejandra Fuenzalida Claudia Barrientos Mauricio Garrido Pilar Ruiz de Gauna Fermín E González

Given the psychological and financial costs involved with failing a clinical course, especially in developing countries, an alternative educational method was tested with students who had to repeat the year-long endodontic course at the University of Chile Faculty of Dentistry. The objectives of the intervention were to deepen theoretical knowledge and practical experiences, as well as to reinf...

2017
Dan Grabowski Tue Helms Andersen Annemarie Varming Christine Ommundsen Ingrid Willaing

OBJECTIVES Family involvement plays a key role in diabetes management. Problems and challenges related to type 2-diabetes often affect the whole family, and relatives are at increased risk of developing diabetes themselves. We highlight these issues in our objectives: (1) to uncover specific family problems associated with mutual involvement in life with type 2-diabetes and (2) to analytically ...

2011
Jennifer J Lloyd Stuart Logan Colin J Greaves Katrina M Wyatt

BACKGROUND Only limited data are available on the development and feasibility piloting of school-based interventions to prevent and reduce obesity in children. Clear documentation of the rationale, process of development and content of such interventions is essential to enable other researchers to understand why interventions succeed or fail. METHODS This paper describes the development of th...

Journal: :Genetics 2005
Mark B Dignan Linda Burhansstipanov Lynne Bemis

Genetic Education for Native Americans (GENA) was a National Human Genome Research Institute (NHGRI)/Ethical, Legal, and Social Implications (ELSI)-funded educational intervention designed to provide a unique genetics education program for Native American college and university students. A curriculum was developed and implemented in workshops in geographically diverse settings throughout the Un...

2015
Jana Jünger Ara Tekian John J. Norcini

Over the past few decades there has been an internationalmovement towards competency-basedmedical education (CBME). Germany has participated in this development and recently created the NKLM, which is a catalogue of the learning objectives for medical education [http:// www.nklm.de and [http://www.nklz.de] citied 2015-0918], [1]. The recommendations of the German Council for Science and Humanit...

Journal: :Frontiers in public health 2016
Erum Khan Nayla Ahmed Khalid R. Temsamani Atef El-Gendy Murray Cohen Ariba Hasan Hilliard Gastfriend Jennifer Cole

INTRODUCTION The objectives of this study were to identify and assess the impact of capacity-building biosafety initiatives and programs that have taken place in the broader Middle East and North Africa (BMENA) region between 2001 and 2013, to highlight gaps that require further development, and to suggest sustainable ways to build cooperative regional biosafety opportunities. METHODS A cross...

Journal: :Alternatives to laboratory animals : ATLA 2007
Michel Bouvier d'Yvoire Pilar Prieto Bas J Blaauboer Frederic Y Bois Alan Boobis Céline Brochot Sandra Coecke Andreas Freidig Ursula Gundert-Remy Thomas Hartung Miriam N Jacobs Thierry Lavé David E Leahy Hans Lennernäs George D Loizou Bette Meek Camilla Pease Malcolm Rowland Martin Spendiff Jiansong Yang Marco Zeilmaker

This is the report of the 63rd of a series of workshops organised by the European Centre for the Validation of Alternative Methods (ECVAM). ECVAM’s main objective, as defined in 1993 by its Scientific Advisory Committee, is to promote the scientific and regulatory acceptance of alternative methods which are relevant to the biosciences and which reduce, refine or replace the use of laboratory an...

Journal: :Family medicine 2004
Linda Okin Lewin Paul N Lanken

BACKGROUND AND OBJECTIVES Ethics education for medical students has included a number of relatively vague descriptions of appropriate curricular objectives, but medical schools struggle with the general teaching of ethics, as well as with presenting the ethical dilemmas posed by managed care. This paper proposes some standards and uses them to analyze the general and managed care ethics content...

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

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

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"; } -->