Tuesday, January 28, 2020
Optimizing Cash Management Model With Computer Intelligence
Optimizing Cash Management Model With Computer Intelligence Allià and M.M. Ramya Abstract In todayââ¬â¢s technical era, the financial organizations have great challenges to optimize the cash management process. Maintaining minimum cash leads to customer frustration. At the same time, upholding excess cash is a loss to the organization. Hence, soft computing based cash management solutions are required to maintain optimal cash balance. An Artificial Neural Network (ANN) is one such technique which plays a vital role in the fields of cognitive science and engineering. In this paper, a novel ANN-based cash Forecasting Model (ANNCFM) has been proposed to identify the cash requirement on daily, weekly and monthly basis. The six cash requirement parameters: Reference Year (RY), Month of the Year (MOY), Working Day of the Month (WDOM), Working Day of the Week (WDOW), Salary Day Effect (SDE) and Holiday Effect (HDE) were fed as input to ANNCFM. Trials were carried out for the selection of ANNCFM network parameters. It was found that number of hidden neurons, learning rate and the momentum when set to 10, 0.3 and 0.95 respectively yielded better results. Mean absolute percentage error (MAPE), and mean squared error (MSE) were used to evaluate the performance of the proposed model. MSE that was less than 0.01 proves the capability of the proposed ANNCFM in estimating the cash requirement. Keywords: ANN, ANNCFM , neuron, back-propagation, momentum, learning rate. Introduction: Forecasting cash demand needs to be more accurate for any financial organization including banks [1-3]. If the forecast is flawed, in addition to making financial losses to the banks, it results in customer dissatisfaction. In banking industry, an earlier cash requirement study was made using feed forward neural network with back propagation for short term data of two months [1]. Subsequently another comparative study was made for the cash anticipation using a classic time series models and artificial neural networks [2]. The daily cash requirement models for a bank were optimized with particle swarm and compared with least square method for short term data [3]. The main objective of the paper is to design, develop and test a unique supervised method to forecast the cash requirement for banks from their historic data. 1.1 ANN Background ANN is an efficient tool in understanding the complexities of real world problems in all fields of our daily life[4]. It is used as a function optimizer for linear as well as nonlinear problems in science,engineering,technology,management and finance[5-9]. Artificial neural network learning methods provides the best approach for approximating discrete,real and vector valued target functions [10-12], for complex problems, which are not possible to solve by conventional mathematical methods like analytical and numerical technique. ANN are applied in forex market prediction,portfolio optimization,decision making, metrological parameters forecasting[13-19] etc., The various ANN based approaches applied by researchers in finance field as an alternative to traditional time series model includes Financial and economic forecasting, credit authorization screening, simulation of market behavior, mortgage risk assessment, risk rating of investments and detection of regularities in security price movements [15-19]. 2.0 Design of Proposed ANNCFM Architecture: The process of designing a neural network in many fields resulted in a satisfactory performance but building a neural network forecast for a particular problem is nontrivial task. The modeling issues that affect the performance of the neural network must be selected carefully. 2.1. Selection of ANN Parameters In general, the design of multilayer ANN can have many layers where a layer represents a set of distributed parallel processing nodes. The three layered ANN network with one input, one output and one intermediate hidden layer is sufficient to approximate any complex non-linear function. In the case of forecasting studies many experimental results also confirms ANN with one hidden layer is enough to predict the required data [6-8]. The model architecture of ANNCFM is shown in the Fig1. Fig1: Architecture of ANNCFM Model The important critical decision is to determine the architecture is i) number of layers, ii) number of neurons in each layer, iii) number of arcs which interconnect with nodes , iv) activation function of hidden and output nodes, v) training algorithm, vi)data transformation or normalization, vii)training and test sets and viii)performance measures. 3.0 Design of Proposed ANN Models The proposed ANNCFM model consists of one input, one hidden and an output layer as discussed in section 2.1. In this study the data was collected from a semiââ¬âurban area bank located in India. The typical daily cash requirement for thebank for one year is shown in Fig2. Fig. 2: Typical Cash Requirement for a Year The collected data was for a period of three years (2010 to 2012) and was used for training and testing with the following input parameters: RY- Reference year: ranges between 1 to 3 as three years MOY-Month of the year: ranges from 1to 12, WDOM-Working day of the month: ranging from 1 to 27, WDOW ââ¬âWorking day of the week: ranging from 1 to 6, SDE- Salary day effect: ranging from 1 to 3, and HDE- Holiday and the week end effect: either 0 or 1. The fore mentioned parameters were used as six input neurons. In the hidden layer, the number of neurons were varied from 8 to 50.The output layer had one neuron that corresponds to the optimal cash requirement for a day. 3.1 Pseudocode- ANNCFM Main() { [W, V, Voj, Wok]=ANNCFMtrain( x,nip,nh,op,à ±,à ¼,t) yk = ANNCFMtest(ts, W,V, Voj,Wok,t) [Mserr,Mape]=ANNCFMevaluate() } FunctionANNCFMtrain(x,nip,nh,op,à ±,à ¼,t) returns network with modified weight { Repeat { For each training sample x(I,nip) //Feed forward computation //Determine the output neuron between input layer and hidden layer //Determine the output neuron between hidden layer and output layer //Compute the error signal between the output and hidden layer //Update the weights between the output(k) and Hidden(j) layer; If itr=1 then { else End if } //Update bias between the output and hidden If itr =1 then { Else End if } //Update the weights between the input(i) and Hidden(j) layer; If itr=1 then { Else End if } //Update bias between the hidden and input If itr =1 then { Else End if } } Until mse } Function ANNCFMtest(ts, W,V, Voj,Wok,t ) returns output(y) { For each testsample ts //Feed forward computation //Determine the output neuron between input layer and hidden layer //Determine the output neuron between hidden layer and output layer } ANNCFM evaluate(tk ,yk,ts) { } 4.0 Evaluation Metrics: In order to derive and evaluate the performance of the most appropriate model that fulfils our objective of optimizing the cash management, few metrics were used. The accuracy of the proposed ANNCFM is evaluated using MAPE and MSE which are defined as follows: MSE= Where Xt is the actual data at period t, Ft is the forecast at period, t, et is the forecast error at period t, while n is the number of observations. 5.0 Results and discussion: The data for a period of three years (2010-2012) was collected from City Union Bank (CUB)-ukt bank branch to simulate the network using MATLAB .For the proposed study the total number of data for the three years is 879, in which the first two and half years, 737 data were used for training(80%) and the remaining six months 142 data sets (20%) were used for testing. Studies found that input data normalization with certain criteria, prior to training process, is crucial to obtain good results, as well as to fasten significantly the calculations [J.Sola J. Sevilla]. Hence the input data was normalized before training. In ANNCFM, 15 runs were made by varying the number of hidden neurons from 10 to 50 using gradient descent with momentum back-propagation (traingdm) for the default training parameters learning rate =0.01, momentum=0.95, Goal=0, and number of iterations as 6000, are illustrated in table 1-column2. The convergence of ANNCFM is influenced by number of hidden neurons in which by varying the number of hidden neurons between 10 through 50. The error was minimal when the number of hidden neurons was set to 10, 20, 40, 45 and 50, by achieving a MSE of 0.0079 as observed from column 3 of table 1. As the number of hidden neurons increase, there is a significant increase in the computational time. Hence the number of hidden neurons in the proposed study was fixed as 10. The pictorial representation for the optimal hidden neuron against its MSE are shown in Fig. 3. Fig.3: Optimal Number of hidden neurons. The learning rate ââ¬Ëlrââ¬â¢ arrives at a local optimum for the higher learning rate and global optimum for slow learning process. Different trials were made to identify the optimal learning rate to avoid the unstable condition and fluctuations in the results. Learning rate was varied between 0.1 through 0.5 in which 0.3 yielded an optimal learning rate for the given data set, as shown in Fig-4. Fig 4: Optimal learning rate The momentum plays a vital role in identifying the convergence point. Momentum, when set too low, it may get stuck into local minima, and if it is too high, network will become unstable. So there is a need to identify the optimal momentum value for ANNCFM, various momentum values were tested between 0.8 and 1.0, the trained results shows that the optimal momentum value was 0.95 are shown in the Fig-5 Fig 5: Optimal Momentum rate In the ANNCFM model to train and test the cash requirement for a day, week, month the following parameters values are selected based on their performance from the different number of runs made above: i) the number of input neurons=6, ii) maximum number of iteration=6000, iii) learning rate= 0.3, iv) momentum=0.95, v) transfer function=tansig/tansig (hidden and output layer). The optimal selection of the above parameters helped in improving the performance, by minimizing the error rate. This is evident from Table 1, that shows the MSE achieved before and after parameter selection. Table1: ANNCFM performance for different number of hidden neurons The ANNCFM was used to estimate daily, weekly and monthly cash requirement. The estimated values were compared with the actual values for the testing period are shown in Fig.6a,b,c.for the daily ,weekly and monthly prediction. The obtained results shows the ANNCFM was found to perform reasonably good for all the three models .The weights calculated by our ANNCFM was found to be sufficient for cash prediction in which RY,MOY,WDOM, WDOW are essential parameters, and SDE,HDE are additional parameters .The connection weight approach was used to quantify the importance of input variable [20]. The preference of the input parameters were found based on the weights obtained was evident from Table 2, column-4. Table 2: ANNCFM Weights-Preferences. The input parameters SDE and HDE plays a vital role in daily and weekly model as it was observed from the above table it effectively takes care the need of peak cash requirement at the beginning of every month and during holiday periods. The role of SDE in the weekly cash prediction could be easily understood for the weeks like 1,5,14, where the cash requirement is maximum since the beginning of the month lies within the week. However for the 9th and 10th as well as for the 18th and 19th week cash requirement shows the new month starts between the weeks. The monthly model was plotted for six months as shown in Fig.6c in which the experimental results shows that the estimated values were most influenced by WDOM .The cash required and predicted was minimum for the fourth month in which WDOM was minimum. The MAPE and MSE for ANNCFM are shown in Table 3 . Fig.6-a: ANNCFM ââ¬âDaily Model Fig.6-b: ANNCFM ââ¬âWeekly Model Fig .6-c : ANNCFM ââ¬âMonthly Model Table 3 : MAPE and MSE errors for ANNCFM The comparison made between the actual and forecast data shown from the figures indicates that the six input variables selected in our model is sufficient to identify the cash need which is changing from time to time. 6.0 Conclusion: The observations from the experimental results of this study shows that ANNCFM is a useful tool to predict the cash requirement in emerging banking sector. ANNCFM using feed forward neural network training with back-propagation algorithm optimize the needs of cash on daily, weekly and monthly basis. In the implementation process the data set used for the years between 2010 and 2012 were trained and tested to measure the performance. The input parameters were initialized and different runs were made for the proposed model to find out the optimal number of hidden neurons as 10, momentum as 0.95 and learning rate as 0.3 to train and test the network using sigmoid transfer function. The estimated results were with minimal error for the better performance with an accuracy of 91.23%. References. Fraydoon Rahnama Roodposhti , FarshadHeybati and Seyed Reza Musavi, ââ¬Å"A comparison of classic time series models and artificial neural networks in anticipation of cash requirements of banks: A case study in Iran ââ¬Å", Academic and Business Research Institute International Conference, Orlando, USA, 2010. PremChand Kumar and EktaWalia , ââ¬Å"Cash Forecasting: An Application of Artificial Neural Networks in Financeâ⬠, International Journal of Computer Science Applications , Vol. 3, No. 1, pages. 61-77, 2006. Alli A, Ramya M M, Srinivasa Kumar V, ââ¬Å"Cash Management Using Particle Swarm Optimizationâ⬠, International conference of Data Mining and Soft Computing, SASTRA University, Thanjavur, India, 2013. Haykin, Simon, ââ¬Å"Neural Networksâ⬠: A Comprehensive Foundation. Macmillan College Publishing Company, New York,1994. Nakamura, Emi, Inflation forecasting using a neural network. Economics Letters, Volume 86(3), pages 373-378, 2006. Refenes, A.P. and H. White , Neural Networks and Financial Economics, International Journal of Forecasting, Volume 6(17),1998. F. Aminian, E. Suarez, M. Aminian and D. Walz, Forecasting economic data with neural networks, Computational Economics 28, pages. 71ââ¬â88,2006. A. Hanna, D. Ural and G. Saygili, Evaluation of liquefaction potential of soil deposits using artificial neural networks, Engineering Computations 24 , pages. 5ââ¬â16,2007 W. Gorr, D. Nagin and J. Szczypula, Comparative study of artificial neural network and statistical models for predicting student point averages, International Journal of Forecasting 10, pages. 17ââ¬â34,1994 Zhang, G., Patuwo, B. E., and Hu, M. Y. Forecasting with artificial neural networks: The state of the art. International Journal of Forecasting, 14:35.62,1998. Z. W. Geem and W. E. Roper, ââ¬Å"Energy demand estimation ofSouth Korea using artificial neural network,â⬠Energy Policy, vol.37, no. 10, pages. 4049ââ¬â4054, 2009. R. Yokoyama, T. Wakui, and R. Satake, ââ¬Å"Prediction of energy demands using neural network with model identification byglobal optimization,â⬠Energy Conversion and Management, vol.50, no. 2, pages. 319ââ¬â327, 2009. Bishop, C. Bishop, Neural networks for pattern recognition, Oxford University Press, New York ,1999. H. Taubenbà ¶ck, T. Esch, M. Wurm, A. Roth and S. Dech, Object-based feature extraction using high spatial resolution satellite data of urban areas, Journal of Spatial Science, Volume 55, Issue 1, pages 117-132,2010. P. Tenti, ââ¬Å"Forecasting Foreign Exchange Rates Using Recurrent Neural Networks,â⬠Applied Artificial Intelligence, Vol. 10, pages 567-581, 1996. W. Leigh, R. Hightower and N. Modani, Forecasting the New York stock exchange composite index with past price and interest rate on condition of volume spike, Expert Systems with Applications , pages. 1ââ¬â8,2005. Manfred Steiner and Hans-Georg Wittkemper, Portfolio optimization with a neural network implementation of the coherent market hypothesis, 1997, Volume 100, Issue 1, Pages 27ââ¬â40, July 1997. M. Carolin Mabel and E. Fernandez, Analysis of wind power generation and prediction using ANN: A case study, Volume 33, Issue 5, Pages 986ââ¬â992,May 2008, Sharda, R. and Delen, D. Predicting Box-office Success of Motion Pictures With Neural Networks. ExpertSystems with Applications 30, pages 243ââ¬â254, 2006. Julian D.Olden, Michael K.Joy, Russell G.Death, An accurate comparison of methods for quantifying variable importance in artificial neural network using simulated data,2004.
Monday, January 20, 2020
Mathematics of Light Essay -- Math
Introduction Up to the seventeenth century, most theories attributed color to some sort of modification of light that was thought to occur when light interacted with matter. Light, in its purest form (such as sunlight) was thought to be colorless. However, progress in understanding color was made by Isaac Newton when in 1666 he was able to show that normal white light already contained all the colors of the spectrum, which could be separated using a prism. He also concluded from his experiments that objects have color because they selectively reflect certain colors of the spectrum while absorbing light of other colors. Light is the small part of the electromagnetic spectrum that can affect the human sense of sight. The visible part of the spectrum (for us) ranges from 400 nm (blue) to 700 nm (red). Each wavelength value within the visible band corresponds to a distinct colour. Parameters of light that are of interest to us: Wavelength - the length of one light-wave cycle Frequency - the number of wavelengths per second Three attributes are used to specify a color: hue, saturation and brightness. These describe only the perception of light, not its physical properties. 1. Hue - a feature of monochromatic light that varies with wavelength and used to denote the various regions of the spectrum (in other words, the basic color from the spectrum). 2. Saturation - how much a color differs from white (ie vivid pure color versus pastel color) 3. Brightness - the perceived intensity of light Spectral Power Distribution Monochromatic light is light that has only one wavelength, and thus cannot be further divided into different components using a prism. But most light sources are not monochromatic ... ...d (B) of wavelength 435.8nm. This means that given an RGB color (C) = L1(R) + L2(G) + L3 (B), its coordinates in the XYZ system are: X = 2.7689*L1 + 0.38159*L2 + 18.801*L3 Y = L1 + L2 + L3 Z = 0 + 0.012307*L2 + 93.066*L3 This particular transformation was chosen so that the XYZ system would have several convenient properties. One is that there are no negative tristimulus values, which reduces the possibility of error. Another is that the color triangle enclose the spectrum locus as closely as possible. Works Consulted Williamson, Samuel J. and Herman Z. Cummins. Light and Color in Nature and Art. 1983. John Wiley and Sons. Overheim, R. Daniel and David L. Wagner. Light and Color. 1982. John Wiley and Sons. Bouma, Dr. P. J. Physical Aspects of Colour. 1971. MacMillan. Wright, W. D. The Measurement of Colour. 1969. Adam Hilger.
Saturday, January 11, 2020
Great expectations coursework Essay
My essay is going to be about the 1876 edition novel ââ¬ËGreat Expectations. ââ¬Ë The author of this novel is Charles Dickens. When the novel opens we meet Pip as a rather young child. Pip is the narrator as well as the main character. This is known as the first person. Pip as an adult talks about Pip as a child. He talks about his life as a child and how it was a struggle without his parents being around to help him. This makes it interesting to read. Dickens creates sympathy for Pip by talking about his dead parents. ââ¬Å"As I never saw my father or my mother, and never saw any image of either of them. â⬠This suggests that Pip never saw his parents because he was young when they died. Pip also tries to create an image of what they looked like. Another way Dickens creates sympathy is by talking about Pipââ¬â¢s dead brothers. ââ¬Å"They all had been born on their backs with there hands in their trouser pockets. â⬠This makes us think of them in a childish way like the young Pip. In the 19th century people used to die commonly so if they read this novel they wouldnââ¬â¢t suffer any sympathy because the death rate was regular. If a person read this novel in the 20 century they would feel sympathy because the death rate is much less and we are not used to children dying anymore. Dickens knew what a poor existence was like as a child because he had been through it all. He came from a working class family. In his school the teacher paid particular consideration to Dickens because he was making incredible progress but he was forced to leave school at the age of 12 and go labour in a factory because his parents were in enormous debt. To write this book Dickens got his sympathy from his early days. What he saw in his time made him want to write about how life wasnââ¬â¢t fair. The opening chapters are good at getting us to feel all sorts of emotions. The way Dickens gets the readers awareness is he creates a tense, terrifying setting. The reader then knows something dreadful is going to take place so he reads on. Dickens describes how frightening the setting is. ââ¬Å"The small bundle of shivers growing afraid of it all and beginning to cry was Pip. â⬠This suggests that he is extremely terrified of the graveyard that he is in. Dickens describes the graveyard as a hiding place for people. ââ¬Å"And that the distant savage lair from which the wind was rushing was the sea. â⬠This suggests that the grave yard can be used as a hiding place because of its darkness and emptiness. All of this makes the reader really scared so that we can feel the same as Pip. Dickens was especially renowned for the good way he created his characters. We meet one of his bloodcurdling characters in this novel. Dickens describes the character as a fearful man, all in course grey, with a great iron on his leg. A man who had been ââ¬Å"soaked in water and smothered in mud, and lamed by stones, and cut by flints and stung by nettles, and torn by briars; who limped, and shivered. â⬠This suggests that the man had been through an awful lot to get to where is. He also wanted to really escape from the prison that he was held in. We know that he had been to prison because of the great iron on his leg. We also know that he had been beaten by stones, drenched in water, smothered in mud, slashed by flints and unpleasantly cold. I can feel what he is feeling because of the words Dickens uses. Dickens uses dialogue to state where his characters come from and how their personality is. The convict uses dialect language. ââ¬Å"Show us where you live, pint out the place. â⬠This tells us that the convict doesnââ¬â¢t use correct English language instead of saying ââ¬Ëpointââ¬â¢ he says ââ¬Ëpintââ¬â¢ missing out the ââ¬Ëoââ¬â¢. this tells me that he is from a working class not a middle class like Estella or other ladies and gentlemen. Dickens is very intelligent the way he creates his characters names. This helps use to discover what the characters are like and what part they play. Mrs Joe Gargery takes on her husbands name to show other people that sheââ¬â¢s the one who obeys her husband. The reader sees a different side. Mrs Joe Gargery is the one in charge and her husband obeys her. Dickens is using ironic humour here to make us laugh at the situation. I liked the first two chapters of the novel that I studied because it was very thrilling to examine about how existence was like in the historic days. I liked the way Dickens wrote this novel because he described the background in a lot of detail.
Friday, January 3, 2020
Why I am Pursuing a MBA Degree Essay - 1032 Words
Why am I Pursuing an MBA degree? I decided to pursue an MBA degree in order to further my managerial career in the company I work for. The question would be: Why do I think it will enhance my management career? The answer to that question requires short background information. I started my career as an entry level programmer in 2000, after receiving my bachelorââ¬â¢s degree in computer science. My career took a turn to management in 2003 when I was offered a team leadââ¬â¢s position with the company I was working for. Since, I worked myself up through the ranks to my current position of a Manager, responsible for a sub-unit handling a specific application product. After working as a manager for 2 years, managing both the resources and theâ⬠¦show more contentâ⬠¦(GMAC, 2007). Another indication of the importance of the MBA program would be the consumer demand. The 2007 issue of the Application Trends Survey Report, published by the GMAC (Graduate Management Admission Council), reports that application volume has risen about two-thirds for full-time, two-year, part-time, and executive programs (GMAC, 2007). Moreover, according to the PayScale Salary Calculator the median salary range for managers in IT Telecom field in Texas is without MBA is $68,387 - $81,917, but the median salary range for managers in the same field and in the same state with MBA is $82,897 - $104,964, an increase of 30%- 45% (PayScale). The MBA has proven to be a lucrative degree. The International Recruitment Survey and Salary Report 2007, conducted by QS TopMBA.com, reveals that MBA salaries across most major industry sectors have increased more rapidly than salaries for non-MBAs. The report confirms that the MBA is the highest paid postgraduate qualification. (Quacquarelli, 2008) Increased earnings potential and market demand aside, how well am I suited for an MBA degree? According to the Jungian Personality self-assessment, I am an ENFJ. According to Scott Graverson, in his dissertation, the ENFJ personality is an Idealist-Teacher (2008, p. 55). ENFJs are sensitive to the needs of others and always try to conduct themselves in a manner that is considerate of othersShow MoreRelatedPursuing an Mba Will Further My Career1193 Words à |à 5 PagesPursuing an MBA will further my career Abstract By pursuing my MBA I will further my career in the current work environment that I am in. First, I need to establish the importance of how others perceive me and how I fit in the profile of a manager; this will be done using the Jungian Personality Self-Assessment Test. Then I will construct an argument that will prove the advantage of pursuing an MBA to further my career is the right choice. All higher level managers in my corporation haveRead MoreThe United States Banking Sector1562 Words à |à 7 Pagesrecovering. Nevertheless now the time has come to significantly decrease the national debt. The banking sector is what created all this debt, and now improved banking is going to get rid of it. I believe the field of finance has an immense influence on how we will continue to decrease the national debt. This is why I have chosen to major in Finance and eventually pursue investment banking as a career. Fortunately, employment of financial analysts are projected to increase 12% from 2014 to 2024, this isRead MoreA Research Study On Ubc Marketing Department1245 Words à |à 5 Pagesname is Kyobeom (or K.B.) Koo, and I am pursuing a PhD in marketing to become an expert researcher in consumer behaviour. My goal is to generate research insights to help consumers, managers, and institutions make better decisions. Given my career goal, pursuing a PhD at UBC represents the next logical step. UBC is a highly-regarded institution that can provide me with the skills and environment I need to become a productive researcher. Upon earning my degree, I will contribute to the UBC marketingRead MoreStatement of Purpose for Management Consulting 618 Words à |à 2 PagesStatement of Purpose I believe I am a person with diverse tastes and experiences, whether in life or at work, that make me a distinctive person. I am a Computer Science Student with a great talent in Cricket. I am an enthusiastic traveler with a profound interest in meteorology. In a period of almost six professional years I feel I am lucky to put on and succeed in different roles. I worked as Business Analyst and COBOL Developer where my primary role was to design and build the application; as QualityRead MoreMy Personal Action Plan For 20171464 Words à |à 6 PagesAction Plan for 2017 are several goals that I need to achieve in order to reach my long-term personal objectives. They include, earning a promotion to Vice President, saving $3.5 million for retirement, maintaining my health, and attaining an MBA degree. All four long-term objectives are specific, relevant to me, in line with my life goals, and time-bound. Most importantly, they are attainable, so I can set new goals once these are met. Furthermore, I am cognizant of the temporal and financial resourcesRead MoreMBA Application1149 Words à |à 5 Pagespresent moments in which I am able to take advantage of my customers. I understand that the items I am creating can be made with lower quality products, or the corners that can be cut, however, that is not a good representation of my professionalism. I appreciate good business sense and savvy purchasing, however I do no support creating something that is not of quality and created with my full effort. Every piece that I craft showcases my business and my integrity to my buyers. I feel that through servingRead MoreUnique Experiences and Perspectives Which Contribute to the Program3738 Words à |à 15 Pagesyour background enhance and broaden your learning and that of your classmates in Schulichââ¬â¢s dynamic environment? I am an Asian-American woman living and working in the global city of New York. Growing up in an international city allowed me to become a multicultural individual and develop into a young woman different from my counterparts in Asia and here in the United States as well. I was taught by my parents not only the values of a Chinese culture but also to strive to enhance my strengths andRead MoreA Short Story About My Self Vaishali Jalandhara1753 Words à |à 8 Pagesjouney, benefits of MBA from Sullivan university in personal and professional growth, and my future goals, health care business opportunities in India. Personal Introduction I am Vaishali Jalandhara. I born and brought up in a small, beautiful family in Junagadh, India. India is a very diverse country. Each state has its own distinctive culture in terms of food, attire, customs, rituals, festivals, lifestyle, language, and many more avenues. I consider myself very fortunate as I have got the opportunityRead MoreI Have Selected International Economics1451 Words à |à 6 PagesI have selected International Economics as my major. The International Economics major is founded on the belief that economic analyzes are significant to the understanding of present world affairs. With reducing expenses of transporting goods and services that guide international flow of technology, people, assets, goods, and information, are popular in the process of global conflicts. I plan to pursue this major at St. Francis College (SFC). There are various reasons that explain why I have selectedRead MorePaper766 Words à |à 4 Pagesââ¬Å"Why are you in College?â⬠Ever since I started to seriously think about my future, I had aspirations of getting a degree and becoming a professional. Specific careers have changed constantly, ranging from becoming a teacher to an engineer. As I got older, I began to assess my strengths and weaknesses as well as my likes and dislikes. I know a college education is essential in todayââ¬â¢s economy and society. Doors are opened to those with college degrees and a better lifestyle is guaranteed. A college
Subscribe to:
Posts (Atom)