Search results for: writing performance
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 13063

Search results for: writing performance

12763 Board Structure, Composition, and Firm Performance: A Theoretical and Empirical Review

Authors: Suleiman Ahmed Badayi

Abstract:

Corporate governance literature is very wide and involves several empirical studies conducted on the relationship between board structure, composition and firm performance. The separation of ownership and control in organizations were aimed at reducing the losses suffered by the investors in the event of financial scandals. This paper reviewed the theoretical and empirical literature on the relationship between board composition and its impact on firm performance. The findings from the studies provide different results while some are of the view that board structure is related to firm performance, many empirical studies indicates no relationship. However, others found a U-shape relationship between firm performance and board structure. Therefore, this study argued that board structure is not much significant to determine the financial performance of a firm.

Keywords: board structure, composition, firm performance, corporate governance

Procedia PDF Downloads 533
12762 Representation of Violence in Contemporary Chinese Literature: A Case Study of Chi Zijian’s Work

Authors: Xiaowen Yang

Abstract:

Violence has been gaining an increasing presence among contemporary Chinese writers, yet scholarship on the representation of violence in contemporary Chinese literature is disappointingly sparse. The violence which took place in the Cultural Revolution attracted the most attention in previous literary work and academic studies. Known as a writer of the quotidian, chi Zijian is one of China’s most prominent and prolific writers. It is noticeable that in her depiction of ordinary people, an overwhelming presence of violence features which embodies one of the on-going characteristics of contemporary Chinese literature. The violence present in her texts are not about graphic and minute depiction of violent acts, But rather about the character’s complex interrelation with violence. Is it an obsession with extreme figures and events to create powerful tensions within the texts? Or is it a necessary tool to achieve criticism about social realities? This paper argues that based on her grassroots writing philosophy which is characterized by her long-standing concern about ordinary and even marginal people, it is necessary for her texts to involve characters related to violence. This endows her texts with great potential for reading their social and political implications. This paper also contends that though a shocking effect could make the criticism of social realities more powerful, an over-reliance on the excessive exterior representation of violence inhibits the writer’s literary innovation.

Keywords: Chi Zijian, contemporary Chinese literature, Violence, grassroots writing philosophy

Procedia PDF Downloads 312
12761 Recognition of Spelling Problems during the Text in Progress: A Case Study on the Comments Made by Portuguese Students Newly Literate

Authors: E. Calil, L. A. Pereira

Abstract:

The acquisition of orthography is a complex process, involving both lexical and grammatical questions. This learning occurs simultaneously with the domain of multiple textual aspects (e.g.: graphs, punctuation, etc.). However, most of the research on orthographic acquisition focus on this acquisition from an autonomous point of view, separated from the process of textual production. This means that their object of analysis is the production of words selected by the researcher or the requested sentences in an experimental and controlled setting. In addition, the analysis of the Spelling Problems (SP) are identified by the researcher on the sheet of paper. Considering the perspective of Textual Genetics, from an enunciative approach, this study will discuss the SPs recognized by dyads of newly literate students, while they are writing a text collaboratively. Six proposals of textual production were registered, requested by a 2nd year teacher of a Portuguese Primary School between January and March 2015. In our case study we discuss the SPs recognized by the dyad B and L (7 years old). We adopted as a methodological tool the Ramos System audiovisual record. This system allows real-time capture of the text in process and of the face-to-face dialogue between both students and their teacher, and also captures the body movements and facial expressions of the participants during textual production proposals in the classroom. In these ecological conditions of multimodal registration of collaborative writing, we could identify the emergence of SP in two dimensions: i. In the product (finished text): SP identification without recursive graphic marks (without erasures) and the identification of SPs with erasures, indicating the recognition of SP by the student; ii. In the process (text in progress): identification of comments made by students about recognized SPs. Given this, we’ve analyzed the comments on identified SPs during the text in progress. These comments characterize a type of reformulation referred to as Commented Oral Erasure (COE). The COE has two enunciative forms: Simple Comment (SC) such as ' 'X' is written with 'Y' '; or Unfolded Comment (UC), such as ' 'X' is written with 'Y' because...'. The spelling COE may also occur before or during the SP (Early Spelling Recognition - ESR) or after the SP has been entered (Later Spelling Recognition - LSR). There were 631 words entered in the 6 stories written by the B-L dyad, 145 of them containing some type of SP. During the text in progress, the students recognized orally 174 SP, 46 of which were identified in advance (ESRs) and 128 were identified later (LSPs). If we consider that the 88 erasure SPs in the product indicate some form of SP recognition, we can observe that there were twice as many SPs recognized orally. The ESR was characterized by SC when students asked their colleague or teacher how to spell a given word. The LSR presented predominantly UC, verbalizing meta-orthographic arguments, mostly made by L. These results indicate that writing in dyad is an important didactic strategy for the promotion of metalinguistic reflection, favoring the learning of spelling.

Keywords: collaborative writing, erasure, learning, metalinguistic awareness, spelling, text production

Procedia PDF Downloads 141
12760 Impact of Urbanization on the Performance of Higher Education Institutions

Authors: Chandan Jha, Amit Sachan, Arnab Adhikari, Sayantan Kundu

Abstract:

The purpose of this study is to evaluate the performance of Higher Education Institutions (HEIs) of India and examine the impact of urbanization on the performance of HEIs. In this study, the Data Envelopment Analysis (DEA) has been used, and the authors have collected the required data related to performance measures from the National Institutional Ranking Framework web portal. In this study, the authors have evaluated the performance of HEIs by using two different DEA models. In the first model, geographic locations of the institutes have been categorized into two categories, i.e., Urban Vs. Non-Urban. However, in the second model, these geographic locations have been classified into three categories, i.e., Urban, Semi-Urban, Non-Urban. The findings of this study provide several insights related to the degree of urbanization and the performance of HEIs.

Keywords: DEA, higher education, performance evaluation, urbanization

Procedia PDF Downloads 182
12759 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 62
12758 A Case Study of Conceptual Framework for Process Performance

Authors: Ljubica Milanović Glavan, Vesna Bosilj Vukšić, Dalia Suša

Abstract:

In order to gain a competitive advantage, many companies are focusing on reorganization of their business processes and implementing process-based management. In this context, assessing process performance is essential because it enables individuals and groups to assess where they stand in comparison to their competitors. In this paper, it is argued that process performance measurement is a necessity for a modern process-oriented company and it should be supported by a holistic process performance measurement system. It seems very unlikely that a universal set of performance indicators can be applied successfully to all business processes. Thus, performance indicators must be process-specific and have to be derived from both the strategic enterprise-wide goals and the process goals. Based on the extensive literature review and interviews conducted in Croatian company a conceptual framework for process performance measurement system was developed. The main objective of such system is to help process managers by providing comprehensive and timely information on the performance of business processes. This information can be used to communicate goals and current performance of a business process directly to the process team, to improve resource allocation and process output regarding quantity and quality, to give early warning signals, to make a diagnosis of the weaknesses of a business process, to decide whether corrective actions are needed and to assess the impact of actions taken.

Keywords: Croatia, key performance indicators, performance measurement, process performance

Procedia PDF Downloads 646
12757 Exploring Non-Governmental Organizations’ Performance Management: Bahrain Athletics Association as a Case Study

Authors: Nooralhuda Aljlas

Abstract:

In the ever-growing field of non-governmental organizations, the enhancement of performance management and measurement systems has been increasingly acknowledged by political, economic, social, legal, technological and environmental factors. Within Bahrain Athletics Association, such enhancement results from the key factors leading performance management including collaboration, feedback, human resource management, leadership and participative management. The exploratory, qualitative research conducted reviewed performance management theory. As reviewed, the key factors leading performance management were identified. Drawing on a non-governmental organization case study, the key factors leading Bahrain Athletics Association’s performance management were explored. By exploring the key factors leading Bahrain Athletics Association’s performance management, the research study proposed a theoretical framework of the key factors leading performance management in non-governmental organizations in general. The research study recommended further investigation of the role of the two key factors of command and control and leadership, combining military and civilian approaches to enhancing non-governmental organizations’ performance management.

Keywords: Bahrain athletics association, exploratory, key factor, performance management

Procedia PDF Downloads 339
12756 Self-Healing Performance of Heavyweight Concrete with Steam Curing

Authors: Hideki Igawa, Yoshinori Kitsutaka, Takashi Yokomuro, Hideo Eguchi

Abstract:

In this study, the crack self-healing performance of the heavyweight concrete used in the walls of containers and structures designed to shield radioactive materials was investigated. A steam curing temperature that preserves self-healing properties and demolding strength was identified. The presented simultaneously mixing method using the expanding material and the fly ash in the process of admixture can maximize the self-curing performance. Also adding synthetic fibers in the heavyweight concrete improved the self-healing performance.

Keywords: expanding material, heavyweight concrete, self-healing performance, synthetic fiber

Procedia PDF Downloads 309
12755 When does technology alignment influence supply chain performance

Authors: Joseph Akyeh, Abdul Samed Muntaka, Emmanuel Anin, Dorcas Nuertey

Abstract:

Purpose: This study develops and tests arguments that the relationship between technology alignment and supply chain performance is conditional upon levels of technology championing. Methodology: The proposed relationships are tested on a sample of 217 hospitals in a major sub-Saharan African economy. Findings: Findings from the study indicate that technology alignment has a positive and significant effect on supply chain performance. The study further finds that while technology championing strengthens the direct effects of technology alignment on supply chain performance. Theoretical Contributions: A theoretical contribution from this study is the finding that when technology alignment drives supply chain performance is more complex than previously thought it depends on whether or not technology alignment is first championed by top management. Originality: Though some studies have been conducted on technology alignment and health supply chain performance, to the best of the researcher’s knowledge, no previous study has examined the moderating role of technology championing the link between technology alignment and supply chain performance.

Keywords: technology alignment, supply chain performance, technology championing, structural equation modelling

Procedia PDF Downloads 10
12754 Psychological Capital and Work Engagement as Predictors of Employee Performance in a Technology Industry During COVID-19 Pandemic: Basis for Performance Management

Authors: Marion Francisco

Abstract:

The study sought to investigate the psychological capital and work engagement of employees as predictors of employee performance in the technology industry in Makati City. It made used of a descriptive correlational method of research and utilized standardized tests, such as Psychological Capital Scale, Utrech Work Engagement Scale, and Employee Performance Scale. A convenience sampling technique was used to gather data samples from 100 populations with the help of Roscoe concept approach. The study revealed that both psychological capital and work engagement have a significant relationship with employee performance. Psychological capital and work engagement can predict employee performance of the respondents. With the results given, the study suggests: (1) to focus on maintaining a high level of psychological capital and work engagement, on achieving a very high level of psychological capital and work engagement, and on improving the low level of psychological capital or work engagement mostly during this COVID-19 pandemic using the proposed employee performance management plan and (2) to create a proposed employee performance management plan as necessary to tailor fit on employees needs to enhance their performance that will help meet company and client’s needs.

Keywords: employee performance, performance management, psychological capital, technology industry, work engagement

Procedia PDF Downloads 83
12753 A Correlation Analysis of an Effective Music Education with Students’ Mathematical Performance

Authors: Yoon Suh Song

Abstract:

Though music education can broaden one’s capacity for mathematical performance, many countries lag behind in music education. Little empirical evidence is found to identify the connection between math and music. Therefore, this research was set out to explore what music-related variables are associated with mathematical performance. The result of our analysis is as follows: A Pearson's Correlation analysis revealed that PISA math score is strongly correlated with students' Intelligence Quotient (IQ). This lays the foundation for further research as to what factors in students’ IQ lead to a better performance in math.

Keywords: music education, mathematical performance, education, IQ

Procedia PDF Downloads 186
12752 Candid Panchali's Unheard Womanhood: A Study of Chitra Divakurani's the Palace of Illusions

Authors: Shalini Attri

Abstract:

Silence has been 'scriptured' in women within dominating social structures, as the modes of speaking and behaving which deny women free investiture to language. A woman becomes the product of ideological constructions as language substantiates andro-centric bias. Constrained from writing/speaking in the public sphere, women have traditionally been confined to expressing themselves in writing private poetry, letters or diaries. The helplessness of a woman is revealed in the ways in which she is expected to speak a language, which, in fact, is man-made. There are visible binaries of coloniser- colonised; Western-Eastern; White-Black, Nature-Culture, even Male-Female that contribute significantly to our understanding of the concept of representation and its resultant politics. Normally, an author is labeled as feminist, humanist, or propagandist and this process of labeling correspond to a sense of politics besides his inclination to a particular field. One cannot even think of contemporary literature without this representational politics. Thus, each and every bit of analysis of a work of literature demands a political angle to be dealt with. Besides literature, the historical facts and manuscripts are also subject to this politics. The image of woman as someone either dependent on man or is exploited by him only provides half the picture of this representational politics. The present paper is an attempt to study Panchali’s (Draupadi of Mahabharata) voiceless articulation and her representation as a strong woman in Chitra Divakurani’s The Palace of Illusions.

Keywords: politics, representation, silence, social structures

Procedia PDF Downloads 243
12751 Evaluating the Performance of Offensive Lineman in the National Football League

Authors: Nikhil Byanna, Abdolghani Ebrahimi, Diego Klabjan

Abstract:

How does one objectively measure the performance of an individual offensive lineman in the NFL? The existing literature proposes various measures that rely on subjective assessments of game film, but has yet to develop an objective methodology to evaluate performance. Using a variety of statistics related to an offensive lineman’s performance, we develop a framework to objectively analyze the overall performance of an individual offensive lineman and determine specific linemen who are overvalued or undervalued relative to their salary. We identify eight players across the 2013-2014 and 2014-2015 NFL seasons that are considered to be overvalued or undervalued and corroborate the results with existing metrics that are based on subjective evaluation. To the best of our knowledge, the techniques set forth in this work have not been utilized in previous works to evaluate the performance of NFL players at any position, including offensive linemen.

Keywords: offensive lineman, player performance, NFL, machine learning

Procedia PDF Downloads 120
12750 Corporate Governance and Bank Performance: A Study on Indian Banks

Authors: Arjun S.

Abstract:

This study examines the impact of corporate governance on financial performance of Indian banks during five years (from 2010 to 2015). Based on 218 observations, a quantitative method of data analysis was employed to investigate the relevance of corporate governance mechanisms. The first finding reveals a significant and negative impact of board size on the performance of Indian banks. The research also finds a significant and negative relationship between CEO duality and bank performance. Finally, the correlation results reveal that there is a significant and negative correlation of Bank size and bank performance.

Keywords: Indian banks, financial performance, corporate governance, banksize

Procedia PDF Downloads 327
12749 Therapeutic Power of Words through Reading Writing and Storytelling

Authors: Sakshi Kaul, Sundeep Verma

Abstract:

The focus of the current paper is to evaluate the therapeutic power of words. This will be done by critically evaluating the impact reading, writing and storytelling have on individuals. When we read, tell or listen to a story we are exercising our imagination. Imagination becomes the source of activation of thoughts and actions. This enables and helps the reader, writer or the listener to express the suppressed emotions or desires. The stories told, untold may bring various human emotions and attributes to forth such as hope, optimism, fear, happiness. Each story narrated evokes different emotions, at times they help us unravel ourselves in the world of the teller thereby bringing solace. Stories heard or told add to individual’s life by creating a community around, giving wings of thoughts that enable individual to be more imaginative and creative thereby fostering positively and happiness. Reading if looked at from the reader’s point of view can broaden the horizon of information and ideas about facts and life laws giving more meaning to life. From ‘once upon a time’ to ‘to happily ever after’, all that stories talk about is life’s learning. The power of words sometimes may be negated, this paper would reiterate the power of words by critically evaluating how words can become powerful and therapeutic in various structures and forms in the society. There is a story behind every situation, action and reaction. Hence it is of prime importance to understand each story, to enable a person to deal with whatever he or she may be going through. For example, if a client is going through some trauma in his or her life, the counsellor needs to know exactly what is the turmoil that is being faced so that the client can be assisted accordingly. Counselling is considered a process of healing through words or as Talk therapy, where merely through words we try to heal the client. In a counselling session, the counsellor focuses on working with the clients to bring a positive change. The counsellor allows the client to express themselves which is referred to as catharsis. The words spoken, written or heard transcend to heal and can be therapeutic. The therapeutic power of words has been seen in various cultural practices and belief systems. The underlining belief that words have the power to heal, save and bring change has existed from ages. Many religious and spiritual practices also acclaim the power of the words. Through this empirical paper, we have tried to bring to light how reading, writing, and storytelling have been used as mediums of healing and have been therapeutic in nature.

Keywords: reading, storytelling, therapeutic, words

Procedia PDF Downloads 245
12748 E-Management and Firm Performance: An Empirical Study in Tunisian Firms

Authors: Khlif Hamadi

Abstract:

The principal aim of our research is to analyze the impact of the adoption of e-management approach on the performance of Tunisian firms. The method of structural equation was adopted to conduct our exploratory and confirmatory analysis. The results arising from the questionnaire sent to 155 E-managers affirm that the adoption of e-management approach influences the performance of Tunisian firms. The results of the questionnaire show that e-management favors the deployment of ICT usage and contributes enormously to the performance of the modern enterprise. The theoretical and practical implications of the study, as well as directions for future research, are discussed.

Keywords: e-management, ICT Deployment, organizational performance, e-manager

Procedia PDF Downloads 318
12747 Organizational Learning, Job Satisfaction and Work Performance among Nurses

Authors: Rafia Rafique, Arifa Khadim

Abstract:

This research investigates the moderating role of job satisfaction between organizational learning and work performance among nurses. Correlation research design was used. Non-probability purposive sampling technique was utilized to recruit a sample of 110 nurses from public hospitals situated in the city of Lahore. The construct of organizational learning was measured using subscale of Integrated Scale for Measuring Organizational Learning. Job satisfaction was measured with the help of Job Satisfaction Survey. Performance of employees (task performance, contextual performance and counterproductive work behavior) was assessed by Individual Work Performance Questionnaire. Job satisfaction negatively moderates the relationship between organizational learning and counterproductive work behavior. Education has a significant positive relationship with organizational learning. Age, current hospital experience, marital satisfaction and salary of the nurses have positive relationship while number of children has significant negative relationship with counterproductive work behavior. These outcomes can be insightful in understanding the dynamics involved in work performance. Based on the result of this study relevant solutions can be proposed to improve the work performance of nurses.

Keywords: counterproductive work behavior, nurses, organizational learning, work performance

Procedia PDF Downloads 413
12746 Determining Earthquake Performances of Existing Reinforced Concrete Buildings by Using ANN

Authors: Musa H. Arslan, Murat Ceylan, Tayfun Koyuncu

Abstract:

In this study, an artificial intelligence-based (ANN based) analytical method has been developed for analyzing earthquake performances of the reinforced concrete (RC) buildings. 66 RC buildings with four to ten storeys were subjected to performance analysis according to the parameters which are the existing material, loading and geometrical characteristics of the buildings. The selected parameters have been thought to be effective on the performance of RC buildings. In the performance analyses stage of the study, level of performance possible to be shown by these buildings in case of an earthquake was determined on the basis of the 4-grade performance levels specified in Turkish Earthquake Code- 2007 (TEC-2007). After obtaining the 4-grade performance level, selected 23 parameters of each building have been matched with the performance level. In this stage, ANN-based fast evaluation algorithm mentioned above made an economic and rapid evaluation of four to ten storey RC buildings. According to the study, the prediction accuracy of ANN has been found about 74%.

Keywords: artificial intelligence, earthquake, performance, reinforced concrete

Procedia PDF Downloads 442
12745 Determinants of Firm Financial Performance: An Empirical Investigation in Context of Public Limited Companies

Authors: Syed Hassan Amjad

Abstract:

In today’s competitive environment, in order for a company to exist, it must continually improve its Performance by reducing cost, improving quality and productivity, and easy access to market.The purpose of this thesis is to check the firm financial growth and performance and which type of factors affect the firm financial performance. This paper examines the key determinants of firm financial performance. We will differentiate between financial and non financial drivers of the firm financial performance. For the measurement of the firm financial performance there are many ways but all the measure had been taken in aggregation, such as debt, tax rate, operating expenses, earning per share and economic conditions. This study has also been done in developed countries but these researches show that foreign companies face many difficulties inimproving the firm financial performance. In findings we found that marketing expenditures and international diversification had a positive impact on firm valuation. In research also found that a firm's ownership composition, particularly the level of equity ownership by Domestic Financial Institutions and Dispersed Public Shareholders, and the leverage of the firm, tax rate and economic conditions were important factors affecting its financial performance.

Keywords: debt, tax rate, firm financial performance, operating expenses, dividend per share, economic conditions

Procedia PDF Downloads 315
12744 The Design of a Mixed Matrix Model for Activity Levels Extraction and Sub Processes Classification of a Work Project (Case: Great Tehran Electrical Distribution Company)

Authors: Elham Allahmoradi, Bahman Allahmoradi, Ali Bonyadi Naeini

Abstract:

Complex systems have many aspects. A variety of methods have been developed to analyze these systems. The most efficient of these methods should not only be simple, but also provide useful and comprehensive information about many aspects of the system. Matrix methods are considered the most commonly methods used to analyze and design systems. Each matrix method can examine a particular aspect of the system. If these methods are combined, managers can access to more comprehensive and broader information about the system. This study was conducted in four steps. In the first step, a process model of a real project has been extracted through IDEF3. In the second step, activity levels have been attained by writing a process model in the form of a design structure matrix (DSM) and sorting it through triangulation algorithm (TA). In the third step, sub-processes have been obtained by writing the process model in the form of an interface structure matrix (ISM) and clustering it through cluster identification algorithm (CIA). In the fourth step, a mixed model has been developed to provide a unified picture of the project structure through the simultaneous presentation of activities and sub-processes. Finally, the paper is completed with a conclusion.

Keywords: integrated definition for process description capture (IDEF3) method, design structure matrix (DSM), interface structure matrix (ism), mixed matrix model, activity level, sub-process

Procedia PDF Downloads 473
12743 Academic Performance and Therapeutic Breathing

Authors: Abha Gupta, Seema Maira, Smita Sinha

Abstract:

This paper explores using breathing techniques to boost the academic performance of students and describes how teachers can foster the technique in their classrooms. The innovative study examines the differential impact of therapeutic breathing exercises, called pranayama, on students’ academic performance. The paper introduces approaches to therapeutic breathing exercises as an alternative to improve school performance, as well as the self-regulatory behavior, which is known to correlate with academic performance. The study was conducted in a school-wide pranayama program with positive outcomes. The intervention consisted of two breathing exercises, (1) deep breathing, and (2) alternate nostril breathing. It is a quantitative study spanning over a year with about 100 third graders was conducted using daily breathing exercises to investigate the impact of pranayama on academic performance. Significant cumulative gain-scores were found for students who practiced the approach.

Keywords: academic performance, pranayama, therapeutic breathing, yoga

Procedia PDF Downloads 465
12742 Teachers' Learning Community and Their Self Efficacy

Authors: Noha Desouky Aly, Maged Makram Habib

Abstract:

Given the imperative role educational institutions have in the creation of a motivational learning community that develops and engages their students, the influence of evoking the same environment for their teachers needs to be examined. Teachers and their role lie at the core of the efficiency of the learning experience. One exigent aspect in the process of providing professional development to teachers is to involve them in this process, and the best manner would be through creating a learning community in which they are directly engaged and responsible for their own learning. An educational institution that thinks first of its teachers learning and growth would achieve its goals in providing an effective education for its students. The purpose of this research paper is to examine the effect of engaging teachers in a learning community in which they are responsible for their own learning through conducting and providing the material required for the training on their self efficacy, engagement, and perceived autonomy. The sample includes twenty instructors at the German University in Cairo teaching Academic skills at the Department of English and Scientific Methods. The courses taught at the department include Academic skills, writing argumentative essays, critical thinking, communication and presentation skills, and research paper writing. Procedures for the duration of eight weeks will entail pre-post measures to include The Teachers Self Efficacy Scale and an interview. During the weekly departmental meeting, teachers are to share resources and experiences or research and present a topic of their choice that contributes to their professional development. Results are yet to be found.

Keywords: learning community, self- efficacy, teachers, learning experience

Procedia PDF Downloads 467
12741 The Mediating Effect of SMEs Export Performance between Technological Advancement Capabilities and Business Performance

Authors: Fawad Hussain, Mohammad Basir Bin Saud, Mohd Azwardi Md Isa

Abstract:

The aim of this study is to empirically investigate the mediating impact of export performance (EP) between technological advancement capabilities (TAC) and business performance (BP) of Malaysian manufacturing MSME’s. Firm’s technological advancement resources are hypothesized as a platform to enhance both exports and business performance of manufacturing MSMEs in Malaysia. This study is twofold, primary it has investigated that technological advancement capabilities helps to appreciates main performance measures noted in terms of export performance and Secondly it investigates that how efficiently and effectively technological advancement capabilities can contributes in overall Malaysian MSME’s business performance. Smart PLS-3 statistical software is used to know the association between technological advancement capabilities, MSME’s export performance and business performance. In this study the data was composed from Malaysian manufacturing MSME’s in east coast industrial zones known as manufacturing hub of MSMEs. Seven Hundred and Fifty (750) questionnaires were distributed but only 148 usable questionnaires are returned. The finding of this study indicated that technological advancement capabilities helps to strengthen the export in term of time and cost efficient and it plays a significant role in appreciating their business performance. This study is helpful for small and medium enterprises owners who intent to expand their business overseas and though smart technological advancement resources they can achieve their business competitiveness and excellence both at local and international markets.

Keywords: technological advancement capabilities, export performance, business performance, small and medium manufacturing enterprises, malaysia

Procedia PDF Downloads 401
12740 Describing Cognitive Decline in Alzheimer's Disease via a Picture Description Writing Task

Authors: Marielle Leijten, Catherine Meulemans, Sven De Maeyer, Luuk Van Waes

Abstract:

For the diagnosis of Alzheimer's disease (AD), a large variety of neuropsychological tests are available. In some of these tests, linguistic processing - both oral and written - is an important factor. Language disturbances might serve as a strong indicator for an underlying neurodegenerative disorder like AD. However, the current diagnostic instruments for language assessment mainly focus on product measures, such as text length or number of errors, ignoring the importance of the process that leads to written or spoken language production. In this study, it is our aim to describe and test differences between cognitive and impaired elderly on the basis of a selection of writing process variables (inter- and intrapersonal characteristics). These process variables are mainly related to pause times, because the number, length, and location of pauses have proven to be an important indicator of the cognitive complexity of a process. Method: Participants that were enrolled in our research were chosen on the basis of a number of basic criteria necessary to collect reliable writing process data. Furthermore, we opted to match the thirteen cognitively impaired patients (8 MCI and 5 AD) with thirteen cognitively healthy elderly. At the start of the experiment, participants were each given a number of tests, such as the Mini-Mental State Examination test (MMSE), the Geriatric Depression Scale (GDS), the forward and backward digit span and the Edinburgh Handedness Inventory (EHI). Also, a questionnaire was used to collect socio-demographic information (age, gender, eduction) of the subjects as well as more details on their level of computer literacy. The tests and questionnaire were followed by two typing tasks and two picture description tasks. For the typing tasks participants had to copy (type) characters, words and sentences from a screen, whereas the picture description tasks each consisted of an image they had to describe in a few sentences. Both the typing and the picture description tasks were logged with Inputlog, a keystroke logging tool that allows us to log and time stamp keystroke activity to reconstruct and describe text production processes. The main rationale behind keystroke logging is that writing fluency and flow reveal traces of the underlying cognitive processes. This explains the analytical focus on pause (length, number, distribution, location, etc.) and revision (number, type, operation, embeddedness, location, etc.) characteristics. As in speech, pause times are seen as indexical of cognitive effort. Results. Preliminary analysis already showed some promising results concerning pause times before, within and after words. For all variables, mixed effects models were used that included participants as a random effect and MMSE scores, GDS scores and word categories (such as determiners and nouns) as a fixed effect. For pause times before and after words cognitively impaired patients paused longer than healthy elderly. These variables did not show an interaction effect between the group participants (cognitively impaired or healthy elderly) belonged to and word categories. However, pause times within words did show an interaction effect, which indicates pause times within certain word categories differ significantly between patients and healthy elderly.

Keywords: Alzheimer's disease, keystroke logging, matching, writing process

Procedia PDF Downloads 340
12739 Studying the Influence of Logistics on Organizational Performance through a Supply Chain Strategy: Case Study in Goldiran Electronics Co.

Authors: Ali Hajiesmaeili, Mehdi Rahimi, Ehsan Jaberi, Amir Abbas Hosseini

Abstract:

The purpose of this study is investigating the influences of logistics performance on organizational performance including both marketing & financial aspects, and showing the financial impacts of selecting the right marketing and logistics priorities in line with their supply chain type, and also giving the practitioners an advance identification of their priorities and participation types of supply chain, and the best combination of their strategies and resources in this regard. We made use of the original model’s questionnaire to gather all expert’s data and also SPSS and AMOS Ver.22 to analyze the gathered data. CFA method was also used to test whether a relationship between observed variables and their underlying latent constructs exists. Supply chain strategy implementation leads to logistics performance improvement, and marketing performance will be affected as well. Logistics service providers should focus on enhancement of supply chain performance, since logistics performance has been considered as a basis of evaluation of supply chain management strategy. Consequently, performance of the organization will be enhanced. This case is the first research made in Iran that analyzes the relationship between Logistics & Organizational performance in Home Appliances and Home Entertainment companies.

Keywords: logistics, organizational, performance, supply chain, strategy

Procedia PDF Downloads 620
12738 Corporate Governance Attributes and Financial Performance in Malaysian Listed Companies

Authors: Idris Adamu Alhaji, Wan Fauziahbt Wan Yusoff

Abstract:

This study was conducted to identify the relationship between Corporate Governance attributes and Firm Performance, various studies, had been carried out mostly in developed countries, in order to identify the relationship between corporate governance attributes and firm performance. Since, the value creation of corporate governance can be measured through the firm performance, corporate governance act as a mechanism to align management's goals with the stakeholders especially to increase firm performance. Despite extensive study of corporate governance there is still an inconsistence relationship between corporate governance attributes and firm performance. Therefore, the aim of this paper is to identify the relationship between corporate governance attributes and firm performance. Five corporate governance element were used as independent variables which include: Independent director, board size, audit committee, leadership structure and board meeting. Meanwhile, the dependent variables are two firm performance measurements; return on equity (ROE) and earning per share (EPS). This study uses quantitative approaches whereby data were gathered from secondary source data were collected from Annual Reports of the companies, online journals etc. This study revealed that, there is a significant relationship between corporate governance attributes and firm performance. Therefore, the results show that good corporate governance practice influence firm performance. Finally, it's hoped that this study provides current corporate governance scenario in Malaysia that can be used to enhance the development of corporate governance of the country.

Keywords: corporate governance, return on equity, earning per share, financial performance

Procedia PDF Downloads 433
12737 The Powerful of Training; Development and Compensation; Rewards in Sustaining SME’s Performance

Authors: Mohd Fitri Mansor, Noor Hidayah Abu, Hussen Nasir

Abstract:

Human capital is one of valuable assets to the organization in order to sustain organization performance and to achieve both employees and employer objectives. The aim of the study is to examine the powerful of both Human Resource practices (i.e. Training & Development and Compensation & Rewards) towards sustaining SME’s performance. The objectives of the current study are to examine the relationship between training and development as well as compensation and rewards in sustaining Malaysian SME’s performance. Finally, is to identify the strongest variable contribute to the sustainability of SMEs performance. The result from 80 Malaysian SME’s owners found that both variables training & development and compensation & rewards significantly contributes to the sustainability of SME,s performance. Meanwhile, the strongest variable contributes to the sustainability of SMEs performance was training and development. The study contributes to the knowledge and awareness to the SME’s owners an important or the powerful of human resource practices in sustaining their organization performance.

Keywords: training and development, compensation and rewards, sustainability, SME’s performance

Procedia PDF Downloads 448
12736 The Effects of Applying Linguistic Principles and Teaching Techniques in Teaching English at Secondary School in Thailand

Authors: Wannakarn Likitrattanaporn

Abstract:

The purposes of this investigation were to investigate the effects of applying linguistic principles and teaching techniques in teaching English through experimenting the Adapted English Lessons and to determine the teachers’ opinions as well as students’ opinions towards the Adapted Lessons. The subjects of the study were 5 Thai teachers, who teach English, and 85 Grade 10 mixed-ability students at Triamudom Suksa Pattanakarn Ratchada School, Bangkok, Thailand. The research instruments included the Adapted English Lessons, questionnaires asking teachers’ and students’ opinions towards the Adapted Lessons and the informal interview. The data from the research instruments was collected and analyzed concerning the teachers’ and students’ opinions towards adapting linguistic principles and teaching techniques. Linguistic principles of minimal pair and articulatory phonetics and teaching techniques of mimicry-memorization; vocabulary substitution drills, language pattern drills, reading comprehension exercise, practicing listening, speaking and writing skill and communicative activities; informal talk and free writing are applied. The data was statistically compiled according to an arithmetic percentage. The results showed that the teachers and students have very highly positive opinions towards adapting linguistic principles for teaching and learning phonological accuracy. Teaching techniques provided in the Adapted English Lessons can be used efficiently in the classroom. The teachers and students have positive opinions towards them too.

Keywords: applying linguistic principles and teaching techniques, teachers’ and students’ opinions, teaching English, the adapted English lessons

Procedia PDF Downloads 455
12735 Using Happening Performance in Vocabulary Teaching

Authors: Mustafa Gultekin

Abstract:

It is believed that drama can be used in language classes to create a positive atmosphere for students to use the target language in an interactive way. Thus, drama has been extensively used in many settings in language classes. Although happening has been generally used as a performance art of theatre, this new kind of performance has not been widely known in language teaching area. Therefore, it can be an innovative idea to use happening in language classes, and thus a positive environment can be created for students to use the language in an interactive way. Happening can be defined as an art performance that puts emphasis on interaction in an audience. Because of its interactive feature, happening can also be used in language classes to motivate students to use the language in an interactive environment. The present study aims to explain how a happening performance can be applied to a learning environment to teach vocabulary in English. In line with this purpose, a learning environment was designed for a vocabulary presentation lesson. At the end of the performance, students were asked to compare the traditional way of teaching and happening performance in terms of effectiveness. It was found that happening performance provided the students with a more creative and interactive environment to use the language. Therefore, happening can be used in language classrooms as an innovative tool for education.

Keywords: English, happening, language learning, vocabulary teaching

Procedia PDF Downloads 344
12734 Fuzzy Analytic Hierarchy Process for Determination of Supply Chain Performance Evaluation Criteria

Authors: Ibrahim Cil, Onur Kurtcu, H. Ibrahim Demir, Furkan Yener, Yusuf. S. Turkan, Muharrem Unver, Ramazan Evren

Abstract:

Fuzzy AHP (Analytic Hierarchy Process) method is decision-making way at the end of integrating the current AHP method with fuzzy structure. In this study, the processes of production planning, inventory management and purchasing department of a system were analysed and were requested to decide the performance criteria of each area. At this point, the current work processes were analysed by various decision-makers and comparing each criteria by giving points according to 1-9 scale were completed. The criteria were listed in order to their weights by using Fuzzy AHP approach and top three performance criteria of each department were determined. After that, the performance criteria of supply chain consisting of three departments were asked to determine. The processes of each department were compared by decision-makers at the point of building the supply chain performance system and getting the performance criteria. According to the results, the criteria of performance system of supply chain by using Fuzzy AHP were determined for which will be used in the supply chain performance system in the future.

Keywords: AHP, fuzzy, performance evaluation, supply chain

Procedia PDF Downloads 310