Search results for: knowledge as a service
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 10596

Search results for: knowledge as a service

9546 Algorithms used in Spatial Data Mining GIS

Authors: Vahid Bairami Rad

Abstract:

Extracting knowledge from spatial data like GIS data is important to reduce the data and extract information. Therefore, the development of new techniques and tools that support the human in transforming data into useful knowledge has been the focus of the relatively new and interdisciplinary research area ‘knowledge discovery in databases’. Thus, we introduce a set of database primitives or basic operations for spatial data mining which are sufficient to express most of the spatial data mining algorithms from the literature. This approach has several advantages. Similar to the relational standard language SQL, the use of standard primitives will speed-up the development of new data mining algorithms and will also make them more portable. We introduced a database-oriented framework for spatial data mining which is based on the concepts of neighborhood graphs and paths. A small set of basic operations on these graphs and paths were defined as database primitives for spatial data mining. Furthermore, techniques to efficiently support the database primitives by a commercial DBMS were presented.

Keywords: spatial data base, knowledge discovery database, data mining, spatial relationship, predictive data mining

Procedia PDF Downloads 461
9545 Information Needs and Information Usage of the Older Person Club’s Members in Bangkok

Authors: Siriporn Poolsuwan

Abstract:

This research aims to explore the information needs, information usages, and problems of information usage of the older people club’s members in Dusit District, Bangkok. There are 12 clubs and 746 club’s members in this district. The research results use for older person service in this district. Data is gathered from 252 club’s members by using questionnaires. The quantitative approach uses in research by percentage, means and standard deviation. The results are as follows (1) The older people need Information for entertainment, occupation and academic in the field of short story, computer work, and religion and morality. (2) The participants use Information from various sources. (3) The Problem of information usage is their language skills because of the older people’s literacy problem.

Keywords: information behavior, older person, information seeking, knowledge discovery and data mining

Procedia PDF Downloads 270
9544 Private Universities and Socio-Economic Development of Host Communities: The Case of Fountain University, Nigeria

Authors: Ganiyu Rasaq Omokeji

Abstract:

The growing recognition of the pivotal role of universities in promoting socio-economic development has led to a focus upon the expansion of the sector around the world. As the economy and society become more ‘knowledge intensive’, the role of universities in development is more onerous than just teaching, research, and service. It is to help create the open society upon which the progress of ideas depends on. Driven to fulfill this role, universities are likely to become even more important in building regional networks of their host communities. Currently, there are about 129 universities in Nigeria, with a total number of 37 federal, 36 state, and 56 privately owned universities. Fountain University is among the private universities in Nigeria located in Osogbo, Osun State. The university is committed to the total development of men and women in an enabling environment, through appropriate teaching, research, and service to humanity, influenced by Islamic ethics and culture. The university focuses on educational development and growth that are relevant to the nation’s manpower needs and global competitiveness through a gradual but steady process. This paper examines the role of Private University in the socio-economic development of host community using Fountain University as a case study. The research methodology design for this paper has a total of 200 respondents. The research instrument of data collection was a questionnaire and in-depth interview (IDI). The finding reveals that Fountain University plays an important role in socio-economic and cultural development through their Islamic culture. The paper recommend that universities must bridge the gaps between creative individual with innovative ideas and the application of technology for economic progress and social betterment of their host communities. University also must serve as a bridge that carries the traffic of social and economic development.

Keywords: private university, socio-economic development, host communities, role of universities and community development

Procedia PDF Downloads 283
9543 A Comparative Study on Multimodal Metaphors in Public Service Advertising of China and Germany

Authors: Xing Lyu

Abstract:

Multimodal metaphor promotes the further development and refinement of multimodal discourse study. Cultural aspects matter a lot not only in creating but also in comprehending multimodal metaphor. By analyzing the target domain and the source domain in 10 public service advertisements of China and Germany about environmental protection, this paper compares the source when the target is alike in each multimodal metaphor in order to seek similarities and differences across cultures. The findings are as follows: first, the multimodal metaphors center around three major topics: the earth crisis, consequences of environmental damage, and appeal for environmental protection; second, the multimodal metaphors mainly grounded in three universal conceptual metaphors which focused on high level is up; earth is mother and all lives are precious. However, there are five Chinese culture-specific multimodal metaphors which are not discovered in Germany ads: east is high leve; a purposeful life is a journey; a nation is a person; good is clean, and water is mother. Since metaphors are excellent instruments on studying ideology, this study can be helpful on intercultural/cross-cultural communication.

Keywords: multimodal metaphor, cultural aspects, public service advertising, cross-cultural communication

Procedia PDF Downloads 174
9542 Application of Data Mining Techniques for Tourism Knowledge Discovery

Authors: Teklu Urgessa, Wookjae Maeng, Joong Seek Lee

Abstract:

Application of five implementations of three data mining classification techniques was experimented for extracting important insights from tourism data. The aim was to find out the best performing algorithm among the compared ones for tourism knowledge discovery. Knowledge discovery process from data was used as a process model. 10-fold cross validation method is used for testing purpose. Various data preprocessing activities were performed to get the final dataset for model building. Classification models of the selected algorithms were built with different scenarios on the preprocessed dataset. The outperformed algorithm tourism dataset was Random Forest (76%) before applying information gain based attribute selection and J48 (C4.5) (75%) after selection of top relevant attributes to the class (target) attribute. In terms of time for model building, attribute selection improves the efficiency of all algorithms. Artificial Neural Network (multilayer perceptron) showed the highest improvement (90%). The rules extracted from the decision tree model are presented, which showed intricate, non-trivial knowledge/insight that would otherwise not be discovered by simple statistical analysis with mediocre accuracy of the machine using classification algorithms.

Keywords: classification algorithms, data mining, knowledge discovery, tourism

Procedia PDF Downloads 295
9541 STML: Service Type-Checking Markup Language for Services of Web Components

Authors: Saqib Rasool, Adnan N. Mian

Abstract:

Web components are introduced as the latest standard of HTML5 for writing modular web interfaces for ensuring maintainability through the isolated scope of web components. Reusability can also be achieved by sharing plug-and-play web components that can be used as off-the-shelf components by other developers. A web component encapsulates all the required HTML, CSS and JavaScript code as a standalone package which must be imported for integrating a web component within an existing web interface. It is then followed by the integration of web component with the web services for dynamically populating its content. Since web components are reusable as off-the-shelf components, these must be equipped with some mechanism for ensuring their proper integration with web services. The consistency of a service behavior can be verified through type-checking. This is one of the popular solutions for improving the quality of code in many programming languages. However, HTML does not provide type checking as it is a markup language and not a programming language. The contribution of this work is to introduce a new extension of HTML called Service Type-checking Markup Language (STML) for adding support of type checking in HTML for JSON based REST services. STML can be used for defining the expected data types of response from JSON based REST services which will be used for populating the content within HTML elements of a web component. Although JSON has five data types viz. string, number, boolean, object and array but STML is made to supports only string, number and object. This is because of the fact that both object and array are considered as string, when populated in HTML elements. In order to define the data type of any HTML element, developer just needs to add the custom STML attributes of st-string, st-number and st-boolean for string, number and boolean respectively. These all annotations of STML are used by the developer who is writing a web component and it enables the other developers to use automated type-checking for ensuring the proper integration of their REST services with the same web component. Two utilities have been written for developers who are using STML based web components. One of these utilities is used for automated type-checking during the development phase. It uses the browser console for showing the error description if integrated web service is not returning the response with expected data type. The other utility is a Gulp based command line utility for removing the STML attributes before going in production. This ensures the delivery of STML free web pages in the production environment. Both of these utilities have been tested to perform type checking of REST services through STML based web components and results have confirmed the feasibility of evaluating service behavior only through HTML. Currently, STML is designed for automated type-checking of integrated REST services but it can be extended to introduce a complete service testing suite based on HTML only, and it will transform STML from Service Type-checking Markup Language to Service Testing Markup Language.

Keywords: REST, STML, type checking, web component

Procedia PDF Downloads 255
9540 Supporting Homeless People in Red Deer, Canada

Authors: Cornelius Ehlers, Lisa Harmatiuk, Sharon Rowland, Michelle Shafers

Abstract:

The objective of the Street Connect program is to provide client-centered care for the homeless population within the City of Red Deer. The program aims to provide an extended continuum of care (addiction, mental health, and physical health) for high acuity homeless individuals who are not connected to a service provider and/or community service agency. Street Connect includes both primary and secondary streams of service: Overall, Street Connect has demonstrated its ability to support vulnerable populations within the City of Red Deer, specifically those who are homeless and seeking addiction, mental health, and medical assistance. The results from the data extract and chart audit reflect the complexity and vulnerability of the clients enrolled in the Street Connect program. The clients were predominantly male, with an average age of 41 years. The majority did not have a permanent address, and 65% did not have employment. Substance abuse/addiction issues were common, combined with a history of psychiatric diagnoses and previous mental health hospitalizations. The most utilized drugs were street drugs such as methamphetamine, fentanyl, and other opioids.

Keywords: client-centred care, homelessness, mental health, rural

Procedia PDF Downloads 93
9539 The Investigation on Pre-Service Teachers' Critical Thinking Dispositions in Terms of Several Variables

Authors: Cüneyit Akar, Mustafa Başaran, Ufuk Uluçınar

Abstract:

The purpose of this research is to examine the critical thinking dispositions of pre-service teachers in terms of several variables. In the line of this aim, we have investigated what their levels of critical thinking dispositions and whether there is any significant different in their critical thinking dispositions. Also, we have examined the relations between their critical thinking dispositions and their parents’ education statues, the number of their siblings, family income levels, and their religiosity level. 202 pre-service teachers who are studying at different departments at faculty of education at Uşak University participated in this research. In study, critical thinking dispositions scale by one of researchers was utilized and its validity and reliability was performed. The findings indicate that the level of their critical thinking dispositions was found to be .376 (arithmetic mean). On the other hand, we found that there is no significant difference in terms of their gender and the department at which they are studying. Furthermore, although there aren’t significant relationships between critical thinking dispositions and their mother education statues, their income levels, their religiosity levels and the number of their siblings; there is any significant positively at low level the relation between thinking dispositions and father educational statues. The findings obtained will be discussed together with literature and other research’ results.

Keywords: preservice teachers, critical thinking dispositions, pedagogy, education

Procedia PDF Downloads 495
9538 The Effects of Geographical and Functional Diversity of Collaborators on Quality of Knowledge Generated

Authors: Ajay Das, Sandip Basu

Abstract:

Introduction: There is increasing recognition that diverse streams of knowledge can often be recombined in novel ways to generate new knowledge. However, knowledge recombination theory has not been applied to examine the effects of collaborator diversity on the quality of knowledge such collaborators produce. This is surprising because one would expect that a collaborative team with certain aspects of diversity should be able to recombine process elements related to knowledge development, which are relatively tacit, but also complementary because of the collaborator’s varying backgrounds. Theory and Hypotheses: We propose to examine two aspects of diversity in the environments of collaborative teams to try and capture such potential recombinations of relatively tacit, process knowledge. The first aspect of diversity in team members’ environments is geographical. Collaborators with more geographical distance between them (perhaps working in different countries) often have more autonomy in the processes they adopt for knowledge development. In the absence of overt monitoring, such collaborators are likely to adopt differing approaches to knowledge development. The sharing of such varying approaches among collaborators is likely to result in greater quality of the common collaborative pursuit. The second aspect is diversity in the work backgrounds of team members. Such diversity can also increase the potential for knowledge recombination. For example, if one or more members are from a manufacturing center (versus all of them being from a purely R&D center), such members will provide unique perspectives on the implementation of innovative ideas. Again, knowledge that has been evaluated from these diverse perspectives is likely to be of a higher quality. In addition to the above aspects of environmental diversity among team members, we also plan to examine the extent to which individual collaborators are in different environments from the primary innovation center of their employing firms. Proposed Methods: We will test our model on a sample of firms in the semiconductor industry. Our level of analysis will be individual patents generated by these firms and the teams involved in the generation of these. Information on manufacturing activities of our sample firms will be obtained from SEMI, a proprietary database of the semiconductor industry, as well as company 10-K reports. Conclusion: We believe that our results will represent a preliminary attempt to understand how various forms of diversity in collaborative teams impact the knowledge development process. Our dependent variable of knowledge quality is important to study since higher values of this variable can not only drive firm performance but the broader development of regions and societies through spillover impacts on future innovation. The results of this study will, therefore, inform future research and practice in innovation, geographical location, and vertical integration.

Keywords: innovation, manufacturing strategy, knowledge, diversity

Procedia PDF Downloads 352
9537 The Quality and Management Development for Traditional Community Retailers in Samut Songkhram Province, Thailand

Authors: Suppara Charoenpoom

Abstract:

The purposes of this research were to investigate the level of consumers’ awareness of the traditional community retailers in terms of location, service quality, risk, shopping enjoyment, value for money, shopping satisfaction and intention to repurchase as well as to investigate the factors influenced the consumers’ repurchase in Samut Sonkhram Province, Thailand. The findings revealed that consumers had a high level of awareness in terms of location, and intention to repurchase. The factors influenced the consumers’ level of satisfaction included value for money, shopping enjoyment, and service quality. The factors of consumers’ level of satisfaction had an influence to the intention to repurchase. Moreover, the findings also revealed that the majority of respondents wanted traditional community retailers to continue to operate because of these reasons: close location, convenience, credit, as well as provide a place and time for community social gathering and activities.

Keywords: quality management, service quality, traditional retailer, consumers’ awareness

Procedia PDF Downloads 388
9536 Prospective Mathematics Teachers' Content Knowledge on the Definition of Limit and Derivative

Authors: Reyhan Tekin Sitrava

Abstract:

Teachers should have robust and comprehensive content knowledge for effective mathematics teaching. It was explained that content knowledge includes knowing the facts, truths, and concepts; explaining the reasons behind these facts, truths and concepts, and making relationship between the concepts and other disciplines. By virtue of its importance, it will be significant to explore teachers and prospective teachers’ content knowledge related to variety of topics in mathematics. From this point of view, the purpose of this study was to investigate prospective mathematics teachers’ content knowledge. Particularly, it was aimed to reveal the prospective teachers’ knowledge regarding the definition of limit and derivate. To achieve the purpose and to get in-depth understanding, a qualitative case study method was used. The data was collected from 34 prospective mathematics teachers through a questionnaire containing 2 questions. The first question required the prospective teachers to define the limit and the second one required to define the derivative. The data was analyzed using content analysis method. Based on the analysis of the data, although half of the prospective teachers (50%) could write the definition of the limit, nine prospective teachers (26.5%) could not define limit. However, eight prospective teachers’ definition was regarded as partially correct. On the other hand, twenty-seven prospective teachers (79.5%) could define derivative, but seven of them (20.5%) defined it partially. According to the findings, most of the prospective teachers have robust content knowledge on limit and derivative. This result is important because definitions have a virtual role in learning and teaching of mathematics. More specifically, definition is starting point to understand the meaning of a concept. From this point of view, prospective teachers should know the definitions of the concepts to be able to teach them correctly to the students. In addition, they should have knowledge about the relationship between limit and derivative so that they can explain these concepts conceptually. Otherwise, students may memorize the rules of calculating the derivative and the limit. In conclusion, the present study showed that most of the prospective mathematics teachers had enough knowledge about the definition of derivative and limit. However, the rest of them should learn their definition conceptually. The examples of correct, partially correct, and incorrect definition of both concepts will be presented and discussed based on participants’ statements. This study has some implications for instructors. Instructors should be careful about whether students learn the definition of these concepts or not. In order to this, the instructors may give prospective teachers opportunities to discuss the definition of these concepts and the relationship between the concepts.

Keywords: content knowledge, derivative, limit, prospective mathematics teachers

Procedia PDF Downloads 221
9535 A Validation Technique for Integrated Ontologies

Authors: Neli P. Zlatareva

Abstract:

Ontology validation is an important part of web applications’ development, where knowledge integration and ontological reasoning play a fundamental role. It aims to ensure the consistency and correctness of ontological knowledge and to guarantee that ontological reasoning is carried out in a meaningful way. Existing approaches to ontology validation address more or less specific validation issues, but the overall process of validating web ontologies has not been formally established yet. As the size and the number of web ontologies continue to grow, the necessity to validate and ensure their consistency and interoperability is becoming increasingly important. This paper presents a validation technique intended to test the consistency of independent ontologies utilized by a common application.

Keywords: knowledge engineering, ontological reasoning, ontology validation, semantic web

Procedia PDF Downloads 322
9534 Socio-Cultural Factors to Support Knowledge Management and Organizational Innovation: A Study of Small and Medium-Sized Enterprises in Latvia

Authors: Madara Apsalone

Abstract:

Knowledge management and innovation is key to competitive advantage and sustainable business development in advanced economies. Small and medium-sized enterprises (SMEs) have lower capacity and more constrained resources for long-term and high-uncertainty research and development investments. At the same time, SMEs can implement organizational innovation to improve their performance and further foster other types of innovation. The purpose of this study is to analyze, how socio-cultural factors such as shared values, organizational behaviors, work organization and decision making processes can influence knowledge management and help to develop organizational innovation via an empirical study. Surveying 600 SMEs in Latvia, the author explores the contribution of different socio-cultural factors to organizational innovation and the role of knowledge management and organizational learning in this process. A conceptual model, explaining the impact of organizational team, development, result-orientation and structure is created. The study also proposes insights that contribute to theoretical and practical discussions on fostering innovation of small businesses in small economies.

Keywords: knowledge management, organizational innovation, small and medium-sized enterprises, socio-cultural factors

Procedia PDF Downloads 391
9533 The Implementation of the Multi-Agent Classification System (MACS) in Compliance with FIPA Specifications

Authors: Mohamed R. Mhereeg

Abstract:

The paper discusses the implementation of the MultiAgent classification System (MACS) and utilizing it to provide an automated and accurate classification of end users developing applications in the spreadsheet domain. However, different technologies have been brought together to build MACS. The strength of the system is the integration of the agent technology with the FIPA specifications together with other technologies, which are the .NET widows service based agents, the Windows Communication Foundation (WCF) services, the Service Oriented Architecture (SOA), and Oracle Data Mining (ODM). Microsoft's .NET windows service based agents were utilized to develop the monitoring agents of MACS, the .NET WCF services together with SOA approach allowed the distribution and communication between agents over the WWW. The Monitoring Agents (MAs) were configured to execute automatically to monitor excel spreadsheets development activities by content. Data gathered by the Monitoring Agents from various resources over a period of time was collected and filtered by a Database Updater Agent (DUA) residing in the .NET client application of the system. This agent then transfers and stores the data in Oracle server database via Oracle stored procedures for further processing that leads to the classification of the end user developers.

Keywords: MACS, implementation, multi-agent, SOA, autonomous, WCF

Procedia PDF Downloads 274
9532 The Singapore Innovation Web and Facilitation of Knowledge Processes

Authors: Ola Jon Mork, Irina Emily Hansen

Abstract:

The European Growth Strategy Program calls for more efficient methods for knowledge creation and innovation. This study contributes with new insights into the Singapore Innovation System; more precisely how knowledge processes are facilitated. The research material is collected by visiting the different innovation locations in Singapore and depth interview with key persons. The different innovation actors web sites and brochures have been studied. Governmental reports and figures have also been studied. The findings show that facilitation of Knowledge Processes in the Singapore Innovation System has a basic structure with three processes, which is 1) Idea capturing – 2)Technology and Business Execution – 3)Idea Realization. Dedicated innovation parks work with the most promising entrepreneurs; more precisely: finding the persons with the motivation to 'change the world'. The innovation park will facilitate these entrepreneurs for 100 days, where they also will be connected to a global network of venture capital. And, the entrepreneurs will have access to mentors from these venture companies. Research institutes parks work with the development of world leading technology. To facilitate knowledge development they connect with industrial companies which are the most promising applicators of their technology. Knowledge facilitation is the main purpose, but this cooperation/testing is also serving as a platform for funding. Probably this is cooperation is also attractive for world leading companies. Dedicated innovation parks work with facilitation of innovators of new applications and perfection of products for the end- user. These parks can be specialized in special areas, like health products and life science products. Another example of this is automotive companies giving research call for these parks to develop and innovate new products and services upon their technology. Common characteristics for the knowledge facilitation in the Singapore Innovation System are a short trial period for promising actors, normally 100 days. It is also a strong focus on training of the entrepreneurs. Presentations and diffusion of knowledge is an important part of the facilitation. Funding will be available for the most successful entrepreneurs and innovators.

Keywords: knowledge processes, facilitation, innovation, Singapore innovation web

Procedia PDF Downloads 297
9531 Model Development of Health Tourism at Ban Nam Chieo Community, Laem Ngop, Trat Province

Authors: Pradapet Krutchangthong, Jirawat Sudsawart

Abstract:

This research aims to study the health tourism administration and factors related to health tourism promotion at Ban Nam Chieo Community, Laem Ngop, Trat Province. The sample in this research is 361 tourists who use the service and Ban Nam Chieo Community residents who provide the service. Sampling was done from a population size of 3,780 using Taro Yamane’s formula. The tools used in the study were questionnaires and interviews. The statistics used in this research are percentage, mean and standard deviation. The result of Model Development of Health Tourism at Ban Nam Chieo Community, Laem Ngop , Trat Province shows that most of them are female with bachelor degree. They are government officers with an average income between 16,001-20,000 Baht. Suggested health system activities for health tourism development are: 1) health massage, 2) herbal compress, 3) exercise in the water by walking on shell. Meanwhile, factors related to health tourism promotion at Ban Nam Chieo Community, Laem Ngop, Trat Province are: 1) understanding the context of the community and service providers, 2) cooperation from related government and private sectors.

Keywords: health tourism, health system activities, promotion, administration

Procedia PDF Downloads 389
9530 The Relationship Between Inspirational Leadership Style and Perceived Social Capital by Mediation of the Development of Organizational Knowledge Resources

Authors: Farhad Shafiepour Motlagh, Narges Salehi

Abstract:

The aim of the present study was to investigate the relationship between inspirational leadership style and perceived social capital through the mediation of organizational knowledge resource development. The research method was descriptive-correlational. The statistical population consisted of all 3537 secondary school teachers in Isfahan. Sample selection was based on Cochran's formula volume formula for 338 people and multi-stage random sampling. The research instruments included a researcher-made inspirational leadership style questionnaire, a perceived social capital questionnaire (Putnam, 1999), and a researcher-made questionnaire of perceived organizational knowledge resources. Kolmogorov statistical tests, Pearson correlation, stepwise multiple regression, and structural equation modeling were used to analyze the data. In general, the results showed that there is a significant relationship between inspirational leadership style and the use of perceived social capital at the level of P <0.05. Also, the development of organizational knowledge resources mediates the relationship between inspirational leadership style and the use of perceived social capital at the level of P <0.05.

Keywords: inspirational leadership style, perceived social capital, perceived organizational knowledge

Procedia PDF Downloads 208
9529 Knowledge-Based Virtual Community System (KBVCS) for Enhancing Knowledge Sharing in Mechatronics System Diagnostic and Repair: A Case of Automobile

Authors: Adedeji W. Oyediran, Yekini N. Asafe

Abstract:

Mechatronics is synergistic integration of mechanical engineering, with electronics and intelligent computer control in the design and manufacturing of industrial products and processes. Automobile (auto car, motor car or car is a wheeled motor vehicle used for transporting passengers, which also carries its own engine or motor) is a mechatronic system which served as major means of transportation around the world. Virtually all community has a need for automobile. This makes automobile issues as related to diagnostic and repair interesting to all communities. Consequent to the diversification of skill in diagnosing automobile faults and approaches in solving some problems and innovation in automobile industry. It is appropriate to say that repair and diagnostic of automobile will be better enhanced if community has opportunity of sharing knowledge and idea globally. This paper discussed the desirable elements in automobile as mechatronics system and present conceptual framework of virtual community model for automobile users.

Keywords: automobile, automobile users, knowledge sharing, mechatronics system, virtual community

Procedia PDF Downloads 508
9528 Drug Use Knowledge and Antimicrobial Drug Use Behavior

Authors: Pimporn Thongmuang

Abstract:

The import value of antimicrobial drugs reached approximately fifteen million Baht in 2010, considered as the highest import value of all modern drugs, and this value is rising every year. Antimicrobials are considered the hazardous drugs by the Ministry of Public Health. This research was conducted in order to investigate the past knowledge of drug use and Antimicrobial drug use behavior. A total of 757 students were selected as the samples out of a population of 1,800 students. This selected students had the experience of Antimicrobial drugs use a year ago. A questionnaire was utilized in this research. The findings put on the view that knowledge gained by the students about proper use of antimicrobial drugs was not brought into practice. This suggests that the education procedure regarding drug use needs adjustment. And therefore the findings of this research are expected to be utilized as guidelines for educating people about the proper use of antimicrobial drugs. At a broader perspective, correct drug use behavior of the public may potentially reduce drug cost of the Ministry of Public Health of Thailand.

Keywords: drug use knowledge, antimicrobial drugs, drug use behavior, drug

Procedia PDF Downloads 280
9527 A Literature Review on Development of a Forecast Supported Approach for the Continuous Pre-Planning of Required Transport Capacity for the Design of Sustainable Transport Chains

Authors: Georg Brunnthaller, Sandra Stein, Wilfried Sihn

Abstract:

Logistics service providers are facing increasing volatility concerning future transport demand. Short-term planning horizons and planning uncertainties lead to reduced capacity utilisation and increasing empty mileage. To overcome these challenges, a model is proposed to continuously pre-plan future transport capacity in order to redesign and adjust the intermodal fleet accordingly. It is expected that the model will enable logistics service providers to organise more economically and ecologically sustainable transport chains in a more flexible way. To further describe such planning aspects, this paper gives a structured literature review on transport planning problems. The focus is on strategic and tactical planning levels, comprising relevant fleet-sizing-, network-design- and choice-of-carriers-problems. Models and their developed solution techniques are presented and the literature review is concluded with an outlook to our future research objectives

Keywords: choice of transport mode, fleet-sizing, freight transport planning, multimodal, review, service network design

Procedia PDF Downloads 364
9526 Customer Satisfaction and Effective HRM Policies: Customer and Employee Satisfaction

Authors: S. Anastasiou, C. Nathanailides

Abstract:

The purpose of this study is to examine the possible link between employee and customer satisfaction. The service provided by employees, help to build a good relationship with customers and can help at increasing their loyalty. Published data for job satisfaction and indicators of customer services were gathered from relevant published works which included data from five different countries. The reviewed data indicate a significant correlation between indicators of customer and employee satisfaction in the Banking sector. There was a significant correlation between the two parameters (Pearson correlation R2=0.52 P<0.05) The reviewed data provide evidence that there is some practical evidence which links these two parameters.

Keywords: job satisfaction, job performance, customer’ service, banks, human resources management

Procedia PDF Downloads 321
9525 Opinions of Pre-Service Teachers on Online Language Teaching: COVID-19 Pandemic Perspective

Authors: Neha J. Nandaniya

Abstract:

In the present research paper researcher put focuses on the opinions of pre-service teachers have been taken regarding online language teaching, which was held during the COVID-19 pandemic and is still going on. The researcher developed a three-point rating scale in Google Forms to find out the views of trainees on online language learning, in which 167 B. Ed. trainees having language content and method gave their responses. After scoring the responses obtained by the investigator, the chi-square value was calculated, and the findings were concluded. The major finding of the study is language learning is not as effective as offline teaching mode.

Keywords: online language teaching, ICT competency, B. Ed. trainees, COVID-19 pandemic

Procedia PDF Downloads 86
9524 Knowledge, Attitude and Practice of Patient Referral among Patent and Proprietary Medicine Vendors in Obio-Akpor, Rivers State

Authors: Chukwunonso Igboamalu, Daprim Ogaji

Abstract:

Background: With the limited number of trained health care providers in Nigeria, patent and proprietary medicine vendors (PPMVs) are inevitable and highly needed especially in the rural areas for the supply of drugs in treating minor illnesses. These vendors serve as a crucial link between the healthcare system and the community, aiding in the distribution of medications and healthcare information, particularly in areas with limited hospital infrastructure. Objectives: The study set to measure the participants’ knowledge, attitude and patient referral practice and any association of their characteristics with patient referral. Methodology: This cross-sectional descriptive survey was conducted among PPMVs in Obio-Akpor LGA of Rivers State. Data was collected using a self-administered structured questionnaire and analysed using SPSS version 25. Results: The study showed that 18.3% had adequate knowledge, 62.4% had moderate knowledge and 19.2% had poor knowledge. Attitude was moderate among 73.4% of the study participants with only 13% showing adequate attitude. In reporting their referral practice, 34% showed poor referral practice, 58% reported moderate practice and only 8% showed adequate practice. Conclusion: Various facilitators as well as barriers to patient referral were highlighted by the respondents. This study indicated that while attitude and practice were moderate among respondents, the percentage of PPMVs with the adequate knowledge of patient referral was high. To enhance the effectiveness of patient referrals, addressing barriers to referral and promoting education and training for PPMVs are critical steps forward.

Keywords: knowledge, attitude, practice, barriers, facilitators, patent medicine vendor, referral

Procedia PDF Downloads 67
9523 E-Procurement Adoption and Effective Service Delivery in the Uganda Coffee Industry

Authors: Taus Muganda

Abstract:

This research explores the intricate relationship between e-procurement adoption and effective service delivery in the Uganda Coffee Industry, focusing on the processes involved, key actors, and the impact of digital transformation. The study is guided by three prominent theories, Actor-Network Theory, Resource-Based View Theory, and Institutional Theory to comprehensively explore the dynamics of e-procurement in the context of the coffee sector. The primary aim of this project is to examine the e-procurement adoption process and its role in enhancing service delivery within the Uganda Coffee Industry. The research questions guiding this inquiry are: firstly, whether e-procurement adoption and implementation contribute to achieving quality service delivery; and secondly, how e-procurement adoption can be effectively realized within the Uganda Coffee Industry. To address these questions, the study has laid out specific objectives. Firstly, it seeks to investigate the impact of e-procurement on effective service delivery, analysing how the integration of digital processes influences the overall quality of services provided in the coffee industry. Secondly, it aims to critically analyse the measures required to achieve effective delivery outcomes through the adoption and implementation of e-procurement, assessing the strategies that can maximize the benefits of digital transformation. Furthermore, the research endeavours to identify and examine the key actor’s instrumental in achieving effective service delivery within the Uganda Coffee Industry. By utilizing Actor-Network Theory, the study will elucidate the network of relationships and collaborations among actors involved in the e-procurement process. The research contributes to addressing a critical gap in the sector. Despite coffee being the leading export crop in Uganda, constituting 16% of total exports, there is a recognized need for digital transformation, specifically in the realm of e-procurement, to enhance the productivity of producers and contribute to the economic growth of the country. The study aims to provide insights into transforming the Uganda Coffee Industry by focusing on improving the e-procurement services delivered to actors in the coffee sector. The three forms of e-procurement investigated in this research—E-Sourcing, E-Payment, and E-Invoicing—serve as focal points in understanding the multifaceted dimensions of digital integration within the Uganda Coffee Industry. This research endeavours to offer practical recommendations for policymakers, industry stakeholders, and the UCDA to strategically leverage e-procurement for the benefit of the entire coffee value chain.

Keywords: e-procurement, effective service delivery, actors, actor-network theory, resource-based view theory, institutional theory, e-invocing, e-payment, e-sourcing

Procedia PDF Downloads 72
9522 Study on the OTP Authentication Method and Security for User Mobility in the Cloud

Authors: Jong-Won Lee

Abstract:

Since Cloud environment has appeared as the most powerful keyword in the computing industry, the growth in VDI (Virtual Desktop Infrastructure) became remarkable in domestic market. In recent years, with the trend that mobile devices such as smartphones and pads spread so rapidly, the strengths of VDI that allows people to access and perform business on the move along with companies' office needs expedite more rapid spread of VDI. However, although this enhanced accessibility and mobility can bring the enhanced productivity, it sometimes conflicts with the security, so there should be more detailed security solution, which is user authentication. In this paper, mobile OTP (One-Time Password) authentication method is proposed to secure mobile device portability through rapid and secure authentication using mobile devices such as mobile phones or pads, which does not require additional purchase or possession of OTP tokens of users. However, in order to use the service continuously and reliably in the cloud environment, both service provider and user have to prepare for security awareness and security threats, and continuously study the conflicting aspect between the improving user convenience and the security and supplement so that cloud service can provide opportunities to develop as a new growth industry in the future and create a new market in IT industry.

Keywords: cloud, OTP, mobility, security, authentication

Procedia PDF Downloads 351
9521 Impact of Customer Experience Quality on Loyalty of Mobile and Fixed Broadband Services: Case Study of Telecom Egypt Group

Authors: Nawal Alawad, Passent Ibrahim Tantawi, Mohamed Abdel Salam Ragheb

Abstract:

Providing customers with quality experiences has been confirmed to be a sustainable, competitive advantage with a distinct financial impact for companies. The success of service providers now relies on their ability to provide customer-centric services. The importance of perceived service quality and customer experience is widely recognized. The focus of this research is in the area of mobile and fixed broadband services. This study is of dual importance both academically and practically. Academically, this research applies a new model investigating the impact of customer experience quality on loyalty based on modifying the multiple-item scale for measuring customers’ service experience in a new area and did not depend on the traditional models. The integrated scale embraces four dimensions: service experience, outcome focus, moments of truth and peace of mind. In addition, it gives a scientific explanation for this relationship so this research fill the gap in such relations in which no one correlate or give explanations for these relations before using such integrated model and this is the first time to apply such modified and integrated new model in telecom field. Practically, this research gives insights to marketers and practitioners to improve customer loyalty through evolving the experience quality of broadband customers which is interpreted to suggested outcomes: purchase, commitment, repeat purchase and word-of-mouth, this approach is one of the emerging topics in service marketing. Data were collected through 412 questionnaires and analyzed by using structural equation modeling.Findings revealed that both outcome focus and moments of truth have a significant impact on loyalty while both service experience and peace of mind have insignificant impact on loyalty.In addition, it was found that 72% of the variation occurring in loyalty is explained by the model. The researcher also measured the net prompters score and gave explanation for the results. Furthermore, assessed customer’s priorities of broadband services. The researcher recommends that the findings of this research will extend to be considered in the future plans of Telecom Egypt Group. In addition, to be applied in the same industry especially in the developing countries that have the same circumstances with similar service settings. This research is a positive contribution in service marketing, particularly in telecom industry for making marketing more reliable as managers can relate investments in service experience directly with the performance closest to income for instance, repurchasing behavior, positive word of mouth and, commitment. Finally, the researcher recommends that future studies should consider this model to explain significant marketing outcomes such as share of wallet and ultimately profitability.

Keywords: broadband services, customer experience quality, loyalty, net promoters score

Procedia PDF Downloads 267
9520 Effects of Clinical Practice Guideline on Knowledge and Preventive Practices of Nursing Personnel and Incidences of Ventilator-associated Pneumonia Thailand

Authors: Phawida Wattanasoonthorn

Abstract:

Ventilator-associated pneumonia is a serious infection found to be among the top three infections in the hospital. To investigate the effects of clinical practice guideline on knowledge and preventive practices of nursing personnel, and incidences of ventilator-associated pneumonia. A pre-post quasi-experimental study on 17 professional nurses, and 123 ventilator-associated pneumonia patients admitted to the surgical intensive care unit, and the accident and surgical ward of Songkhla Hospital from October 2013 to January 2014. The study found that after using the clinical practice guideline, the subjects’ median score increased from 16.00 to 19.00. The increase in practicing correctly was from 66.01 percent to 79.03 percent with the statistical significance level of .05, and the incidences of ventilator-associated pneumonia decreased by 5.00 percent. The results of this study revealed that the use of the clinical practice guideline helped increase knowledge and practice skill of nursing personnel, and decrease incidences of ventilator-associated pneumonia. Thus, nursing personnel should be encouraged, reminded and promoted to continue using the practice guideline through various means including training, providing knowledge, giving feedback, and putting up posters to remind them of practicing correctly and sustainably.

Keywords: Clinical Practice Guideline, knowledge, Preventive Ventilator, Pneumonia

Procedia PDF Downloads 410
9519 The Traditional Roles and Place of Indigenous Musical Practices in Contemporary African Society

Authors: Benjamin Obeghare Izu

Abstract:

In Africa, indigenous musical practices are the focal point in which most cultural practices revolve, and they are the conduit mainly used in transmitting Indigenous knowledge and values. They serve as a means of documenting, preserving, transmitting indigenous knowledge, and re-enacting their historical, social, and cultural affinity. Indigenous musical practices also serve as a repository for indigenous knowledge and artistic traditions. However, these indigenous musical practices and the resulting cultural ideals are confronted with substantial challenges in the twenty-first century from contemporary cultural influence. Additionally, indigenous musical practices' educational and cultural purposes have been impacted by the broad monetisation of the arts in contemporary society. They are seen as objects of entertainment. Some young people are today unaware of their cultural roots and are losing their cultural identity due to these influences and challenges. In order to help policymakers raise awareness of and encourage the use of indigenous knowledge and musical practices among African youth and scholars, this study is in response to the need to explore the components and functions of the indigenous knowledge system, values, and musical tradition in Africa. The study employed qualitative research methods, utilising interviews, participant observation, and conducting related literature as data collection methods. It examines the indigenous musical practices in the Oba of Benin Royal Igue festival among the Benin people in Edo state, Nigeria, and the Ovwuwve festival observed by the Abraka people in Delta state, Nigeria. The extent to which the indigenous musical practices convey and protect indigenous knowledge and cultural values are reflected in the musical practices of the cultural festivals. The study looks at how indigenous musical arts are related to one another and how that affects how indigenous knowledge is transmitted and preserved. It makes recommendations for how to increase the use of indigenous knowledge and values and their fusion with contemporary culture. The study contributes significantly to ethnomusicology by showing how African traditional music traditions support other facets of culture and how indigenous knowledge might be helpful in contemporary society.

Keywords: African musical practices, African music and dance, African society, indigenous musical practices

Procedia PDF Downloads 116
9518 Performance Analysis of Scalable Secure Multicasting in Social Networking

Authors: R. Venkatesan, A. Sabari

Abstract:

Developments of social networking internet scenario are recommended for the requirements of scalable, authentic, secure group communication model like multicasting. Multicasting is an inter network service that offers efficient delivery of data from a source to multiple destinations. Even though multicast has been very successful at providing an efficient and best-effort data delivery service for huge groups, it verified complex process to expand other features to multicast in a scalable way. Separately, the requirement for secure electronic information had become gradually more apparent. Since multicast applications are deployed for mainstream purpose the need to secure multicast communications will become significant.

Keywords: multicasting, scalability, security, social network

Procedia PDF Downloads 292
9517 Experience Modularization for New Value of Evanescent Cultural Communities: Developing Creative Tourism Services in Bangkok

Authors: Wuttigrai Ngamsirijit

Abstract:

Creative tourism is an ongoing development in many countries as an attempt to moving away from serial reproduction of culture and reviving the culture. Despite, in the destinations with diverse and potential cultural resources, creating new tourism services can be vague. This paper presents how tourism experiences are modularized and consolidated in order to form new creative tourism service offerings in evanescent cultural communities of Bangkok, Thailand. The benefits from data mining in accommodating value co-creation are discussed, and implication of experience modularization to national creative tourism policy is addressed.

Keywords: co-creation, creative tourism, new service design, experience modularization

Procedia PDF Downloads 366