Monday, March 16, 2020
buy custom Custom ECONOMIC TIGER Essay Sample
buy custom Custom ECONOMIC TIGER Essay Sample Economic Tiger The concept of economic tiger refers to the state, in which a country undergoes a rapid economic evolution, which is usually accompanied by a highly improved standard of living by the residents. Most of these tigers developed in Asia between 1960s and 1990s. Today the countries regarded as the economic tigers are considered to be rich. Examples include Ireland, Japan, South Korea, Singapore, Hong Kong and Taiwan. These countries were helped by the United States, which tried to guide them not to become the communist ones. They allowed industrial competition, which led to many exports to the developed nations; consequently, their economic growth remained at double digits for long periods of time. China is among the rising Tiger economies. For decades it has been using its geographical location to its advantage, since it is situated in the Southern part of the hemisphere, where it can easily access the Asian and African markets. Their core market is located exactly there. At the same time, Asia, being the largest producer of petroleum, gives China a geographical advantage, since there is little transportation of the raw material. Secondly, the economic factors, such as endowment with resources, are high, leading to an easy economic development. Finally, its high population has led to cheap and readily available labor force; thus, a relatively low cost of production of their exports. Transportation was the major factor that aided the economic development in Europe. They had elaborated road and water transportation systems, as they widened and deepened waterways for the easier navigation. They have made various inventions, such as the steam boat, and later the locomotive, that transported bulky goods. Chinas growth has come at a time, when there were many inventions in the transportation field. Therefore, they have had an easier time in developing their transport, since they only need to improve their infrastructure, such as roads, airports, railways among other economic-supporting transport developments. For instance, there was a total of 21800 km of railway before 1950, in comparison to about 91000 km in 2010. Political changes have influenced the economic development of Europe. Power was shared among the rich, who controlled economic evolution, where the wealthy merchants and rich landowners were the key heads. This resulted into a decision-making process that was geared towards the economic development of the region. The Chinese government has also been affected by the political trends. The government controls most of the processes, which has led to the centralization of power and its dispensation. Therefore, the policies were made by experts and industries that are not beneficial to the economy and are highly discouraged. As the citizens elect their political leader, he proves his ability to retain the high growth of the economy. Innovations were the key to the economic industrialization in Europe. Transport, communication and other infrastructures have led to the development of industries that would later become an axle in the actual development. Road making, as well as railway transport, were the result of innovations that eventually led to the economic development. In China, there were innovations that have resulted in a creation of the new industries. It happened because of the ventures into the new markets, such as the electronic one. It is ranked as one of the biggest exporter of electronics to the African market. Their innovations have led to the manufacturing of the low cost products that form a very important line of commodities to the developing economies. In conclusion, I believe that the economic tigers should be tamed. Their rapid growth can result into poor economic performances in comparison to other world economies. In this case, other economies should convince the tigers to align their economic growth with the rest of the world. For instance, China needs to rebalance their economic growth, as well as clear the allegations that they alter their currency to their advantage. Their growth model should be in line with the rest of the world, in order to ensure that there is enough evaluation of their economic performances.
Saturday, February 29, 2020
Architecture and Programming model of 8086
Architecture and Programming model of 8086 Intel 8086 is a 16 bit integer processor. It has a 16-bit Data bus and a 20-bit Address bus. Since 20-bit address lines are available that provide up to 1MB of storage. It consists of a powerful instruction set which makes it possible to carry out different operations easily.It supports 2 modes of operation, Maximum (multiple processors can be used) and Minimum (Single processor is used).Architecture of 8086 The internal architecture of 8086 is divided into 2 units, Bus Interface Unit (BIU) and Execution Unit (EU).A diagram of the architecture is shown below.Bus Interface Unit (BIU)BIU takes care of all data and address transfers on the buses for the EU like sending addresses, fetching instructions from the memory, reading data from ports, writing data into the memory ports and lastly it also generates the memory addresses. The EU and the BIU are connected by the Internal Bus.The BIU has the following functional parts: Instruction Queue- the BIU uses the concept of pipelining. This means while the current instruction is being executed the BIU gets up to 6 bytes of the next instruction (prefetching) and stores them in the instruction queue. Once execution is complete, the instruction queue is ready to provide the next instruction set which is simply read and executed. This results in increased execution speed. Instruction Pointer- It is a 16-bit register used to hold the address of the next instruction to be executed. Segment Register BIU has 4 segment buses, i.e. CS, DS, SS ES. It holds the addresses of instructions and data in memory, which are used by the processor to access memory locations. CS It stands for Code Segment. It is used for addressing a memory location in the code segment of the memory, where the executable program is stored. DS It stands for Data Segment. It consists of data used by the program and is accessed in the data segment by an offset address or the content of other register that holds the offset address. SS It stands for Stack Segment. It handles memory to store data and addresses during execution. ES It stands for Extra Segment. ES is additional data segment, which is used by the string to hold the extra destination data. Execution Unit (EU)EU gives instructions to BIU stating from where to fetch data, decode it and finally execute it. Its function is to control operations on data using the instruction decoder and ALU (Arithmetic Logic Unit). The data on which the operations are performed is brought in using the BIU.The EU has the following functional parts: ALU- It handles all arithmetic and logic operations, like +, -, Ãâ", /, OR, AND NOT. Flag Register- It is a 16-bit register that behaves like a flip-flop, i.e. it changes its status according to the result stored in the accumulator. It has 9 flags and they are divided into 2 groups Conditional Flags and Control Flags. Conditional Flags It represents the result of the last arithmetic or logic instruction executed. These flags are listed below: Carry Flag- This flag is set to ââ¬Ë1ââ¬â¢ when an addition causes a carry or a subtraction causes a borrow. Auxiliary Flag- This flag is set to ââ¬Ë1ââ¬â¢ when an addition causes a carry while moving from a lower nibble to the upper nibble in BCD addition. Parity Flag- This flag is set to ââ¬Ë1ââ¬â¢ if the low order 8 bits of the result contain an even number of ââ¬Ë1ââ¬â¢s. Zero Flag- This flag is set to 1 when the result of arithmetic or logical operation is zero. Sign Flag- This flag holds the sign of the result, i.e. when the result of the operation is negative, then the sign flag is set to 1 else set to 0. Overflow Flag- This is set to ââ¬Ë1ââ¬â¢ if the result is out of range or when the system capacity has exceeded. Conditional Flags These control the operations of the EU and can also be used by the user. These flags are listed below: Trap flag It is used for single step control and allows the user to execute one instruction at a time for debugging. If it is set, then the program can be run in a single step mode. Interrupt flag It is an interrupt enable/disable flag, i.e. used to allow/prohibit the interruption of a program. It is set to 1 for interrupt enabled condition and set to 0 for interrupt disabled condition. Direction flag It is used in string operation. As the name suggests when it is set then string bytes are accessed from the higher memory address to the lower memory address and vice-a-versa. General purpose register- There are 8 general purpose registers, i.e., AH, AL, BH, BL, CH, CL, DH, and DL. These registers can be used individually to store 8-bit data and can be used in pairs to store 16-bit data. The valid register pairs are AH and AL, BH and BL, CH and CL, and DH and DL. It is referred to the AX, BX, CX, and DX respectively. Their functionalities are listed below: AX register- It is also known as accumulator register. It is used to store operands for arithmetic operations. BX register- It is used as a base register. It is used to store the starting base address of the memory area within the data segment. CX register- It is referred to as counter. It is used in loop instruction to store the loop counter. DX register- This register is used to hold I/O port address for I/O instruction. Stack Pointer Register- It is a 16-bit register which holds the address from the start of the segment to the memory location, where a word was most recently stored on the stack.
Thursday, February 13, 2020
Change Project Essay Example | Topics and Well Written Essays - 250 words
Change Project - Essay Example Emotion orà affectà is theà methodà in humanistic psychology that recognizes feelings and theà considerationà that results to transformations in performance andà cognition. A person realizes the need to change when something happens. This is a practicalà proofà that works for individuals, healthyà familyà growthà and couples. There are several behavioral forms. Change of behaviorà is widely investigatedà andà is appliedà for parenting method. A person shouldà ceaseà the behavior and begin to work directly onà transformation. Regarding thoughtsà technique, there should beà motivationà that originates from the inside because theà secretà toà achievementà is within each andà everyone. If a person hasà positiveà faith andà devotionà to what they do,à subsequentlyà things work out in a positive way. In system technique, a person needs to beà optimisticà toà attainà what he wants. Support from family isà essentialà for a personsââ¬â¢Ã achievementà becauseà systemà change involves the whole system and not just anà individual. Culture plays a crucial role when initiating change. Working againstà predominantà customs will make attainingà transformationà harder, but working with it and identifying fundamental forces canà aidà easeà change. Reaction toà modificationà when changeà is forcedà isà constantlyà difficultà (Whitbourne, 2010).Reference Whitbourne, S. K. (2010). Beginnings: Psychological Perspectives on Four Types of Change. Retrieved October 19, 2011, from Psychology Today:
Saturday, February 1, 2020
Politic papers Essay Example | Topics and Well Written Essays - 1750 words
Politic papers - Essay Example Wars have raged in these regions for several years and the devastation brought about these wars has been tremendous. To be specific, the Iraq War had cost so much destruction of lives and properties. For the next five years, the destruction of lives and properties will most likely continue. On the other hand, the aftermath of the war could take a great toll on the economy and stability of the area for the next 20 years. The implications of the war in Iraq on the lives of the people and the security of the area are so great that the United States should address this problem more fully. I fully understand the position of the United States on the issue of terrorism but the point is that there are other ways of address terrorism other than counter-violence. We all know that violence begets violence and if the United States does not take concrete moves to end the violence in the area once and for all, this situation will not be resolved in the next several years. I believe that a solution of the problem would be a shift in foreign policies in Iraq. Instead of focusing on counter-terrorism and supporting the armed conflict in the area, the United States government should focus its attention more on the rehabilitation and rebuilding of Iraq through education, economic development and political participation by the people. We must understand that as long as the people in the area feel oppressed and deprived, they will be more prone to violence. Due to the presence of oil in this region, most of us are lead to believe that the economy in these parts of world is doing well. Unfortunately, that is not the case. Although some of the oil rich countries in these areas are dong really well, many of them are struggling to against poverty and deprivation. According to the report of the World Bank in 2006, about one in every five persons in the Middle East and North Africa Region can be
Friday, January 24, 2020
freedol Pain of Freedom in Ibsens A Dolls House :: Dolls House essays
The Pain of Freedom in A Dollââ¬â¢s House Three Sources In Henrik Isben's play, A Dollââ¬â¢s House, the characters of Nora Helmer, Kristine Linde, and Nils Krogstad suffered to achieve their freedom. A woman of the Victorian period, Nora Helmer was both a prisoner of her time as well as a pioneer. In her society women were viewed as a inferior to men and were not provided full legal rights. Women of that era were expected to stay at home and attend to the needs of their spouse and children. Nora was a free spirit just waiting to spread her wings; her husband Torvald would constantly disallow the slightest pleasures that she aspired to have, such as macaroons. Nora lived a life of lies in order to hold her marriage together. She kept herself pleased with little things such as telling Dr. Rank and Mrs. Linde; "I have such a huge desire to say-to hell and be damned!" (Isben 59) Just so she could release some tension that was probably building inside her due to all the restrictions that Torvald had set up, such as forbidding macaroons. The need for her to consume these macaroons behind her controlling husband's back was a way for her to satisfy her sense of needing to be an independent woman. Upon the arrival of her old friend Kristine Linde, Nora took it upon herself to find her friend a job since she had gone through a lot in her life. She asked her husband Torvald, who also happened to be the new manager at the bank if Kristine could have a job and he responded with an afirmative response. Mrs. Helmer had also stated that she had single handedly saved her husband's life when she took out a loan for his benefit. However, in those days women were unable to get a loan without their husband's consent or another male's signature, so Nora took it upon herself to forge her father's signature in order to secure the welfare of Torvald. She saw it as her obligation as a loving wife to break the law so she would be able to save a life, especially when it was the life of her husband. Others though saw it as a criminal offence; Nils Krogstad for example accused Nora of violating the law to which Nora replied: This I refuse to believe.
Wednesday, January 15, 2020
Cross-Border Strategic Alliances and Foreign Market Entry Essay
Introduction It is indisputable that as the world gets globalized, virtually all companies are compelled to expand their market to the international or foreign nations. Expansion into the foreign countries is perceived to be associated with many positive impacts. However, it has been shown that some entry modes are detrimental to the performance of the company or the firm. This implies that before any firm decides to expand, it has to weigh different international entry modes and determine the best mode to use.à This paper discusses one of the modern entry modes, called cross-border strategic alliance. The paper will achieve this by reviewing one of the detailed article cross-border strategic alliances. Analysis The article entitled ââ¬Å"Cross-Border Strategic Alliances and Foreign Market Entryâ⬠by Larry Qiu analyzes how firms are motivated to form cross-border strategic alliances when entering into new markets. The goal of the article trying to answer the question as to why most firms are forming cross-border strategic alliances and also identifying the economic factors that facilitate the formation of such alliances. Utilizing a two-country, multi-firm and three-stage economic model, the author reveals astonishing findings on the manner in which companies enter into international market (Qiu, 2006). The article reveals that the company can enter into an international market in different ways. Some of the ways include export and foreign direct investments. Cross-border mergers and acquisition, according to the article is the modern way in which a country can penetrate other countries. There are other traditional forms such as export and green-field foreign direct investment (FDI). The article analyzes based on the thesis statement that multinationals are shifting from the traditional forms such as FDI to modern forms such as cross-border mergers and acquisitions and cross-border strategic alliances. The factors that are considered to influence the choice of the entry mode include such aspects as variable costs such as trade and transport costs and fixed costs. The author argues that a company may set up just one plant in its own country and uses it to serve both the domestic and foreign markets. According to the article, search firm will be entering into foreign and international countries through export. Alternatively the same firm may opt to set up two plants, one plant in the domestic country and the other in the foreign country. In such a case, the firm will be entering into foreign country through foreign direct investment. The invention of cross-border strategic alliances, according to the article, has compelled most countries to switch from export to FDI. This is because the cross-border strategic alliance is associated with numerous benefits compared with the export strategies (Qiu, 2006). For example it creates different synergies in the domestic and foreign markets. In addition, it promotes production alliances, which help each of the allied firms to reduce production costs both in their domestic plants as well as their foreign plants. As far as distribution costs is concerned, the article argues that the cross-border marketing, which is a product of the cross-border strategic alliance, reduces the allied firmsââ¬â¢ distribution costs in their foreign market (Qiu, 2006). Conclusion The foregoing analysis has shown why cross-border strategic alliance is becoming the most preferred mode of entry as far as international trade is concerned. Compared to other entry mode methods, cross-border strategic alliances create different synergies in the domestic and foreign markets (Qiu, 2006). Some of the synergies include production cost synergies and distribution costs synergies. These synergies helps the company reduce the production and distribution costs and hence get profits. References Qiu, L. D. (2006). Cross-Border Strategicà Alliances and Foreign Market Entry. Hong Kong à à à à University of Science and Technology. Retrieved from: à à http://www.etsg.org/ETSG2006/papers/Qiu.pdf Ã
Tuesday, January 7, 2020
The Elusive Promise Of Indigenous Development Rights,...
How are social movements informed by culture? What roles can culture play in advancing social movements? These are two important questions raised in Karen Engleââ¬â¢s The Elusive Promise of Indigenous Development: Rights, Culture, Strategy. Asking how indigenous advocacy has gotten where it is, Engle offers a provocative examination of international, regional, and domestic law related to indigenous peoples (and other groups that have ââ¬Å"piggy-backedâ⬠on the successes of indigenous movements). A critical legal scholar, Engle starts her query by asking the tough questions. Rather than assuming that the indigenous rights movementââ¬â¢s conquests have been always for the better, she questions instead the movementââ¬â¢s early fundamental choices and their ââ¬Å"unintended consequencesâ⬠and ââ¬Å"dark sides.â⬠This critical look at the evolution of indigenous rights (which, she contends, are largely based on different versions of ââ¬Å"cultureâ⬠) is critical for reassessing indigenous advocacy, and moving it beyond essentialized and reified understandings of culture and identity. Engle is highly critical of ââ¬Å"strategic essentialism,â⬠which, despite the advances it has enabled in indigenous advocacy, has ultimately failed to challenge the law or push for its transformation. The very tool that once enabled indigenous advocacy to gain a first port of entry into law now stalls indigenous development, the ultimate goal of indigenous advocacy. ââ¬Å"Deploy[ing] a self-conscious strategy of multidisciplinarity thatShow MoreRelatedList Of Some Papers And Presentations3063 Words à |à 13 Pagesfrom constructivism theory, international law approach. Principle of Legality and Utilitarianism: A Review of Article Seven of European Convention on Human Rights. (2008). Utilitarian have it as basis of reason that, actions that produces the greatest happiness whether morally right or wrong should be made legal. Actions are right when they maximize the good. Wrong actions seek to punish offenders to discourage ?future wrongdoing?, and they also endeavor to inflict only as much punishment asRead MoreGgfghj12150 Words à |à 49 Pagesconï ¬âict resolution enterprise from this entanglement, and to reassert its distinctive nature and contribution in the ï ¬ rst decade of the twenty-ï ¬ rst century. This third edition (2011) appears at a particularly uncertain moment in world history, with the promise of a new US administration once again ready to embrace conï ¬âict resolution approaches in wider foreign policy formulation, but with mounting challenges from rising non-western powers (notably China), increasingly complex links between state failureRead MoreOne Significant Change That Has Occurred in the World Between 1900 and 2005. Explain the Impact This Change Has Made on Our Lives and Why It Is an Important Change.163893 Words à |à 656 PagesPublic Memories Tiffany Ruby Patterson, Zora Neale Hurston and a History of Southern Life Lisa M. Fine, The Story of Reo Joe: Work, Kin, and Community in Autotown, U.S.A. Van Gosse and Richard Moser, eds., The World the Sixties Made: Politics and Culture in Recent America Joanne Meyerowitz, ed., History and September 11th John McMillian and Paul Buhle, eds., The New Left Revisited David M. Scobey, Empire City: The Making and Meaning of the New York City Landscape Gerda Lerner, Fireweed: A PoliticalRead MoreRastafarian79520 Words à |à 319 PagesRastafari This page intentionally left blank Rastafari From Outcasts to Culture Bearers Ennis Barrington Edmonds 2003 198 Madison Avenue, New York, New York 10016 Oxford University Press is a department of the University of Oxford It furthers the Universitys objective of excellence in research, scholarship, and education by publishing worldwide in Oxford New York Auckland Bangkok Buenos Aires Cape Town Chennai Dar es Salaam Delhi Hong Kong Istanbul Karachi Kolkata KualaRead MoreOrganisational Theory230255 Words à |à 922 Pagesintellectual traditions that contribute to our understanding of organizations. Professor Tomas Mà ¼llern, Jà ¶nkà ¶ping International Business School, Sweden . McAuley, Duberley and Johnsonââ¬â¢s Organizational Theory takes you on a joyful ride through the developments of one of the great enigmas of our time ââ¬â How should we understand the organization? Jan Ole Similà ¤, Assistant Professor, Nord-Trà ¸ndelag University College, Norway I really enjoyed this new text and I am sure my students will enjoy it, too. ItRead MoreProject Mgmt296381 Words à |à 1186 PagesLeadership Chapter 2 Organization Strategy and Project Selection 1.4 Projects and programs (.2) 1.4.1 Managing the portfolio 1.4.3 Strategy and projects 2.3 Stakeholders and review boards 12.1 RFPââ¬â¢s and vendor selection (.3.4.5) 11.2.2.6 SWAT analysis 6.5.2.7 Schedule compression 9.4.2.5 Leadership skills G.1 Project leadership 10.1 Stakeholder management Chapter 11 Teams Chapter 3 Organization: Structure and Culture 2.4.1 Organization cultures [G.7] 2.4.2 Organization structureRead MoreResearch Project29890 Words à |à 120 Pages2à Epistemologicalà Assumptionsà ......................................................................................... à 19à 2.3à Researchà Approachà ........................................................................................................... à 20à 2.4à Researchà Strategyà .............................................................................................................. à 21à 2.5à Researchà Designà ............................................................................................................
Subscribe to:
Posts (Atom)