نتایج جستجو برای: classroom literacy

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

Journal: :The journals of gerontology. Series B, Psychological sciences and social sciences 2015
Shannon Sisco Alden L Gross Regina A Shih Bonnie C Sachs M Maria Glymour Katherine J Bangen Andreana Benitez Jeannine Skinner Brooke C Schneider Jennifer J Manly

OBJECTIVES Racial disparities in late-life cognition persist even after accounting for educational attainment. We examined whether early-life educational quality and literacy in later life help explain these disparities. METHOD We used longitudinal data from the Washington Heights-Inwood Columbia Aging Project (WHICAP). Educational quality (percent white students; urban/rural school; combined...

2014
Rosie Flewitt David Messer Natalia Kucirkova

In this paper, we discuss how iPads offer innovative opportunities for early literacy learning but also present challenges for teachers and children. We lent iPads to a Children’s Centre nursery (3to 4-year-olds), a primary school reception class (4to 5-year-olds) and a Special School (7to 13-year-olds), discussed their potential uses with staff in preand post-interviews and observed how they w...

Journal: :Developmental psychology 2015
Kimberly Turner Nesbitt Dale Clark Farran Mary Wagner Fuhs

Although research suggests associations between children's executive function skills and their academic achievement, the specific mechanisms that may help explain these associations in early childhood are unclear. This study examined whether children's (N = 1,103; M age = 54.5 months) executive function skills at the beginning of prekindergarten (pre-K) predict their learning-related behaviors ...

Journal: :Global health promotion 2009
Deborah L Begoray Joan Wharf-Higgins Marjorie Macdonald

This study explores the relevance of health literacy, and its development through a health curriculum, as a necessary but insufficient component to facilitate healthy living among adolescents through comprehensive school health models. This paper presents qualitative findings from focus groups with students (N = 33) in four schools toward the end of their experience in a health class that focus...

Journal: :The International Journal of Learning: Annual Review 2010

Journal: :Journal of College Teaching & Learning (TLC) 2010

Journal: :Autism : the international journal of research and practice 2013
Charlotte A Mucchetti

UNLABELLED Almost nothing is known about the capacity of minimally verbal students with autism to develop literacy skills. Shared reading is a regular practice in early education settings and is widely thought to encourage language and literacy development. There is some evidence that children with severe disabilities can be engaged in adapted shared reading activities. The current study examin...

2007

This paper explores how Cognitive Work Analysis (CWA) can be an effective approach for analyzing, designing, and evaluating complex sociotechnical systems such as elementary and middle school literacy support classrooms adopting new handheld technologies. CWA should be seen as an integral precursor to any design research iteration, enabling the identification of key constraints in order to desi...

2000
Nancy Tsai Thomas E. Hebert

Copy right Idea Grou p Inc . Copy right Idea Grou p Inc . INTRODUCTION A college graduate has to be computer literate in order to gain competitive edge in today’s business world since information technology, ranging from the basic word processing software to the complex data base management systems, is used constantly to prepare, present, and exchange information for management decision making....

2003
Janet McDowall

This paper describes how computer-based music technology has become an established aspect of the contemporary music industry and some education settings. Although to date there has been little use of computer music technology in the early years of schooling, recent developments in the scope and quality of software are providing new opportunities for children’s learning. Through such programs, c...

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

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

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