Search results for: development programs
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 17068

Search results for: development programs

16798 A Comparative Study of Automotive / Transportation Design Programs and University: Industry Cooperation Models in Higher Education

Authors: Efe Çukur

Abstract:

This study aims to discuss and compare i) widespread and generic design, particularly industrial design education in relation to the specific needs of the automotive/transportation industry, and ii) an automotive/transportation design education model within and under to provide the conditions of design education and automotive industry, especially in Turkey and T.R.N.C. The automotive industry is the 11th largest in the world ($1.51 trillion). One of the most important departments in this industry, along with sales, marketing and engineering, is the design department. The automotive industry is known as the locomotive industry, but there is a non-automotive design department on the academic side of Turkey. This suggestion; includes the presentation of a program proposal that meets the needs of the industry for Turkey and T.R.N.C., the second largest automobile manufacturing country in Europe. On the education side, industrial design education has become a generic title. Automotive design studios are divided into several subgroups. Even in the higher graduate education, the automotive design departments get their subgroups like exterior design and interior design. Transportation design, which is a subfield of industrial design, is offered as higher education in transportation design departments, particularly in America and Europe. In these departments, the curriculum is shaped to the needs of the sectors. Higher education transportation design programs began in the mid-20th century. Until those high education programs...Until these high education programs, the industry has adapted architectures and engineers for designer workloads. Still today transportation design graduates are not the majority of the design studios. The content of the study is an in-depth comparison of these institutions and how the requirements, demands of the industry are met in this regard and revealed. Some of the institutions are selected from Europe and US. To be analyzed under the headings of staff, courses, syllabus, University-Industry collaboration, and location selection. The study includes short, mid, and long term proposals and a hypothesis for discussion. In short, the study will not only provide a wide comparative scope of information on generic and specialized aspects of design education in different countries but also propose a higher education model for automotive / transportation design with solid data of requirements, methodology, and structure regarding learning outcomes, and especially industry cooperation.

Keywords: design education, automotive - transportation design programs, transportation design, automotive industry in Turkey /T.R.N.C., automotive design education in Turkey /T.R.N.C.

Procedia PDF Downloads 67
16797 The Effectiveness of the South African Government Theory of Expanded Public Works Program: Infrastructure

Authors: Siziwe Monica Zuma

Abstract:

The Expanded Public Works Program (EPWP) is an instrument that the South African Government uses to reduce unemployment and poverty and also stimulate economic growth. However, due to the limited budget and programs in the EPWP, the program has had challenges in reducing unemployment, poverty and stimulating economic growth. The EPWP Vuk’uphile program had positive outcomes in developing Black emerging contractors, in order for them to participate in the main stream economy far better than when the EPWP program was not introduced. The Skills component of the program particularly the EPWP Infrastructure, which is the most funded program under EPWP has had limited success in transferring appropriate skills to ensure labour participants can penetrate the labour market after participating in the EPWP. Education and skills are important attributes that can contribute to labour absorption, however, the EPWP particularly the infrastructure program needs to strengthen skills development over a longer period of time suggested a year with multi skills relevant to the labour market. Longer and more sustained employment provides a safety net and reduces poverty better that short term employment. The EPWP program can be expanded in the infrastructure sector, focusing on rural infrastructure, agricultural infrastructure, infrastructure related components like property, ownership, management, and other services. These can stimulate the Economic sector Infrastructure of EPWP, offer longer term and more sustained employment and rural enterprise development and further employment. The Expanded Public Works Program (EPWP) is an instrument that the South African Government uses to reduce unemployment and poverty and also stimulate economic growth. However, due to the limited budget and programs in the EPWP, the program has had challenges in reducing unemployment, poverty and stimulating economic growth. The EPWP Vuk’uphile program has had positive outcomes in developing Black emerging contractors, in order for them to participate in the main stream economy far better than when the EPWP program was not introduced. The Skills component of the program particularly the EPWP Infrastructure, which is the most funded program under EPWP has had limited success in transferring appropriate skills to ensure labour participants are able to penetrate the labour market after participating in the EPWP. Education and skills are important attributes that can contribute to labour absorption, however, the EPWP particularly the infrastructure program needs to strengthen skills development over a longer period of time suggested a year with multi skills relevant to the labour market. Longer and more sustained employment provides a safety net and reduces poverty better that short term employment. The EPWP program can be expanded in the infrastructure sector, focusing on rural infrastructure, agricultural infrastructure, infrastructure related components like property, ownership, management, and other services. These can stimulate the Economic sector Infrastructure of EPWP, offer longer term and more sustained employment and rural enterprise development and further employment.

Keywords: Expanded Public Works Program (EPWP), VUKÚPHILE, youth, Public Works Programs (PWP), Infrastructure Sector of EPWP (EPWP Infrastructure)

Procedia PDF Downloads 188
16796 An Education Profile for Indonesian Youth Development

Authors: Titia Izzati, Pebri Hastuti, Gusti Ayu Arwati

Abstract:

Based on the program of The Ministry of Youth and Sports of Republic of Indonesia, this study compares the Statistikdata of the educational factors and the number of young people to a survey conducted in the five years, 2009-2013. As a result, significant trends are traced through an era filled with events that deeply affected the lives of young people, such as the peak and the ending of the political issues. Changing values under examination include attitudes toward authority and obligations toward others; social values dealing with attitudes toward the work ethic; marriage, family, and the importance of money in defining the meaning of success; and self-fulfillment. While the largest portion of the sample contains college youth, other people between the ages of 16 and 30 are considered, including high school students, blue collar workers, housewives, and high school dropouts. The report provides an overview and interpretation of the data with the presents the research contrasting the values of the college and non-college youth. In the other hand, the youth education profile data also can be utilized in making arrange the youth development index, especially in educational dimension. In order to the formulation of this youth development index, the basic needs of youth in Indonesia have to be listed as the variables. So that, the indicators of the youth development index are really in accordance withthe actual conditions of Indonesian youth. The indicators are the average number of old-school youth, the rate of youth illiterate people, the numbers of youth who are continuing their studies or who have completed the study in college, the number of youth graduate high school/vocational or college graduates were engaged in the labor fair. The formula for the youth development index is arranged in educational dimension with all actual indicators

Keywords: education, young people, Indonesia, ministry programs, youth index development

Procedia PDF Downloads 251
16795 A User-Directed Approach to Optimization via Metaprogramming

Authors: Eashan Hatti

Abstract:

In software development, programmers often must make a choice between high-level programming and high-performance programs. High-level programming encourages the use of complex, pervasive abstractions. However, the use of these abstractions degrades performance-high performance demands that programs be low-level. In a compiler, the optimizer attempts to let the user have both. The optimizer takes high-level, abstract code as an input and produces low-level, performant code as an output. However, there is a problem with having the optimizer be a built-in part of the compiler. Domain-specific abstractions implemented as libraries are common in high-level languages. As a language’s library ecosystem grows, so does the number of abstractions that programmers will use. If these abstractions are to be performant, the optimizer must be extended with new optimizations to target them, or these abstractions must rely on existing general-purpose optimizations. The latter is often not as effective as needed. The former presents too significant of an effort for the compiler developers, as they are the only ones who can extend the language with new optimizations. Thus, the language becomes more high-level, yet the optimizer – and, in turn, program performance – falls behind. Programmers are again confronted with a choice between high-level programming and high-performance programs. To investigate a potential solution to this problem, we developed Peridot, a prototype programming language. Peridot’s main contribution is that it enables library developers to easily extend the language with new optimizations themselves. This allows the optimization workload to be taken off the compiler developers’ hands and given to a much larger set of people who can specialize in each problem domain. Because of this, optimizations can be much more effective while also being much more numerous. To enable this, Peridot supports metaprogramming designed for implementing program transformations. The language is split into two fragments or “levels”, one for metaprogramming, the other for high-level general-purpose programming. The metaprogramming level supports logic programming. Peridot’s key idea is that optimizations are simply implemented as metaprograms. The meta level supports several specific features which make it particularly suited to implementing optimizers. For instance, metaprograms can automatically deduce equalities between the programs they are optimizing via unification, deal with variable binding declaratively via higher-order abstract syntax, and avoid the phase-ordering problem via non-determinism. We have found that this design centered around logic programming makes optimizers concise and easy to write compared to their equivalents in functional or imperative languages. Overall, implementing Peridot has shown that its design is a viable solution to the problem of writing code which is both high-level and performant.

Keywords: optimization, metaprogramming, logic programming, abstraction

Procedia PDF Downloads 60
16794 The Impact of Artificial Intelligence on Human Rights Development

Authors: Kerols Seif Said Botros

Abstract:

The relationship between development and human rights has been debated for a long time. Various principles, from the right to development to development-based human rights, are applied to understand the dynamics between these two concepts. Despite the measures calculated, the connection between enhancement and human rights remains vague. Despite, the connection between these two opinions and the need to strengthen human rights have increased in recent years. It will then be examined whether the right to sustainable development is acceptable or not. In various human rights instruments and this is a good vibe to the request cited above. The book then cites domestic and international human rights treaties, as well as jurisprudence and regulations defining human rights institutions, to support this view.

Keywords: sustainable development, human rights, the right to development, the human rights-based approach to development, environmental rights, economic development, social sustainability human rights protection, human rights violations, workers’ rights, justice, security.

Procedia PDF Downloads 17
16793 A Longitudinal Study of Social Engagement in Classroom in Children with Autism Spectrum Disorder

Authors: Cecile Garry, Katia Rovira, Julie Brisson

Abstract:

Autism Spectrum Disorder (ASD) is defined by a qualitative and quantitative impairment of social interaction. Indeed early intervention programs, such as the Early Start Denver Model (ESDM), aimed at encouraging the development of social skills. In classroom, the children need to be socially engaged to learn. Early intervention programs can thus be implemented in kindergarten schools. In these schools, ASD children have more opportunities to interact with their peers or adults than in elementary schools. However, the preschool children with ASD are less socially engaged than their typically developing peers in the classroom. They initiate, respond and maintain less the social interactions. In addition, they produce more responses than initiations. When they interact, the non verbal communication is more used than verbal or symbolic communication forms and they are more engaged with adults than with peers. Nevertheless, communicative patterns may vary according to the clinical profiles of ASD children. Indeed, the ASD children with better cognitive skills interact more with their peers and use more symbolic communication than the ASD children with a low cognitive level. ASD children with the less severe symptoms use more the verbal communication than ASD children with the more severe symptoms. Small groups and structured activities encourage coordinated joint engagement episodes in ASD children. Our goal is to evaluate ASD children’s social engagement development in class, with their peers or adults, during dyadic or group activities. Participants were 19 preschool children with ASD aged from 3 to 6 years old that benefited of an early intervention in special kindergarten schools. Severity of ASD symptoms was measured with the CARS at the beginning of the follow-up. Classroom situations of interaction were recorded during 10 minutes (5 minutes of dyadic interaction and 5 minutes of a group activity), every 2 months, during 10 months. Social engagement behaviors of children, including initiations, responses and imitation, directed to a peer or an adult, were then coded. The Observer software (Noldus) that allows to annotate behaviors was the coding system used. A double coding was conducted and revealed a good inter judges fidelity. Results show that ASD children were more often and longer socially engaged in dyadic than in groups situations. They were also more engaged with adults than with peers. Children with the less severe symptoms of ASD were more socially engaged in groups situations than children with the more severe symptoms of ASD. Then, ASD children with the less severe symptoms of ASD were more engaged with their peers than ASD children with the more severe symptoms of ASD. However, the engagement frequency increased during the 10 month of follow-up but only for ASD children with the more severe symptoms at the beginning. To conclude, these results highlighted the necessity of individualizing early intervention programs according to the clinical profile of the child.

Keywords: autism spectrum disorder, preschool children, developmental psychology, early interventions, social interactions

Procedia PDF Downloads 130
16792 An In-Depth Study on the Experience of Novice Teachers

Authors: Tsafi Timor

Abstract:

The research focuses on the exploration of the unique journey that novice teachers experience in their first year of teaching, among graduates of re-training programs into teaching. The study explores the experiences of success and failure and the factors that underpin positive experiences, as well as the journey (process) of this year with reference to the comparison between novice teachers and new immigrants. The content analysis that was adopted in the study was conducted on texts that were written by the teachers and detailed their first year of teaching. The findings indicate that experiences of success are featured by personal satisfaction, constant need of feedback, high motivation in challenging situations, and emotions. Failure experiences are featured by frustration, helplessness, sense of humiliation, feeling of rejection, and lack of efficacy. Factors that promote and inhibit positive experiences relate to personal, personality, professional and organizational levels. Most teachers reported feeling like new immigrants, and demonstrated different models of the process of the first year of teaching. Further research is recommended on the factors that promote and inhibit positive experiences, and on 'The Missing Link' of the relationship between Teacher Education Programs and the practices in schools.

Keywords: first-year teaching, novice teachers, school practice, teacher education programs

Procedia PDF Downloads 268
16791 The Case for Implementing a Supplier Diversity and Inclusion Program beyond the Ethical Value

Authors: Arnaud Deshais

Abstract:

The supply chain industry has integrated the need for supplier Diversity and Inclusion (D&I), mostly from an ethical and moral argument. In addition, in some countries, it is also a legal requirement for companies reaching a certain size. As a matter of fact, a lot of successful companies have developed a Corporate Social Responsibility Program that encourages diversity and inclusion in the supply chain, such as building strong relationships with minority owned businesses (women, LGBT, veterans, etc.). Outside ethical and legal perspectives, it is also worth researching the economic and financial benefits of pursuing such efforts. Through surveys of purchasing and supply chain managers in their current roles as well as review of some case studies on supplier based D&I programs, it becomes apparent that a financial return on investment is to be expected as well for companies who make a concerted effort to grow their D&I programs. The study explores the levers to increase shareholder value and business efficiencies. Finally, the research highlights the competitive advantage related to a broad minority based supplier network. The benefits manifest themselves in the areas of competitiveness, innovation, and collaboration. The economic reward ends up being at the forefront of those programs while being an opportunity for organizations to become 'a good citizen'.

Keywords: diversity, inclusion, purchasing, supplier

Procedia PDF Downloads 92
16790 Play-Based Early Education and Teachers’ Professional Development: Impact on Vulnerable Children

Authors: Chirine Dannaoui, Maya Antoun

Abstract:

This paper explores the intricate dynamics of play-based early childhood education (ECE) and the impact of professional development on teachers implementing play-based pedagogy, particularly in the context of vulnerable Syrian refugee children in Lebanon. By utilizing qualitative methodologies, including classroom observations and in-depth interviews with five early childhood educators and a field manager, this study delves into the challenges and transformations experienced by teachers in adopting play-based learning strategies. The research unveils the critical role of continuous and context-specific professional development in empowering teachers to implement play-based pedagogies effectively. When appropriately supported, it emphasizes how such educational approaches significantly enhance children's cognitive, social, and emotional development in crisis-affected environments. Key findings indicate that despite diverse educational backgrounds, teachers show considerable growth in their pedagogical skills through targeted professional development. This growth is vital for fostering a learning environment where vulnerable children can thrive, particularly in humanitarian settings. The paper also addresses educators' challenges, including adapting to play-based methodologies, resource limitations, and balancing curricular requirements with the need for holistic child development. This study contributes to the discourse on early childhood education in crisis contexts, emphasizing the need for sustainable, well-structured professional development programs. It underscores the potential of play-based learning to bridge educational gaps and contribute to the healing process of children facing calamity. The study highlights significant implications for policymakers, educators, schools, and not-for-profit organizations engaged in early childhood education in humanitarian contexts, stressing the importance of investing in teacher capacity and curriculum reform to enhance the quality of education for children in general and vulnerable ones in particular.

Keywords: play-based learning, professional development, vulnerable children, early childhood education

Procedia PDF Downloads 30
16789 Contribution of Family Planning Effort to Demographic and Macroeconomic Outcomes in High Fertility Countries: A Longitudinal Study

Authors: Jane N. O'Sullivan

Abstract:

In most studies relating change in fertility to potentially causal factors (such as girls’ educational attainment, infant mortality or urbanization), the presence or nature of family planning efforts are not examined, potentially misattributing their contributions. Modest impacts of voluntary family planning programs on fertility change have been claimed, citing the near-term effects of historical quasi-experimental projects – notably in Bangladesh and in Ghana – where recipients and non-recipients could be contrasted. By their nature, such experiments lacked the wider cultural impacts of national programs. Concurrently, analyses relating population growth with economic advancement have been equivocal, discrediting previous widespread concern which prevailed before the 1980s. This neutral view has been revised more recently with demographic dividend theory crediting higher working-age proportion with some economic stimulus if supported by sufficient institutional and human capacity. In this study of country-level data, cross-country comparisons spanning six decades relate fertility decline with family planning effort, GDP per capita and female education, finding that the timing of rapid fertility decline aligns with commencement of voluntary family planning programs, while economic betterment came after substantial fertility fall. The relationship between fertility and primary education completion was inconsistent, with potential channels of causation operating in both directions. GDP per capita was unrelated to rate of fertility decline, but total fertility rates above three children per woman strongly impeded enrichment. By synchronizing countries with respect to their fertility transition, strong relationships are revealed which suggest lower fertility enables economic betterment, rather than the other way around. These results argue in favour of elevating voluntary family planning as a development priority.

Keywords: economic advance, family planning effort, fertility decline, population growth rate

Procedia PDF Downloads 112
16788 The Specificity of Employee Development in Polish Small Enterprises

Authors: E. Rak

Abstract:

The aim of the paper is to identify some of the specific characteristics of employee development, as observed in the practice of small enterprises in Poland. Results suggest that a sizeable percentage of employers are not interested in improving the development of their employee base. This aspect is often perceived as insignificant. In addition, many employers have no theoretical or practical knowledge of employee development methods. Lack of sufficient financial support is reported as third on the list of the most important barriers to employee development. Employees, on the other hand, typically offload the responsibility of initiating this type of activities onto the employer. Employee development plans are typically flexible and accommodating. The original value offered by this research comes in the form of a detailed characteristics of employee development in small enterprises, accompanied by identification of specificity of human resource development in Polish companies.

Keywords: employee development, human resources development, small enterprises, trainings

Procedia PDF Downloads 338
16787 Augmented and Virtual Reality Experiences in Plant and Agriculture Science Education

Authors: Sandra Arango-Caro, Kristine Callis-Duehl

Abstract:

The Education Research and Outreach Lab at the Donald Danforth Plant Science Center established the Plant and Agriculture Augmented and Virtual Reality Learning Laboratory (PAVRLL) to promote science education through professional development, school programs, internships, and outreach events. Professional development is offered to high school and college science and agriculture educators on the use and applications of zSpace and Oculus platforms. Educators learn to use, edit, or create lesson plans in the zSpace platform that are aligned with the Next Generation Science Standards. They also learn to use virtual reality experiences created by the PAVRLL available in Oculus (e.g. The Soybean Saga). Using a cost-free loan rotation system, educators can bring the AVR units to the classroom and offer AVR activities to their students. Each activity has user guides and activity protocols for both teachers and students. The PAVRLL also offers activities for 3D plant modeling. High school students work in teams of art-, science-, and technology-oriented students to design and create 3D models of plant species that are under research at the Danforth Center and present their projects at scientific events. Those 3D models are open access through the zSpace platform and are used by PAVRLL for professional development and the creation of VR activities. Both teachers and students acquire knowledge of plant and agriculture content and real-world problems, gain skills in AVR technology, 3D modeling, and science communication, and become more aware and interested in plant science. Students that participate in the PAVRLL activities complete pre- and post-surveys and reflection questions that evaluate interests in STEM and STEM careers, students’ perceptions of three design features of biology lab courses (collaboration, discovery/relevance, and iteration/productive failure), plant awareness, and engagement and learning in AVR environments. The PAVRLL was established in the fall of 2019, and since then, it has trained 15 educators, three of which will implement the AVR programs in the fall of 2021. Seven students have worked in the 3D plant modeling activity through a virtual internship. Due to the COVID-19 pandemic, the number of teachers trained, and classroom implementations have been very limited. It is expected that in the fall of 2021, students will come back to the schools in person, and by the spring of 2022, the PAVRLL activities will be fully implemented. This will allow the collection of enough data on student assessments that will provide insights on benefits and best practices for the use of AVR technologies in the classrooms. The PAVRLL uses cutting-edge educational technologies to promote science education and assess their benefits and will continue its expansion. Currently, the PAVRLL is applying for grants to create its own virtual labs where students can experience authentic research experiences using real Danforth research data based on programs the Education Lab already used in classrooms.

Keywords: assessment, augmented reality, education, plant science, virtual reality

Procedia PDF Downloads 147
16786 Improving Teaching in English-Medium Instruction Classes at Japanese Universities through Needs-Based Professional Development Workshops

Authors: Todd Enslen

Abstract:

In order to attract more international students to study for undergraduate degrees in Japan, many universities have been developing English-Medium Instruction degree programs. This means that many faculty members must now teach their courses in English, which raises a number of concerns. A common misconception of English-Medium Instruction (EMI) is that teaching in English is simply a matter of translating materials. Since much of the teaching in Japan still relies on a more traditional, teachercentered, approach, continuing with this style in an EMI environment that targets international students can cause a clash between what is happening and what students expect in the classroom, not to mention what the Scholarship of Teaching and Learning (SoTL) has shown is effective teaching. A variety of considerations need to be taken into account in EMI classrooms such as varying English abilities of the students, modifying input material, and assuring comprehension through interactional checks. This paper analyzes the effectiveness of the English-Medium Instruction (EMI) undergraduate degree programs in engineering, agriculture, and science at a large research university in Japan by presenting the results from student surveys regarding the areas where perceived improvements need to be made. The students were the most dissatisfied with communication with their teachers in English, communication with Japanese students in English, adherence to only English being used in the classes, and the quality of the education they received. In addition, the results of a needs analysis survey of Japanese teachers having to teach in English showed that they believed they were most in need of English vocabulary and expressions to use in the classroom and teaching methods for teaching in English. The result from the student survey and the faculty survey show similar concerns between the two groups. By helping the teachers to understand student-centered teaching and the benefits for learning that it provides, teachers may begin to incorporate more student-centered approaches that in turn help to alleviate the dissatisfaction students are currently experiencing. Through analyzing the current environment in Japanese higher education against established best practices in teaching and EMI, three areas that need to be addressed in professional development workshops were identified. These were “culture” as it relates to the English language, “classroom management techniques” and ways to incorporate them into classes, and “language” issues. Materials used to help faculty better understand best practices as they relate to these specific areas will be provided to help practitioners begin the process of helping EMI faculty build awareness of better teaching practices. Finally, the results from faculty development workshops participants’ surveys will show the impact that these workshops can have. Almost all of the participants indicated that they learned something new and would like to incorporate the ideas from the workshop into their teaching. In addition, the vast majority of the participants felt the workshop provided them with new information, and they would like more workshops like these.

Keywords: English-medium instruction, materials development, professional development, teaching effectiveness

Procedia PDF Downloads 65
16785 Development of Star Tracker for Satellite

Authors: S. Yelubayev, V. Ten, B. Albazarov, E. Sarsenbayev, К. Аlipbayev, A. Shamro, Т. Bopeyev, А. Sukhenko

Abstract:

Currently in Kazakhstan much attention is paid to the development of space branch. Successful launch of two Earth remote sensing satellite is carried out, projects on development of components for satellite are being carried out. In particular, the project on development of star tracker experimental model is completed. In the future it is planned to use this experimental model for development of star tracker prototype. Main stages of star tracker experimental model development are considered in this article.

Keywords: development, prototype, satellite, star tracker

Procedia PDF Downloads 445
16784 Effectiveness of Electronic Learning for Continuing Interprofessional Education on Behavior Change of Healthcare Professionals: A Scoping Review

Authors: Kailin K. Zhang, Anne W. Thompson

Abstract:

Electronic learning for continuing professional education (CPE) and interprofessional education (IPE) in healthcare have been shown to improve learners’ satisfaction, attitudes, and performance. Yet, their impact on behavior change in healthcare professionals through continuing interprofessional education (CIPE) is less known. A scoping review of 32 articles from 2010 to 2020 was conducted using the Arksey and O’Malley framework across all healthcare settings. It focused on evaluating the effectiveness of CIPE on behavior change of healthcare professionals, as well as identifying course features of electronic CIPE programs facilitating behavior change. Eight different types of electronic learning methods, including online programs, tele-education, and social media, were identified as interventions. More than 35,542 healthcare professionals participated in the interventions. Electronic learning for CIPE led to positive behavior outcomes in 30 out of 32 studies, especially through a change in patient care practices. The most successful programs provided interactive and authentic learning experiences tailored to learners’ needs while promoting the direct application of what was learned in their clinical settings. Future research should include monitoring of sustained behavior changes and their resultant patient outcomes.

Keywords: behavior change, continuing interprofessional education, distance learning, electronic learning

Procedia PDF Downloads 117
16783 The Developing of Knowledge-Based System for the Medical Treatment with Herbs

Authors: Rujijan Vichivanives

Abstract:

This research aims to create a knowledge-based system as a database for self-healthcare analysis, diagnosis of simple illnesses, and the use of Thai herbs instead of modern medicine by using principles of Thai traditional medication theory. These were disseminated by website network programs within Suan Sunandha Rajabhat University. The population used in this study was divided into two groups: the first group consisted of four experts of Thai traditional medication and the second group was 300 website users. The methods used for collecting data were paper questionnaires and poll questionnaires on the website. The statistics used for analyzing data was at an average level. The results were divided into three parts: the first part was the development of a knowledge-based system and the second part was applied programs on website. Both parts could be fulfilled and achieved according to the set goal. The third part was the evaluation of the study: The evaluation of the viewpoints of the experts towards website designs were evaluated at a good level of 4.20. The satisfaction evaluation of the users was found at a good level of average satisfactory level at 4.24. It was found that the young population of those under the age of 16 had less cares about their health than the population of other teenagers, working age adults and those of older age. The research findings should be extended in order to encourage the lifestyle modifications to people of all ages by using the self-healthcare principles.

Keywords: developing, herbs, knowledge-based system, medical treatment

Procedia PDF Downloads 310
16782 The Impact of Artificial Intelligence on Human Rights Development and Obligations

Authors: Bola George Asaad Bekledas

Abstract:

Relationship between development and human rights has long been the subject of academic debate. To understand the dynamics between these two concepts, various principles are adopted, from the right to development to development-based human rights. Despite the initiatives taken, the relationship between development and human rights remains unclear. However, the compatibility between these two concepts and the idea that these efforts should be made to respect human rights guarantees have gained momentum in recent years. It is then evaluated whether the right to sustainable development is acceptable or not. The article concludes that the principles of sustainable development are directly or indirectly recognized in various human rights instruments, which is a good answer to the question posed above. This study, therefore, cites regional and international human rights agreements such as, as well as the jurisprudence and interpretative guidelines of human rights institutions, to prove this hypothesis.

Keywords: sustainable development, human rights, the right to development, the human rights-based approach to development, environmental rights, economic development, social sustainability human rights protection, human rights violations, workers’ rights, justice, security.

Procedia PDF Downloads 19
16781 Towards Understanding Arab Consumer’s Response to Foreign Marketing: An Empirical Evidence from Libya

Authors: Izzudin Busnaina

Abstract:

An important question for marketers in the international arena is whether the consumer’s responses (i.e., sentiment and behavioral aspects) toward the global marketing programs in developing countries depend on culture. In a study representing a large sample of consumers and four different home appliances country-of-origin global operators in Libya, the author explores the potential role of culture on Arab consumers' responses toward foreign marketing programs. Results indicate that although the foreign companies have a tendency to adopted standardization perspective, this does not impact on consumers’ responses in a single cultural context toward marketing. The findings reveal that buying behavior was more a function of individual difference than of national cultural context. Further, the results suggest that for mainstream home appliances, segmenting on the basis of nationality is probably unnecessary and that a standardized approach would likely be successful across an increasingly relevant Arab world; and that continuing perceptions of Arab insularity are likely to be misplaced. Faced with the effectiveness of globally efficient marketing programs, local manufacturers would need to work hard to identify particular niche segments where a culturally-specific appeal might be more successful.

Keywords: arab world, buyer’s characteristics, consumer behavior, home appliances, marketing program

Procedia PDF Downloads 369
16780 Character Development Outcomes: A Predictive Model for Behaviour Analysis in Tertiary Institutions

Authors: Rhoda N. Kayongo

Abstract:

As behavior analysts in education continue to debate on how higher institutions can continue to benefit from their social and academic related programs, higher education is facing challenges in the area of character development. This is manifested in the percentages of college completion rates, teen pregnancies, drug abuse, sexual abuse, suicide, plagiarism, lack of academic integrity, and violence among their students. Attending college is a perceived opportunity to positively influence the actions and behaviors of the next generation of society; thus colleges and universities have to provide opportunities to develop students’ values and behaviors. Prior studies were mainly conducted in private institutions and more so in developed countries. However, with the complexity of the nature of student body currently due to the changing world, a multidimensional approach combining multiple factors that enhance character development outcomes is needed to suit the changing trends. The main purpose of this study was to identify opportunities in colleges and develop a model for predicting character development outcomes. A survey questionnaire composed of 7 scales including in-classroom interaction, out-of-classroom interaction, school climate, personal lifestyle, home environment, and peer influence as independent variables and character development outcomes as the dependent variable was administered to a total of five hundred and one students of 3rd and 4th year level in selected public colleges and universities in the Philippines and Rwanda. Using structural equation modelling, a predictive model explained 57% of the variance in character development outcomes. Findings from the results of the analysis showed that in-classroom interactions have a substantial direct influence on character development outcomes of the students (r = .75, p < .05). In addition, out-of-classroom interaction, school climate, and home environment contributed to students’ character development outcomes but in an indirect way. The study concluded that in the classroom are many opportunities for teachers to teach, model and integrate character development among their students. Thus, suggestions are made to public colleges and universities to deliberately boost and implement experiences that cultivate character within the classroom. These may contribute tremendously to the students' character development outcomes and hence render effective models of behaviour analysis in higher education.

Keywords: character development, tertiary institutions, predictive model, behavior analysis

Procedia PDF Downloads 112
16779 Smart Growth Through Innovation Programs: Challenges and Opportunities

Authors: Hanadi Mubarak Al-Mubaraki, Michael Busler

Abstract:

Innovation is the powerful tools for economic growth and diversification, which lead to smart growth. The objective of this paper is to identify the opportunities and challenges of innovation programs discuss and analyse the implementation of the innovation program in the United States (US) and United Kingdom (UK). To achieve the objectives, the research used a mixed methods approach, quantitative (survey), and qualitative (multi-case study) to examine innovation best practices in developed countries. In addition, the selection of 4 interview case studies of innovation organisations based on the best practices and successful implementation worldwide. The research findings indicated the two challenges such as 1) innovation required business ecosystem support to deliver innovation outcomes such as new product and new services, and 2) foster the climate of innovation &entrepreneurship for economic growth and diversification. Although the two opportunities such as 1) sustainability of the innovation events which lead smart growth, and 2) establish the for fostering the artificial intelligence hub entrepreneurship networking at multi-levels. The research adds value to academicians and practitioners such as government, funded organizations, institutions, and policymakers. The authors aim to conduct future research a comparative study of innovation case studies between developed and developing countries for policy implications worldwide. The Originality of This study contributes to current literature about the innovation best practice in developed and developing countries.

Keywords: economic development, technology transfer, entrepreneurship, innovation program

Procedia PDF Downloads 121
16778 Fast Generation of High-Performance Driveshafts: A Digital Approach to Automated Linked Topology and Design Optimization

Authors: Willi Zschiebsch, Alrik Dargel, Sebastian Spitzer, Philipp Johst, Robert Böhm, Niels Modler

Abstract:

In this article, we investigate an approach that digitally links individual development process steps by using the drive shaft of an aircraft engine as a representative example of a fiber polymer composite. Such high-performance, lightweight composite structures have many adjustable parameters that influence the mechanical properties. Only a combination of optimal parameter values can lead to energy efficient lightweight structures. The development tools required for the Engineering Design Process (EDP) are often isolated solutions, and their compatibility with each other is limited. A digital framework is presented in this study, which allows individual specialised tools to be linked via the generated data in such a way that automated optimization across programs becomes possible. This is demonstrated using the example of linking geometry generation with numerical structural analysis. The proposed digital framework for automated design optimization demonstrates the feasibility of developing a complete digital approach to design optimization. The methodology shows promising potential for achieving optimal solutions in terms of mass, material utilization, eigenfrequency, and deformation under lateral load with less development effort. The development of such a framework is an important step towards promoting a more efficient design approach that can lead to stable and balanced results.

Keywords: digital linked process, composite, CFRP, multi-objective, EDP, NSGA-2, NSGA-3, TPE

Procedia PDF Downloads 44
16777 Program Level Learning Outcomes in Music and Technology: Toward Improved Assessment and Better Communication

Authors: Susan Lewis

Abstract:

The assessment of learning outcomes at the program level has attracted much international interest from the perspectives of quality assurance and ongoing curricular redesign and renewal. This paper examines program-level learning outcomes in the field of music and technology, an area of study that has seen an explosion in program development over the past fifteen years. The Audio Engineering Society (AES) maintains an online directory of educational institutions worldwide, yielding the most comprehensive inventory of programs and courses in music and technology. The inventory includes courses, programs, and degrees in music and technology, music and computer science, music production, and the music industry. This paper focuses on published student learning outcomes for undergraduate degrees in music and technology and analyses commonalities at institutions in North America, the United Kingdom, and Europe. The results of a survey of student learning outcomes at twenty institutions indicates a focus on three distinct student learning outcomes: (1) cross-disciplinary knowledge in the fields of music and technology; (2) the practical application of training through the professional industry; and (3) the acquisition of skills in communication and collaboration. The paper then analyses assessment mechanisms for tracking student learning and achievement of learning outcomes at these institutions. The results indicate highly variable assessment practices. Conclusions offer recommendations for enhancing assessment techniques and better communicating learning outcomes to students.

Keywords: quality assurance, student learning; learning outcomes, music and technology

Procedia PDF Downloads 147
16776 Learning Academic Skills through Movement: A Case Study in Evaluation

Authors: Y. Salfati, D. Sharef Bussel, J. Zamir

Abstract:

In this paper, we present an Evaluation Case Study implementing the eight principles of Collaborative Approaches to Evaluation (CAE) as designed by Brad Cousins in the past decade. The focus of this paper is sharing a rich experience in which we achieved two main goals. The first was the development of a valuable and meaningful new teacher training program, and the second was a successful implementation of the CAE principles. The innovative teacher training program is based on the idea of including physical movement during the process of teaching and learning academic themes. The program is called Learning through Movement. This program is a response to a call from the Ministry of Education, claiming that today children sit in front of screens and do not exercise any physical activity. In order to contribute to children’s health, physical, and cognitive development, the Ministry of Education promotes learning through physical activities. Research supports the idea that sports and physical exercise improve academic achievements. The Learning through Movement program is operated by Kaye Academic College. Students in the Elementary School Training Program, together with students in the Physical Education Training Program, implement the program in collaboration with two mentors from the College. The program combines academic learning with physical activity. The evaluation began at the beginning of the program. During the evaluation process, data was collected by means of qualitative tools, including interviews with mentors, observations during the students’ collaborative planning, class observations at school and focus groups with students, as well as the collection of documentation related to the teamwork and to the program itself. The data was analyzed using content analysis and triangulation. The preliminary results show outcomes relating to the Teacher Training Programs, the student teachers, the pupils in class, the role of Physical Education teachers, and the evaluation. The Teacher Training Programs developed a collaborative approach to lesson planning. The students' teachers demonstrated a change in their basic attitudes towards the idea of integrating physical activities during the lessons. The pupils indicated higher motivation through full participation in classes. These three outcomes are indicators of the success of the program. An additional significant outcome of the program relates to the status and role of the physical education teachers, changing their role from marginal to central in the school. Concerning evaluation, a deep sense of trust and confidence was achieved, between the evaluator and the whole team. The paper includes the perspectives and challenges of the heads and mentors of the two programs as well as the evaluator’s conclusions. The evaluation unveils challenges in conducting a CAE evaluation in such a complex setting.

Keywords: collaborative evaluation, training teachers, learning through movement

Procedia PDF Downloads 121
16775 Institutional Cooperation to Foster Economic Development: Universities and Social Enterprises

Authors: Khrystyna Pavlyk

Abstract:

In the OECD countries, percentage of adults with higher education degrees has increased by 10 % during 2000-2010. Continuously increasing demand for higher education gives universities a chance of becoming key players in socio-economic development of a territory (region or city) via knowledge creation, knowledge transfer, and knowledge spillovers. During previous decade, universities have tried to support spin-offs and start-ups, introduced courses on sustainability and corporate social responsibility. While much has been done, new trends are starting to emerge in search of better approaches. Recently a number of universities created centers that conduct research in a field social entrepreneurship, which in turn underpin educational programs run at these universities. The list includes but is not limited to the Centre for Social Economy at University of Liège, Institute for Social Innovation at ESADE, Skoll Centre for Social Entrepreneurship at Oxford, Centre for Social Entrepreneurship at Rosklide, Social Entrepreneurship Initiative at INSEAD. Existing literature already examined social entrepreneurship centers in terms of position in the institutional structure, initial and additional funding, teaching initiatives, research achievements, and outreach activities. At the same time, Universities can become social enterprises themselves. Previous research revealed that universities use both business and social entrepreneurship models. Universities which are mainly driven by a social mission are more likely to transform into social entrepreneurial institutions. At the same time, currently, there is no clear understanding of what social entrepreneurship in higher education is about and thus social entrepreneurship in higher education needs to be studied and promoted at the same time. Main roles which socially oriented university can play in city development include: buyer (implementation of socially focused local procurement programs creates partnerships focused on local sustainable growth.); seller (centers created by universities can sell socially oriented goods and services, e.g. in consultancy.); employer (Universities can employ socially vulnerable groups.); business incubator (which will help current student to start their social enterprises). In the paper, we will analyze these in more detail. We will also examine a number of indicators that can be used to assess the impact, both direct and indirect, that universities can have on city's economy. At the same time, originality of this paper mainly lies not in methodological approaches used, but in countries evaluated. Social entrepreneurship is still treated as a relatively new phenomenon in post-transitional countries where social services were provided only by the state for many decades. Paper will provide data and example’s both from developed countries (the US and EU), and those located in CIS and CEE region.

Keywords: social enterprise, university, regional economic development, comparative study

Procedia PDF Downloads 227
16774 A Study of Faculty Development Programs in India to Assist Pedagogy and Curriculum Development

Authors: Chhavi Rana, Sanjay K Jain

Abstract:

All sides of every education debate agree that quality learning happens when knowledgeable, caring teachers use sound pedagogy. Many deliberations of pedagogy make the fault of considering it as principally being about teaching. There has been lot of research about how to build a positive climate for learning, improve student curiosity, and enhance classroom association. However, these things can only be facilitated when teachers are equipped with better teaching techniques that use sound and accurate pedagogy. Pedagogy is the science and art of education. Its aims range from the full development of the human being to skills acquisition. In India, a project named Mission 10 x has been started by an esteemed IT Corporation Wipro as a faculty development programme (FDP) that particularly focus on elements that facilitated teachers in developing curriculum and new pedagogies that can lead to improvement in student engagement. This paper presents a study of these FDPs and examines (1) the parameters that help teachers in building new pedagogies (2) the extent to which appropriate usage of pedagogy is improved after the conduct of Mission 10 x FDPs, and (3) whether institutions differ in terms of their ability to convert usage of improved pedagogy into academic performance via these FDPs. The sample consisted of 2,236 students at 6 four-year engineering colleges and universities that completed several FDPs during 2012-2014. Many measures of usage of better pedagogy were linked positively with such FDPs, although some of the relationships were weak in strength. The results suggest that the usage of pedagogy were more benefited after conducting these FDPs and application of novel approaches in conducting classes.

Keywords: student engagement, critical thinking; achievement, student learning, pedagogy

Procedia PDF Downloads 396
16773 Iranian Sexual Health Needs in Viewpoint of Policy Makers: A Qualitative Study

Authors: Mahnaz Motamedi, Mohammad Shahbazi, Shahrzad Rahimi-Naghani, Mehrdad Salehi

Abstract:

Introduction: Identifying sexual health needs, developing appropriate plans, and delivering services to meet those needs is an essential component of health programs for women, men, and children all over the world, especially in poor countries. Main Subject: The aim of this study was to describe the needs of sexual health from the viewpoint of health policymakers in Iran. Methods: A qualitative study using thematic content analysis was designed and conducted. Data gathering was conducted through semi-structured, in-depth interviews with 25 key informants within the healthcare system. Key informants were selected through both purposive and snowball sampling. MAXQUDA software (version 10) was used to facilitate transcription, classification of codes, and conversion of data into meaningful units, by the process of reduction and compression. Results: The analysis of narratives and information categorized sexual health needs into five categories: culturalization of sexual health discourse, sexual health care services, sexual health educational needs, sexual health research needs, and organizational needs. Conclusion: Identifying and explaining sexual health needs is an important factor in determining the priority of sexual health programs and identification of barriers to meet these needs. This can help other policymakers and health planners to develop appropriate programs to promote sexual and reproductive health.

Keywords: sexual health, sexual health needs, policy makers, health system, qualitative study

Procedia PDF Downloads 195
16772 Safe School Program in Indonesia: Questioning Whether It Is Too Hard to Succeed

Authors: Ida Ngurah

Abstract:

Indonesia is one of the most prone disaster countries, which has earthquake, tsunami or high wave, flood and landslide as well as volcano eruption and drought. Disaster risk reduction has been developing extensively and comprehensively, particularly after tsunami hit in 2004. Yet, saving people live including children and youth from disaster risk is still far from succeed. Poor management of environment, poor development of policy and high level of corruption has become challenges for Indonesia to save its people from disaster impact. Indonesia is struggling to ensure its future best investment, children and youth to have better protection when disaster strike in school hours and have basic knowledge on disaster risk reduction. The program of safe school is being initiated and developed by Plan Indonesia since 2010, yet this effort still needs to be elaborated. This paper is reviewing sporadic safe school programs that have been implemented or currently being implemented Plan Indonesia in few areas of Indonesia, including both rural and urban setting. Methods used are in-depth interview with dedicated person for the program from Plan Indonesia and its implementing patners and analysis of project documents. The review includes program’s goal and objectives, implementation activity, result and achievement as well as its monitoring and evaluation scheme. Moreover, paper will be showing challenges, lesson learned and best practices of the program. Eventually, paper will come up with recommendation for strategy for better implementation of safe school program in Indonesia.

Keywords: disaster impact, safe school, programs, children, youth

Procedia PDF Downloads 338
16771 Causal-Comparative Study on the Benefit of Faculty Intervention on Student Academic Performance

Authors: Anne Davies

Abstract:

Numerous students matriculating into university programs are surprised to find they are underprepared for the academic challenges of undergraduate studies. In many cases, they are unaware of their weaknesses as a scholar and unsure of how to develop their skills to succeed academically. Hypothesis: Early proactive intervention from faculty and staff members can mitigate academic issues and promote better student success outcomes. Method: After three weeks in their first semester, first-year students struggling-academically were recruited to attend individual weekly remediation sessions to develop effective learning practices. A causal-comparative methodology was used to evaluate their progress as compared to prior students with similar academic performances. Observations: Students welcomed the intervention from faculty and staff to remediate their individual needs. Those who received help in the third week had better outcomes than previous students with comparable performances who did not receive any interventional support. At the end of the semester, most students were back on track to complete their chosen degree programs. Conclusions: Early intervention by faculty and staff can improve the success of students in maintaining their status in their programs. In the future, this program will be incorporated into all first-year experience courses.

Keywords: Academic outcomes, program retention, remediation, undergraduate students

Procedia PDF Downloads 103
16770 A Sociological Study of the Potential Role of Retired Soldiers in the Post War Development and Reconstruction in Sri Lanka

Authors: Amunupura Kiriwandeiye Gedara, Asintha Saminda Gnanaratne

Abstract:

The security forces can be described as a workforce that goes beyond the role of ensuring the national security and contributes to the development process of the country. Soldiers are following combatant training courses during their tenure, they are equipped with a variety of vocational training courses to satisfy the needs of the army, to equip them with vocational training capabilities to achieve the development and reconstruction goals of the country as well as for the betterment of society in the event of emergencies. But with retirement, their relationship with the military is severed, and they are responsible for the future of their lives. The main purpose of this study was to examine how such professional capabilities can contribute to the development of the country, the current socio-economic status of the retired soldiers, and the current application of the vocational training skills they have mastered in the army to develop and rebuild the country in an effective manner. After analyzing the available research literature related to this field, a conceptual framework was developed and according to qualitative research methodology, and data obtained from Case studies and interviews are analyzed by using thematic analysis. Factors influencing early retirement include a lack of understanding of benefits, delays in promotions, not being properly evaluated for work, getting married on hasty decisions, and not having enough time to spend on family and household chores. Most of the soldiers are not aware about various programs and benefits available to retirees. They do not have a satisfactory attitude towards the retirement guidance they receive from the army at the time of retirement. Also, due to the lack of understanding about how to use their vocational capabilities successfully pursue their retirement life, the majority of people are employed in temporary jobs, and some are successful in post-retirement life due to their successful use of training received. Some live on pensions without engaging in any income-generating activities, and those who retire after 12 years of service are facing severe economic hardships as they do not get pensions. Although they have received training in various fields, they do not use them for their benefit due to lack of proper guidance. Although the government implements programs, they are not clearly aware of them. Barriers to utilization of training include an absence of a system to identify the professional skills of retired soldiers, interest in civil society affairs, exploration of opportunities in the civil and private sectors, and politicization of services. If they are given the opportunity, they will be able to contribute to the development and reconstruction process. The findings of the study further show that it has many social, economic, political, and psychological benefits not only for individuals but also for a country. Entrepreneurship training for all retired soldiers, improving officers' understanding, streamlining existing mechanisms, creating new mechanisms, setting up a separate unit for retirees, and adapting them to civil society, private and non-governmental contributions, and training courses can be identified as potential means to improve the current situation.

Keywords: development, reconstruction, retired soldiers, vocational capabilities

Procedia PDF Downloads 99
16769 Collateral Impact of Water Resources Development in an Arsenic Affected Village of Patna District

Authors: Asrarul H. Jeelani

Abstract:

Arsenic contamination of groundwater and its’ health implications in lower Gangetic plain of Indian states started reporting in the 1980s. The same period was declared as the first water decade (1981-1990) to achieve ‘water for all.’ To fulfill the aim, the Indian government, with the support of international agencies installed millions of hand-pumps through water resources development programs. The hand-pumps improve the accessibility if the groundwater, but over-extraction of it increases the chances of mixing of trivalent arsenic which is more toxic than pentavalent arsenic of dug well water in Gangetic plain and has different physical manifestations. Now after three decades, Bihar (middle Gangetic plain) is also facing arsenic contamination of groundwater and its’ health implications. Objective: This interdisciplinary research attempts to understand the health and social implications of arsenicosis among different castes in Haldi Chhapra village and to find the association of ramifications with water resources development. Methodology: The Study used concurrent quantitative dominant mix method (QUAN+qual). The researcher had employed household survey, social mapping, interviews, and participatory interactions. However, the researcher used secondary data for retrospective analysis of hand-pumps and implications of arsenicosis. Findings: The study found 88.5% (115) household have hand-pumps as a source of water however 13.8% uses purified supplied water bottle and 3.6% uses combinations of hand-pump, bottled water and dug well water for drinking purposes. Among the population, 3.65% of individuals have arsenicosis, and 2.72% of children between the age group of 5 to 15 years are affected. The caste variable has also emerged through quantitative as well as geophysical locations analysis as 5.44% of arsenicosis manifested individual belong to scheduled caste (SC), 3.89% to extremely backward caste (EBC), 2.57% to backward caste (BC) and 3% to other. Among three clusters of arsenic poisoned locations, two belong to SC and EBC. The village as arsenic affected is being discriminated, whereas the affected individual is also facing discrimination, isolation, stigma, and problem in getting married. The forceful intervention to install hand-pumps in the first water decades and later restructuring of the dug well destroyed a conventional method of dug well cleaning. Conclusion: The common manifestation of arsenicosis has increased by 1.3% within six years of span in the village. This raised the need for setting up a proper surveillance system in the village. It is imperative to consider the social structure for arsenic mitigation program as this research reveals caste as a significant factor. The health and social implications found in the study; retrospectively analyzed as the collateral impact of water resource development programs in the village.

Keywords: arsenicosis, caste, collateral impact, water resources

Procedia PDF Downloads 78