نتایج جستجو برای: their culture

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

Background: In contrast to animal data, group culture does not increase preimplantation development in humans. This prospective study was done to test a new type of culture dish allowing for individual culture and any possible effect of autotrophic factors. Materials and Methods: Within a 6-month period, 72patients with ≥9 fertilized eggs were enrolled in this prospective evaluation. Their 936 ...

Journal: :جامعه شناسی هنر و ادبیات 0
حمید رضایی استاد دانشگاه پیام نور شهرکرد ابراهیم ظاهری دانشگاه شهرکرد

colonized and the colonizers, especially in the third world country mvzv hay one of the most important writers of contemporary history that is often given a place in it. simin daneshvar, including writers who have explored this issue in his dastan hay. in this study the issue of colonialism and the island rman hay wandering, wandering camel driver and leaves of grass analytical methods have bee...

Journal: :cell journal 0

introduction: hela cell is a widely studied cell line derived from human cerzix adenocarcinoma. the cells are epithelial - like in morphology and susceptible to polio viruses and adenovirus type 5. hela cells are usually as monolayer for isolation and propagation of some human viruses, as well as for the expression of recombinant proteins, including hepatitis b surface antigen. the aim of this ...

پایان نامه :وزارت علوم، تحقیقات و فناوری - دانشگاه شیخ بهایی - دانشکده ادبیات، زبانهای خارجی و تاریخ 1391

the present study sought to examine whether a task-based approach could have an impact on raising awareness of collocations. moreover, it sought to investigate the facilitative role of consciousness-raising tasks of collocations in the communicative instances of use. to this end, 68 intermediate learners of english were selected via a placement test. the participants were taught with classroom ...

پایان نامه :دانشگاه آزاد اسلامی - دانشگاه آزاد اسلامی واحد تهران مرکزی - دانشکده ادبیات و زبانهای خارجی 1390

abstract the current study set out to address the issue as to whether the implementation of portfolio assessment would give rise to iranian pre-intermediate efl learner autonomy. participants comprised 60 female in pre-intermediate level within the age range of 16-28.they were selected from among 90 language learners based on their scores on language proficiency test -key english test. then, t...

پایان نامه :وزارت علوم، تحقیقات و فناوری - دانشگاه یزد - پژوهشکده ادبیات 1392

abstract the aim of the present study is to explore the impact of the cognitive reading strategy instruction on learners reading self-efficacy and their reading achievement. in order to fulfill this purpose, from 120 participants, 90 intermediate efl learners as an experimental group were chosen from three different educational settings namely, yazd university, yazd science and art un...

پایان نامه :وزارت علوم، تحقیقات و فناوری - دانشگاه یاسوج - دانشکده ادبیات و علوم انسانی 1392

the effect of learning strategies on the speaking ability of iranian students in the context of language institutes abstract language learning strategies are of the most important factors that help language learners to learn a foreign language and how they can deal with the four language skills specifically speaking skill effectively. acknowledging the great impact of learning strategies...

Ali Ramezani, Nahid Amrolahi, Reza Kiyantaj,

Introduction: The formation and evolution of culture in organizations are related to the learning experiences of their members over time. In this regard, the present study was conducted to empirically investigate the correlation relationship between the Learning Organization (LO) and safety culture concepts in Iran’s nuclear and radiological industries. Material and Methods: A theoretical mode...

Gholam-Reza Abbasian Gholamreza Asgharpour Mojgan Kouhpayehzadeh

Maintaining that language and culture are interwoven to the extent that learning the former is largely dependent on the latter, this study aimed to investigate the attitude of Iranian English as Foreign Language (EFL) Learners of Tehran South Branch of Islamic Azad University (both undergraduates and postgraduates) towards the learning of the cultural aspects of language, both the target and so...

A Sadeghzadeh , B Fazli, F Fazli , H Ansari , H Zare , M Freidoni , S Hami Mahkoyeh ,

Background: Safety culture and attitude form an integral part of organizations' cultures and their improved levels are influential in the prevention of occupational accidents and injuries. The present study was conducted to assess the safety culture and attitude of workers in the mining industry in Iran. Materials and Methods: The present cross-sectional study was conducted on 172 workers em...

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

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

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