Wednesday, January 29, 2020

bpo management system Essay Example for Free

bpo management system Essay 1. Introduction 1.1 Purpose This document describes the high level design for the CHART/EORS Intranet Mapping Application and the CHART Internet Mapping Application. The purpose of this design is to show the high-level technical approach to meeting the requirements defined in system requirements specification. This serves to identify the architecture of the system and high-level interactions between major system components. 1.2 Objectives Identify and describe the software architecture for the system. Provide  high-level approaches to various technical challenges. Provide a guide for future development efforts, such as detailed design and coding. 1.3 Scope This high level design encompasses the approach for meeting the requirements as defined in the documents CHART/EORS Intranet Mapping System Requirement Specification and CHART Internet Mapping System Requirement Specification. 2. System Architecture 2.1 Overview The following diagram shows the system architecture used by CHART mapping applications.  The system design utilizes web based multi-tier system architecture. The data storage is managed at the data tier by the databases. The main business logics are hosted in the two applications in the web server. Because mapping is an area that there are many requirements related to client side interactions with the graphic content of the application, application logics are partitioned based on the most appropriate location to execute them. Some are located on the client browsers to provide instantaneous feedback to the user. The general system operation flow involves the following: 1. Data updates from various sources such as the CHART II CORBA events, EORS data inputs, device and event editing modules are stored in the databases. 2. When a mapping application receives a mapping request, it sends the image map generation request to the ArcIMS map server. The ArcIMS server retrieves the map data from the databases and creates a rendering of the map and saves it as a raster image file. The mapping application generates HTML pages embedded with the image and sends it to the browser client. 3. For the CHART Intranet mapping client, the application also generates the dynamic content in VML format, which encodes the device and event information in vector format. This enables the application to update the dynamic data without having to reload the whole map image. This avoids the heavy load on the map server when the application scales up. 4. When the images and VML  data arrives at the client browser, the client displays the map to the user. The user can interact with this data on the client. 2.2 SQL Server and ArcSDE ArcSDE from ESRI allows managing of geographic information in commercial databases such as SQL Server, Oracle, DB2 and Informix. ArcSDE provides functionalities to efficiently store and retrieve spatial information using spatial indexing mechanisms. ArcSDE provides a set of API and administrative utilities that help manage the spatial data storage. For the CHART mapping systems, the combination of ArcSDE and SQL Server manages the spatial information in the relational database. ArcSDE adds spatial functionalities without disrupting standard SQL database capabilities. 2.3 Map Server (ArcIMS) ArcIMS includes a few components that will play important roles in the CHART mapping application. The workhorse component that processes the data and generates maps is the spatial server. Managing the spatial servers is the ArcIMS Application Server, which monitors each spatial server’s activity and brokers map requests to the least busy spatial server. The detailed interaction of a map request is as the following: When the ASP.Net page receives a map request, it parses it and uses the ActiveX Connector object model to construct a map request. The connector then sends the map request in ArcXML format to the Application Server. The Application Server then finds the least busy spatial server and forwards the map request to it. The spatial server performs the query against the ArcSDE database, retrieves the data and renders them into a raster image file. The location of the file is then sent back to the connector and the ASP.Net page writes it back to the client as HTML page with the image embedded in it. 2.4 Web Server (IIS) .Net Framework and ASP.Net The web server hosts and publishes content to the client browser. In the case of the CHART mapping applications, most of the content is dynamic content generated by ASP.Net modules. When IIS recognizes a page being an ASP.Net module (an aspx extension), it passes the request to the .Net Framework to load the module and handle the request. The ASP.Net pages are then loaded into memory and executed. The .Net Framework provides many utilities such as garbage collection, tracing, just-in-time compilation that manages the execution of ASP.Net modules. The ASP.Net page modules are where the CHART mapping application logic is coded. The web server also provides security via the Secured Socket Layer (SSL), allowing interactions between the user’s browser and the web server to be encrypted when necessary. 2.5 Security 2.5.1 Network Level Security Network layer security will be managed by the network security configurations like firewall and RSA secure ID. 2.5.2 Secured Socket Layer (SSL) MDOT has a certificate server to provide digital certificates for the SSL configuration. The server name must remain consistent with the certificate. All links shall use the same server name, otherwise, if the server is referred using an IP address or a local server name, etc., the user will see an alert indicating the certificate is in-consistent with the resource. IIS supports the configuration of one folder in the web application requiring SSL while other portion does not. The session information remains consistent between SSL portion of the web site and the non-SSL portion. 2.5.3 Enterprise User Enters Read-Only View Many of the CHART mapping functionalities are for display and reviewing data, i.e. a read-only view. The design allows enterprise viewers and CHART users to access the read-only portion of the web site without having to input user name and password. This also enables CHART users to reach the viewing area without having to enter their login information again. When system receives a user request to enter the secured area, the system checks whether the current session has been authenticated. If not, system displays login screen. The user shall enter their CHART user name and password. Upon receipt of the user name and password, the system checks it  against the CHART II database’s user tables. If they are authenticated, the system stores the user information in the session. The session will be managed in the server until the configured timeout expires. All subsequent requests from the same user session will inherit the same authorization information for the user. 2.5.4 CHART User Enters Editing Area Other applications, like future versions of CHART II and CHART Lite, can launch the map editing URL via the HTTPS protocol. The user name and password can be sent via https request. The system verifies their authentication information against the CHART II user database using an OLEDB/ODBC connection. If the authentication information is correct, the system will store this information in the session. The user will be redirected to the map page. If the authentication is rejected, the user request will be redirected to the login screen to reenter the authentication information. Associating a CHART user with an op-center/default map view area: Based on CHART II R1B3 database design, users are not associated with an op-center; rather, the user specifies an op-center during logon. In order to display a default map view area based on an op-center, an external application launching the CHART mapping application will also need to pass in the operation center name to initialize the map to the associated extent. Passing user name and password in URL request: The mapping site shall have a module that verifies the user name and password, then forward the page to the map page, hence avoiding showing the password on URL address box. At the current time, without the full integration with CHART II and CHART Lite, the system will expect plain text user name and password. In the future, an encryption/decryption algorithms agreed between the systems can be added to achieve higher security. 2.5.5 EORS Security Currently, the EORS security has not been implemented. EORS functions will be hard-coded with security configuration. 3. Network Configuration The design above depicts CHART network configuration as the Internal network, a Demilitarization Zone (DMZ) network for hosting the web server and connecting out to the external Internet network. There will be two firewalls, one between the Internet and the DMZ network and another one between the DMZ network and the internal network. The map server and database servers are to be hosted in the internal network for maximum security. The initial configuration calls for two physical computers to host the map servers and database servers. In the future, if the system needs to scale up, additional physical servers can be added. The Intranet web server can optionally be hosted on the load-balanced virtual server too. 3.1.1 Map Server Load Balancing The design achieves load balancing by a combination of Windows 2000 Advanced Server Network Load Balancing (NLB) Service and the ArcIMS Application Server. The system utilizes two physical server computers. The two servers are configured with NLB. NLB works on the TCP/IP level. Any incoming traffic from web server to the virtual server IP address is load balanced between the two application servers by NLB. ArcIMS Application Server operates at the application level, monitoring each spatial server’s load and operation. When a spatial server is busy, it directs the map request to idling spatial server(s). Each physical map server hosts one ArcIMS Application Server and two ArcIMS Spatial Server instances. An application server failure forces NLB to direct new connections to the remaining application server. When the failed server is recovered, new client connections should once again be shared between the two servers. The two spatial server instances are â€Å"cross registered† to the application servers. As shown in the diagram, Spatial Server A1 and A2 are registered to Application Server B and A correspondingly. This arrangement ensures that when a spatial server is down, the application server can still  utilize the spatial server from the other server to serve the map request and the application server continue to function. Also, this configuration also allows ArcIMS to load balance at the Spatial Server level as opposed to just the network traffic level, which is what NLB provides. This configuration can withstand an Application Server failure, a Spatial Server failure, a simultaneous Application/Spatial Server failure or hardware failure of one of the physical map servers. Using two map servers with network load balancing should provide high-availability load balanced ArcIMS web site. 3.1.2 Database Load Balancing By running two SQL Server and ArcSDE instances with NLB to balance the load, the system can achieve high availability at the database server layer. The database servers are completely independent and share no hardware components. This type of availability is achievable with the standard edition of SQL Server. The two database servers are setup with Transactional replication. One of the two SQL Servers is configured as the publisher and the other one as a subscriber. All the data modification such as insert, delete and update will be performed on the publisher and changes are replicated to the subscriber. Transactional replication can provide very low latency to Subscribers. Subscribers receiving data using a push subscription usually receive changes from the Publisher within one minute or sooner, provided that the network link and adequate processing resources are available (latency of a few seconds can often be achieved). When the web server and map server requests use the virtual IP address on the load-balanced group of database servers, they are directed to the database server with the least amount of load. If one of the database servers goes down due to hardware failure, NLB detects that this server is down and no longer directs database requests to this machine. The remaining machine handles the database requests and apart from a slight drop in performance the users are unaware that a database server has failed. When the hardware is fixed the offending machine can be brought back online. One limitation exists for this design. It happens when the publisher database is down. In this situation the data updates cannot be committed until the publisher database comes back. But at the same time, all read access from the Internet and Intranet server could still be directed to the secondary server. In the case when the publisher data is going to be down for extended time period, system configuration need to allow system administrator to change the configuration so that the replica will serve as the main database. Compared with clustering solution, this system design provides the maximum database availability and performance benefit. The databases that need to be replicated would include: 1. Background map database. Background map data does not change often. A snapshot replication is sufficient for replicating data updates in one database to the other. 2. CHART/EORS Spatial Database CHART/EORS spatial database stores CHART and EORS device and event information with spatial data. They are dynamically updated throughout the day. Transactional replication will be setup to ensure that data change in one database gets replicated to the other one. 3. SDE metadata. In general, the system can continue to provide access of map and data to both the Internet and Intranet users in the case of failure of any one component in the system. The only exception is that when the publisher database is down, the new data cannot be updated into the system. Users will get delayed information. 3.1.3 DMZ Configuration CHART is currently implementing a Demilitarization Zone (DMZ) network to enhance the network security. This entails creating a separate network for the web server computer(s) and separating it from the internal network with a firewall. In an ideal world, the DMZ would have no physical connection to the internal network. This would require two separate map server setups to serve the  Internet and Intranet users. The recommended way to implement is to disallow any access from the DMZ to the internal network, but allow access from the internal network to the DMZ. In other words, allow out-bound connections. On each of the ArcIMS server computers, mount a network drive to a shared drive on the Web server. Each ArcIMS spatial server would write the output raster image files to the location on the web server to be delivered to the Internet client browsers. 4. Database Organization To reduce the dependency and operation interference between the spatial data and the attribute data, the EORS spatial database and CHART spatial database will be created as two SQL Server databases. To reduce the performance overhead when joining data between the spatial and attribute data, the EORS spatial database will reside on the same database server(s) as the EORS database. 5. Technical Challenges 5.1 Map Display Mechanism CHART Intranet mapping application requires that changes in event and device data be reflected on all map clients in a near-real-time fashion (within 5 seconds). To do so via the traditional raster map publishing mechanism will result in all clients retrieving updated map every 5 seconds or at least when event/device status update requires a new map to be generated. When there is large number of users of the system, it will result in a high map server load in a concentrated short time period. To resolve this issue, the project team reviewed various technical approaches and summarizes their advantages and disadvantages as the following: 5.1.1 Raster (JPEG, GIF or PNG) Image This is a popular approach that utilizes the basic image display functionality of web browsers. It utilizes the server processing power efficiently. The disadvantages are that the images have limited client side intelligence, leaving most of the computation concentrated on the server. It’s capability of handling large number of concurrent map requests is limited. Generally, one map server can support 4-8 requests per second. For  CHART’s situation, when an event changes status, if a new map image needs to be generated, it would be about 40 requests per second (200 users at 5 second update interval). Many servers will be required to support the load. With the license fee involved with using GIF format, we will not use GIF for map publishing. Compared with JPG format, PNG graphics do not have the â€Å"bleeding† effect inherent with the JPEG compression algorithm. With the map displaying lines rather than continuous tone images, it is much cleaner. PNG also results in a smaller file, which translates into faster download times for client. The only JPG advantage is server side image generation times. It is recommended to utilize PNG for the Intranet application to produce highest quality images for standardized IE browser while utilizing JPG for the Internet to allow for support of as many browsers as possible. Also, the reduction in image processing time should deliver better web image generation performance. 5.1.2 XML Based Vector Graphics 5.1.2.1 Vector Markup Language (VML) VML is a XML based W3C standard in describing vector graphics. Basically, it encodes the vector coordinates of points, lines and polygons in XML format. The support of VML is included in Internet Explorer 5.0 and later. There is no download needed to display VML encoded vector graphics. It also has built-in support for style sheet and scripting. This makes it possible to modify the display properties and positions of the vector graphics using the JavaScript on the client-side browser. Using this functionality, we can dynamically update the display of devices and events. 5.1.2.2 Scalable Vector Graphics (SVG) Scalable Vector Graphics is another XML-based W3C standard format for vector graphics. Compared with VML, it requires Java or ActiveX based plug-in to be displayed. Also, based on review of the plug-ins (SVG Viewer by Adobe), there is not as much support for scripting as for VML. 5.1.3 ArcIMS Java Viewer ArcIMS includes a Java Viewer, which provides a Java Applet that can be customized to a certain extent to display vector encoded GIS data on the client side. It requires a download to the client. The Java Viewer reads vector data from ArcIMS feature server encoded using an ESRI proprietary compression format, which makes it difficult to implement special features such as WSMS offsetted road networks because they need to be offset dynamically based on map scale. 5.1.4 MapObjects Java MapObjects Java from ESRI provides a set of Java-based objects for GIS functionalities. It has an extensive set of functionality that can satisfy the requirements. But, it requires a license fee of $100/seat, or comparable server-based licensing. It also requires a download to client machine to run it. 5.1.5 Summary Based on the research above, the project team recommends the following design: Use raster map for background map display (background data with SHA grid map are often large amount of data, suitable for server side processing) Use XML data format to transport the device and event data from server to browser client. Use JavaScript to create and update the VML vector data elements to display the dynamic layers including all the CHART/EORS devices and events. The diagram above illustrates the map display mechanism: 1. Map server reads the spatial data from background database and sends the published map image to the client browser to be displayed as background. 2. Device and event information is broadcasted from the CHART II system in the form of CORBA events. 3. CORBA event listener receives the event broadcast and saves the data into CHART spatial database. 4. CHART/EORS device and event data are published in XML format to the client. Client browser parses the XML into a XML Document Object Model (DOM) using the XML parser. 5. The client browser then iterate through the DOM tree structure and create corresponding VML elements based on the XML device and event data. The VML elements are displayed on the top of the background raster map image. 6. At a pre-configured interval, the browser client retrieves update of device and event data from the IIS server in XML format and update the VML display  based on the updated information. 5.2 Automated Refresh of Device and Event Data CHART/EORS device and event information needs to be updated at a pre-configured interval. They should be updated separate from the background map to reduce the load on the map server. The technical approach to achieve this will be to use a hidden frame to send the request to retrieve updated device and event data and receive the response. The response will package the data in XML file to be parsed into a document object model (DOM) and display the data on map. The request can be to retrieve all data or only retrieve data newer than last retrieval. When the new device/event is received and it requires changing the display of the device/events, the style assignment for the elements can be changed to update the device and event display.   The VML elements will be sent using real-world coordinates (Maryland State Plane 1983). After the data has been retrieved to the client side, the VML map layers can be dynamically projected using the â€Å"local coordinate space†. When user zooms or pan the map, the VML will be projected using the updated coordinates to fit the new map extent without going back to the server to retrieve new data set. 5.3 Inter-Frame Client Script Synchronization The map page has a few frames and the browser loads them asynchronously. Scripts in one frame may call scripts in another frame that may not have been loaded. The approach to resolve this is to add client-side exception handling and verification routine to ensure that the script is called always after the frame is loaded. 5.4 Assigning and Editing Event Location The dynamic nature of VML elements in the browser allows adding and modifying VML elements by scripting. When the user clicks or drags the mouse on the map, client-side script manages the transformation of screen coordinates and real-world map coordinates. The coordinates are sent back to the server’s secured URL where the information is extracted and saved to the database. 5.5 Scalability The CHART mapping application serves not only the Intranet users, but also Internet browser clients. During emergency situations, the load on both the Internet and Intranet servers could get extremely high. The system must be able to scale up to serve large amount of users. The technical approach to solve this issue involves two main facets. As described in the network configuration section, the system will employ network load balancing and allows adding additional hardware in the future. The system should also be able to utilize the caching feature of IIS and ASP.Net to scale up without significantly increase hardware investment. ASP.Net allows caching configuration for individual page modules, such as whether the page is cached and how long it is cached. After the application is deployed, these caching settings can be configured on the web pages. For example, if it is determined that the Internet mapping can be up to 3 seconds late, by setting caching time to 3 seconds, all requests from the Internet will receive a cached response without creating additional load on the map and database server. 5.6 Exception Management and Recovery CHART II keeps its clients updated via a push model using the CORBA Event Service. The Event Service does not guarantee delivery; therefore it is possible for event data to be lost/dropped (although in practice, this is rare). To account for this possibility, the CHART Web Event Listener will refresh its information about the status of devices and traffic events from CHART II at a configurable interval. Also, each time the Event Listener is started, it will retrieve all relevant data from CHART II. Thus, the update model becomes a push model with an occasional pull to be safe. This process will be used to recover from the following situations: 1. The Event Listener was down and did not receive new data from CHART II. 2. CHART II CORBA event(s) occasionally dropped while the Event Listener is up and running. Another likely scenario is that the CHART II server or service(s) restart. After a typical restart, the CORBA Event Service CORBA objects will be  recreated with the same characteristics allowing the Event Listener to continue to automatically receive CHART II CORBA events. As the CHART II services will not be processing events during this time, no events are likely to be missed. Therefore, the Event Listener does not need to do anything special to handle a CHART II server or service(s) restart. Sometimes CHART II maintenance will require that new (and different) Event Service CORBA objects be created. This might happen during a CHART II upgrade, for example. In this case, the Event Listener will need to be restarted so that it can pick up the new objects. Since this type of maintenance does not occur often and the Event Listener restarting is fast, the restart can be handled as part of the CHART II upgrade procedures. 5.7 Integration with ASP Code in EORS and CHART Web Application The CHART Intranet Mapping, replacing the existing EORS mapping application, will still be launched as a separate window by a URL string with a few parameters identifying the district, view type, etc. The impact on EORS web application should be limited to modifying the URL links. The current CHART Internet Mapping site uses â€Å"include† statement to include site navigation pages from upper level CHART web site’s pages. When upgrading Internet Mapping to ASP.Net, â€Å"include† statement is no longer used. Instead, a ServerXMLHTTP request can be formulated to request the text from the included ASP page and merge them into the mapping ASP.Net pages. The limitation of this implementation would be that the ASP.Net application couldn’t share the session and application variables from the ASP application. Currently, there are only a couple of them, such as database connection string. The ASP.Net mapping application will maintain a separate set of application variables. 6. User Interface Design 6.1 Intranet Map Site User Interface Design Here following is a high-level frame structure for the Intranet mapping site: 1. AppFrame is the highest-level frame that includes all the child frames. On the top of the page, there will be the title frame, which will host the  CHART icon. Also inside the title frame will be a group of tabs, such as Traffic, Roadway Weather, Message Sign, etc. 2. ToolsFrame hosts the map navigation and other map related tools. The ToolsFrame will also host menu system that allows the user to bring up data and other detailed information. 3. HiddenFrame will be used to submit and receive information from the server. 4. ContentFrame is further divided to a map frame on the left and a data frame on the right. The user shall be able rearrange the frame boundary to give more space to the map or data area. Data frame will display data as well as legend, layer control and other items when needed. 5. PromptFrame will display the current tool selected and instructions for user activities. Here is a screen shot of the preliminary user interface design: 6.2 Internet Map Site User Interface The overall CHART Internet mapping web site design will stay the same as current web site. The site will stay as part of the overall CHART web site by including the CHART navigation menus into the site. The site will not be using frames; instead, all elements will be laid out as HTML tables. 7. References 1. CHART/EORS Intranet Mapping System Requirement Specification 2. CHART Internet Mapping System Requirement Specification 3. Security and ArcIMS – ESRI White Paper 4. ArcSDE Configuration and Tuning Guide for Microsoft SQL Server – ESRI White Paper 5. ArcIMS 4.0 High-Availability Configuration Testing Using Network Load Balancing –ESRI White Paper 6. Vector Markup Language (VML) Specification – W3C 8. Terms and Glossary ArcXML – ESRI’s map request/response specification in XML format CORBA – Common Object Request Broker Architecture CSS – Cascading Style Sheets DOM – Document Object Model ESRI – Environment System Research Institute GIS – Geographic Information System GML – Geography Markup Language NLB – Network Load Balancing SSL – Secure Socket Layer SVG – Scalable Vector Graphics VML – Vector Markup Language XML – Extensible Markup Language

Tuesday, January 21, 2020

Roles of Colonial Militia and Continental Army in Winning the Revolutio

Roles of Colonial Militia and Continental Army in Winning the Revolutionary War When the fighting at Lexington and Concord broke out in 1775, the conflict unleashed a flood of resentment that had been building over the right of the colonies to govern themselves. This conflict became a symbol of the American fight for "life, liberty, and the pursuit of happiness." As James Kirby Martin and Mark Edward Lender argue in A Respectable Army: The Military Origins of the Republic, 1763-1789, the patriotic mythology of a united people fighting the tyrannical British oppressors for basic human rights permeated historical thought about the American Revolution until recently and obscured the inner conflicts that nearly destroyed the rebel effort (4). Martin and Lender maintain that the colonists did not develop a sense of national identity until after the Revolutionary War and that the lack of interest among the colonists in fighting for their cause prompted the use of the Continental Army to win the war. The authors also clearly regard the colonial militia with a great deal of contempt and spend a considerable amount of time discrediting them as an effective fighting force. There seems to be a fair amount of evidence, however, to indicate that some sense of nationhood existed prior to the Revolution, gaining momentum throughout the war but not firmly taking hold until after the war was over, and it was, in fact, the colonial militia that best exemplified that sense of nationalism. When the first settlers arrived in the New World, they attempted to transplant the European societal practices to which they were accustomed, but learned quickly that the wilderness of North America did not accommodate them. What resulted was the formati... ...had everything to lose and fought anyway better represented the national ideals for which they were fighting and it was for that reason that the public embraced them. The argument as to whether the colonial militia or the Continental Army deserves the most recognition in the war effort might never be settled. In some ways, the debate seems unnecessary. Winning the war combined more than just those two elements. If the French had not started a power struggle in Europe, the results would have been vastly different. If either the militia or the regulars had to fight the war alone, the results would have been vastly different. The laurels belong to no single group and should not be argued otherwise. Works Cited Martin, James Kirby, and Mark Edward Lender. A Respectable Army: The Military Origins of the Republic, 1763-1789. Wheeling, IL: Harlan Davidson, 1982.

Monday, January 13, 2020

Importance of Life Events

The Importance of Life Events Change is a part of life no one expects. Everyone’s life changes at some point and in most cases at many points. Life is full of obstacles and challenges but it’s the choices you make that change the course of your life. People learn and grow from every experience they have it’s the differences in interpretation. Pregnancy is a part of life that can change peoples course in many ways. Some parents find themselves raising children by themselves, and some stuck in relationships they don’t want or have to make the tough decision on whether or not to have their child. Each chooses in some way what paths to take and each has a different out come, each will change their lives in many ways. Parenting can make people stronger, more sensitive to others or maybe make changes in jobs and free time a child is a life long experience that has its own cross roads and life decisions. Accidents happen to every one but they can have long lasting effects. A broken bone ,concussion, car accident , plain crash all these things are accidents but they can change peoples lives for ever. From morning family members or the loss of jobs all in small ways change your life, it is in the decisions they make after accidents that may change the hole course of lives. People around the person feel the repercussions to maybe its someone else’s accident they learned from it doesn’t matter life’s lessons can be hard to swallow some times but they force you to reevaluate every situation. Death is the most horrible experience for anyone involved but it gives anyone who experiences it a new look at life. The deaths of parents, siblings, friends and worse of all children, can be the most devastating part of life. It’s the choices made in death that shape the kind of person they are. They can choose to hide away and take shelter and come out with more inspiration then before, they could stay strong and brake when they least expect it or find peace and moving on and letting go. Death is a part of life that changes more the once around then the one experiencing it. Though life seems to do its own thing some times in the end it is the choices people make before, during, and after major events that can truly change the paths of our lives. People have the power to do anything, they just need to look into themselves to figure out were their trying to go. You cant dream big if you don’t do big things.

Sunday, January 5, 2020

A Research On Target Market - 1016 Words

Target Market Continue Mission ensures that military Veterans and their families are the main focus of their mission and that they are given an opportunity to reduce their stress, improve their relationships, and prevent suicide. We utilize a three-pronged approach focused on improving and saving the lives of veterans through one-on-one services, group activities, and a large referral system of community resources that support and educate Veterans. Continue Mission is a 501C-3 non-profit organization founded by Joshua Hansen, U.S. Army, Retired and Laura Cantin. Continue Mission provides opportunities for Veterans to create and build relationships with other Veterans. We help Veterans build the strength and determination to live a healthy lifestyle, discover opportunities for the future, interact, and engage in positive family, social, and community settings. The camaraderie within our Veteran population derives from the unique backgrounds and experiences of the Veterans we serve . Positioning Statement Continue Mission aspires to empower and involve Veterans in programs that promote health, wellness, and positive life changing experiences through support, education, advocacy and research. Our positioning statement clearly illustrates our goals at Continue Mission; in addition, we educate Veterans, local professionals, citizens and businesses on issues facing Veterans. No Veteran will be left behind with Continue Mission. Products and Services OfferedShow MoreRelatedTarget Market Segmentation Research Paper-Gap Inc.683 Words   |  3 Pagesand children (Yahoo Market Guide, 2001). Under the Gap, are the Old Navy and Banana Republic brands (Yahoo Market Guide, 2001). Demographic/Psychographic/Geographic Segmentation Gap The Gap’s target age segment is males and females ranging from seventeen to twenty-five years old (Cosmopolitan, 2000, p. 2). The typical family life cycle for a Gap customer comprises of single teenagers and young adults to young married couples (Cosmopolitan, 2000, p.2). The races Gap targets consist of many minoritiesRead MoreMarketing Simulation : Target Market, 4ps Of Marketing, Performance Metrics And Research Data1681 Words   |  7 Pagesall aspects of the marketing strategy including target market, product design, pricing, marketing communication mix, media selection, promotion, and place. Throughout the simulation, all 4ps marketing elements have been developed. The aim of this paper is to cover how each area of the simulation relates to what we have discussed in the class. We are going to discuss target market, 4p’s of marketing, performance metrics and research data. TARGET MARKET Figure out the typical customers is the firstRead MoreHong Kong Disney Land Market Segmentation, Target Marketing, Positioning, And Consumer Research Essay2985 Words   |  12 PagesThis Assignment is to know about Hong Kong Disney Land Market Segmentation , Target Marketing, Positioning and Consumer research by justifying the answers for the below questions. Question 1: Which strategic action Disney took in terms of consumer focused initiative? Give Examples. Hong Kong’s recent reinstatement as the world’s freest economy1 reconfirmed its claim as a central hub for international business travelers. Its exceptional shopping and fine dining opportunities also make it a majorRead MoreThe Ethical Issues Of Marketing1488 Words   |  6 Pagescompany which communicates The merits of the product or service to its customer to which it intends to sell its Product or service. Marketing is done by the company not only to communicate about its product or Service but also to compete in the market with its competitors and tries to achieve Its desired sales objective. Marketing is often described in terms of 4 p’s, which are Product – what goods or services are offered to customers? Promotion – howRead MoreMarketing Research Report On Netflix Essay1565 Words   |  7 Pages Marketing Research Report November 20, 2016 Muthanna Al-Hanooti MKT/421 Henry Weber Introduction Netflix produces DVD Rentals and Streaming of movies and television shows and other related products (Netflix.com, 2016). The quality and services of products helps Netflix to make its image and brand loyalty among its existing competitors. But, the competition in the market forces the organization to introduce new products for making improvement in the organizational sustainability (ArnoldRead MoreEssay on Barbers Business Plan1131 Words   |  5 Pagesof Top Class Cuts Contents Executive summary 2 Geography Location 2 Finance 3 Introduction 4 The business concept and the business model 5 Legal Form 5 Mission, aims and objectives 5 Marketing plan 6 Primary Market Research 6 Secondary Market Research 8 The 4p’s 9 Product 9 Price 9 Promotion 9 Finance plan 11 Key risk factors 12 Concluding summary and re-affirmation of commitment to the business 13 Executive summary The business proposed is a barbershop, offeringRead MoreThe Case Study704 Words   |  3 PagesStatement of the problem How can Look-Look market research industry keep the phase on learning as much about the needs, wants, and culture of the youth, anticipate where its heading and remain on the cutting edge by means of technology. Background of the problem The challenge is that market preferences for this segment of the population change rapidly, sometimes in a matter of days and weeks. This makes it difficult for marketers to target this age group. The young people themselves wereRead Moreford ka case Essay617 Words   |  3 PagesMotor Show in October 1996. But Brand Manager, Gilles Moynier, needed to decide on the target market for the new product. The car industry was traditionally segmented into size tiers, but Europe’s market for small cars was changing rapidly and even alternative segmentations did not reveal a clear target for the Ka. This case introduces students to the fundamental marketing problem of market segmentation and target selection. Fords situation does not fit the textbook model exactly and so the caseRead MoreSwot Analysis : Market Research937 Words   |  4 PagesMarket research systematically collects and analyzes relevant information about the target market, thereby investigating the target market, and its segmentation and trends. A complete market research consists of three stages with distinct objectives: exploratory, descriptive, and causal researches. In exploratory research, preliminary information will be systematically gathered, screened, and analyzed. In descriptive research, the key issues that affect the target market will be subsequently identifiedRead MoreCase Study : Fall Prevention Program1400 Words   |  6 Pagesoutcomes and control health care costs, the state set out to research this phenomenon in search of a solution. The state identified fitness levels as a construct corr elating to the likelihood of harms from falls. The state set out to identify preventive measures to support improved fitness levels among its elderly population. This analysis will explain how the state of Washington segmented it markets in support of identifying the target audience. It will discuss how this information was used to

Saturday, December 28, 2019

Definition and Examples of Cataphora in English Grammar

In English grammar, cataphora is the use of a pronoun or other linguistic unit to refer ahead to another word in a sentence (i.e., the referent). Adjective: cataphoric. Also known as  anticipatory anaphora, forward anaphora, cataphoric reference, or forward reference. Cataphora and anaphora are  the two main types of  endophora--that is, reference to an item within the text itself. Cataphora in English Grammar The word that gets its meaning from a subsequent word or phrase is called a cataphor. The subsequent word or phrase is called the antecedent, referent, or head. Anaphora vs. Cataphora Some linguists use anaphora as a generic term for both forward and backward reference. The term forward(s) anaphora is equivalent to cataphora.   Examples and Uses of Cataphora In the following examples, cataphors are in italics and their referents are in bold. Why do we envy him, the bankrupt man? (John Updike, Hugging the Shore, 1984)A few weeks before he died, my father gave me an old cigar box filled with faded letters.In The Pendulum Years, his history of the 1960s, Bernard Levin writes of the collective insanity which seized Britain. (The London Evening Standard, February 8, 1994, quoted by Katie Wales in Personal Pronouns in Present-Day English. Cambridge University Press, 1996)If she were alive today, [Barbara] Tuchman would surely be preparing to pen fresh furious pages tonight, as the president seeks to rally his faltering domestic popularity with summonses of support. (Martin Kettle, If He Resists the Siren Voice of Folly, Blairs Legacy Is Secure. The Guardian, June 25, 2005)You must remember this:A kiss is just a kiss,A sigh is just a sigh. (Herman Hupfeld, As Time Goes By, 1931)This, I now realize, was a very bad idea--suggesting we do whatever Terry Crews wants for the day. (Joel Stein, Crews Control. Time, September 22, 2014) It must have been tough on your mother, not having any children. (Ginger Rogers in 42nd Street, 1933)Too scared to buy before they sell, some homeowners aim for a trade.So I just want to say this to the Congress: An America that buys much more than they sell year in and year out is an America that is facing economic and military disaster. (Congressman James A. Traficant, Congressional Record--House, September 25, 1998)After she declared herself broken, betrayed, at bay, really low in another organ yesterday, Im not sure the Diary should even mention poor Bel Mooneys name. (The Guardian, August 9, 1994) Creating Suspense With Cataphora [Cataphora] is in evidence in the next example, which is typical of the opening sentences of books: Students (not unlike yourselves) compelled to buy paperback copies of his novels--notably the first, Travel Light, though there has lately been some academic interest in his more surreal and existential and perhaps even anarchist second novel, Brother Pig--or encountering some essay from When the Saints in a shiny heavy anthology of mid-century literature costing $12.50, imagine that Henry Bech, like thousands less famous than he, is rich. He is not.​[John Updike, Rich in Russia. Bech: A Book, 1970] Here we meet copies of his novels before we know who he is. It is only several lines later that the possessive adjective his links forward to the proper nouns Henry Bech in the text that comes after. As you can see, whereas anaphora refers back, cataphora refers forward. Here, it is a stylistic choice, to keep the reader in suspense as to who is being talked about. More usually, the noun that the pronoun links forward to follows soon after. (Joan Cutting, Pragmatics and Discourse: A Resource Book for Students. Routledge, 2002)Strategic Use of Cataphora [M]ore often than not, protypical cataphora is motivated by a planned or strategic delivery of a referent, such as in news-telling like the following: Listen to this--John won a lottery and got a million dollars! Prototypical cataphora thus is rarely associated with problems in lexical retrieval. (Makoto Hayashi and Kyung-Eun Yoon, Demonstratives in Interaction. Fillers, Pauses and Placeholders, ed. by Nino Amiridze, Boyd H. Davis, and Margaret Maclagan. John Benjamins, 2010) Cataphora and Style [S]ome prescriptive grammarians have gone so far as to condemn the practice [of cataphora], for reasons of clarity and, more blandly, good style. So H.W. Fowler declares the pronoun should rarely precede its principal, a view echoed by Gowers . . .. This has led to problems in terminology. The term antecedent, for example, is commonly used to refer to a coreferential NP in an anaphoric relation; there is no equivalent expression for the *postcedent NP, however. But by an odd semantic license, some grammarians, and of different schools of thought, use antecedent in this sense. (Katie Wales, Personal Pronouns in Present-Day English. Cambridge University Press, 1996) EtymologyFrom the Greek, backward carry Pronunciation: ke-TAF-eh-ra

Thursday, December 19, 2019

The Museum Of Fine Art - 1022 Words

The Museum of Fine Art in Houston, Texas has a variety of art collections. To be precise, the canopic jar is mounted on a large pedestal among other sculptures. This Canopic Jar was made in Egypt during the dynasty XXVI, 664-525 B.C. It was made from limestone. The jar was masterfully carved from stone and subsequently painted over. It is a historical masterpiece and it is relatively in good condition. Such stone jars were used to house the organs of the deceased. Their organs were put in these canopic jars during the mummification process. The lids of these stone jars have a human face. The faces were carved to represent the four sons of the god Horus. The three-dimensional jar is solid and quite large. It is well displayed in a spacious environment. The lid of the jar is organic due to the life-like face that stares back at the viewer. The rest of the jar is cylindrical with graceful proportions. The size of the jar interpenetrates with the surrounding space. It turns in space and it was meant to be viewed from several points of view. Its cylindrical nature makes the viewer’s eye wander all around its form to take in its splendor. Contour lines have been used to make the gentle outline of the jar, giving it a closed silhouette. The dominant linear elements have been incised on the surface of the jar. Beautifully crafted hieroglyphic inscriptions can be seen on the middle of the jar. The contour outline of the jar makes it have a volumetric presence. There are traces ofShow MoreRelatedThe Museum Of Fine Arts751 Words   |  4 PagesDear to whom it may concern in Museum of Fine Arts (MFA) Boston I am writing to you to express my interest in the job opportunity â€Å"Terrace Research Associate in Egyptian Art† in the Department of Art of the Ancient World, one of open staff positions in Museum of Fine Arts (MFA) Boston next Summer. As an applicant for the job opportunity in Museum of Fine Arts (MFA) Boston, I would be interested in the division, the Arts of Ancient Egypt collections I hold a Bachelor’s degree in Egyptology fromRead MoreMuseum of Fine Arts1430 Words   |  6 PagesDerain’s Turning Road and Benton’s Haystack After visiting the Museum of Fine Arts in Houston for the first time, I observed many interesting works of art representing various time periods. Of all the paintings that I saw last week, two landscaped pieces seemed to stick out in my mind; Andre Derain’s The Turning Road and Thomas Hart Benton’s Haystack. Though these two art works are similar in subject matter, they clearly reflect the different styles and time periods of their artists; the abstractRead MoreThe Museum Of Fine Arts1106 Words   |  5 PagesThe Museum of Fine Arts, located in St. Petersburg, Florida holds a variety of artworks that depict a specific period in human development and cultural aspects. The variety was very helpful and the process to narrow down the search of a painting of my choice became less difficult. The painting that I choose was made by an American artist named Stuart Davis Untitled (Black and White Variation on Windshield Mirror). Davis’s painting was extremely peculiar and I wanted to further examine its propertiesRead MoreThe Museum Of Fine Arts1398 Words   |  6 Pages Like many other places in South Boston, the Museum of Fine Arts and History is deceptively small, but musty and brimming with reminiscence of times past. Squatting on the curb of the downtown road since 1993, the museum belies its significance. Composed of plain red brick atop a sheet of cracked pavement, it is as humble as any house along the road. The first step into the museum greets the patron with a wave of chilly air that totes along whiffs of dust and undertones of the aged burgundy rugRead MoreThe Museum Of Fine Arts1511 Words   |  7 Pagesexpress the culture of a region or a country. Therefore, art has played a very important role throughout history. When talking about art, the first thing that comes to most people’s mind is probably that art is a painting or it is a sculpture. However, art has many forms of expression, and it closely connects to human’s daily life. Besides paintings and sculptures, art is everywhere around us. I am always interested in how people have linked art with daily life throughout history. For this reason, theRead MoreThe Museum Of Fine Arts1523 Words   |  7 Pagesexpress the culture of a region or a country. Therefore, art has played a very important role throughout history. When talking about art, the first thing that comes to most people’s minds is probably that a rt is a painting or it is a sculpture. However, art has many forms of expression, and it closely connects to human’s daily life. Besides paintings and sculptures, art is everywhere around us. I am always interested in how people have linked art with daily life throughout history. For this reason, theRead MoreThe Museum of Fine Arts Essay891 Words   |  4 PagesThe Museum of Fine Arts One pleasant afternoon, my classmates and I decided to visit the Houston Museum of Fine Arts to begin on our museum assignment in world literature class. According to Houston Museum of Fine Art’s staff, MFAH considers as one of the largest museums in the nation and it contains many variety forms of art with more than several thousand years of unique history. Also, I have never been in a museum in a very long time especially as big as MFAH, and my experience about the museumRead MoreThe Virginia Museum Of Fine Arts970 Words   |  4 PagesThe Virginia Museum of Fine Arts in Richmond at a glance is a modern metropolitan building that displays a vibrant exhibition of Byzantine art found in the Medieval and Byzantine wing. They are grouped together because they share a progression of time occurring in the heart of Europe roughly from the 1300s until the fall of Constantinople in 1453. The exhibit begins with displays of medieval art of Western Europe. It further progresses to By zantine art arranged in broad categories ranging from pre-ChristianRead MoreA Visit At The Museum Of Fine Arts1210 Words   |  5 PagesMuseum Assignment On November 8th, 2016 I took a trip to the Museum of Fine Arts in Boston, Massachusetts, to conduct research on different kinds of art. When I got there I went straight to The Ancient World exhibit to find a piece of artwork that I found fascinating. The moment I took a step through those giant glass doors, I saw the Colossal Statue of King Menkaura. This vast piece of artwork had so much history and detail from one particular era, it was almost breathtaking. As I continued onRead MoreThe Collection At The Museum Of Fine Arts2099 Words   |  9 PagesRESEARCH Integrated into the Permanent Collection at the Montreal Museum of Fine Arts, Pieter Brueghel the Younger 1620’s painting Return from the Inn, illustrates an outdoor winter scenery of rustic peasant life in early seventeenth century Belgium. Born in 1564 or 1565 in Brussels, Belgium, Pieter Brueghel the Younger was a Flemish painter best known for being the oldest son of the notable sixteenth-century Netherlandish painter Pieter Brueghel the Elder and Mayken Coecke van Aelstv (Artnet, 2016)

Wednesday, December 11, 2019

Impact of Globalization on Value Chain

Question: Discuss about the . Answer: Introduction: This assessment consists with the evaluation and scrutiny of the various impact of Globalization has in the Value Chain. Globalization is the method by which global integration takes place with exchange of views, opinions, goods, thoughts and other characteristics of culture. Value Chain analysis consist of numerous number of activities which includes designing of a product, production procedures, marketing and distribution activities of an organization. All this above mentioned activities helps a business in producing a product. If a company is manufacturing one, its value chain starts with procurement of raw material and consists of all that is added to the product before it is sold to the consumers. Michael E. Porter was the first person to bring in the concept of value chain. Economic Globalization has an adverse effect on the value chain as it is a long term process and perception and values of people differ globally (Caniato et al. 2013). Competitive Advantage: With the help of Globalization there is a vast competitive advantage in Supply Chain Management and its Value Chain Analysis. Competitive advantage is gained when the value is created in carrying out a competitive strategy. One of the most useful tools used by any organization to achieve competitive advantage in the market place is Value Chain Analysis. Value Chain Analysis is a way of accumulating the activities those are required in order to offer product or services to a Consumer (Beck. 2015). The value chain model predicts the particular arrangement of actions that are needed to generate value for products and services. The arrangement of these activities and the final product must be a exceptional and differ from others. Competitive advantage leads to the result those which are obtained from distinct activities those are performed along the value chain. The value chain of a traditional manufacturing firm consists of activities like inbound logistics, outbound logistics, marketing plan, sales and services. It is also supported by the transportation of the firm, human resource management, technological development and procurement. With the help of globalization most of the organizations are able to sustain competitive position and achieve long term profitability. In achieving this strategy, a business firm has two options, cost leadership strategies and specialization. The cost leadership strategies are divided into three general strategies, Cost Leadership, differentiation and focus. With the help of global presence in the value chain more organization are gaining efficiency and it is also increasing the competitive market environment of Economic Globalization (Marchi et al. 2013). Financial Consideration: Value chain analysis and finance are interlinked with each other all the products and services that move though the value chain are invested to attain returns and the growth of competitiveness in the value chain. With the help of globalization value chain analysis is established between the financial provider and production to reduce the transaction cost and lower the threat of conventional financial services. Implementing finance in the value chain helps in ensuring that the firms have liquidity which leads to meeting market demand. Due to globalization financing gaps are properly analyzed between organizations, number of investor from foreign soil are increasing and the growth of companies are becoming huge. With the help of proper finance in the value chain the wholesalers, retailer; brokers have constant access to the line of products they required, and the delivery is done in timely manner and to meet assured specifications. Globalization also increases the entry of firms into n ew market as the investment opportunities are realized successfully (Rushton et al. 2014). Technological Consideration: The evolution of technology has significantly increasing and the importance of technology in the value chain is used by business and consumers arbitrarily. In the last two decades the technological factor in the value chain has changed drastically and the transition of large mainframe computing systems to personal computer are creating healthier work space. With the implementation of mobile technology in the value chain there is a huge rate of efficiency in the sales floor. The inbound and outbound logistics consists of several small activities from receiving of raw materials, distribution of finished goods, packaging and maintaining proper inventory requires huge amount of information exchange (Caniato et al. 2013). This exchange requires huge number of enterprise database and with help of global presence in the firms and advancement of technology the process is controlled efficiently and delivery time is also decreased. In addition to the above benefits, technology has included wireless solutions in global supply chains. With the help of wireless technology companies are now able to track and manage their shipments, which provides in eliminating loading errors, improving productivity and customer service globally (Sayfuddin. 2015). Wireless technology in global supply chain has also resulted in quality control mechanism for the companies, the implementation of wireless detection of defects with the help of sensor technology and providing smooth work flow is really affecting the supply chain numerously. All this is possible only through globalization and adoption of new technology from different market place and innovating supply chain (Jaumotte et al. 2013). Human Resource Consideration: All the organization is responsible for employees recruitment, selection and training. One of the most effective resource of any organization is their Human Resource Management which is directly related to its value chain. With the help of global presence and modern ideas, training methods and employee policies are implemented in different organization. In respect to this Performance Appraisal of the employees are done efficiently which leads in providing job satisfaction and motivation to their work. With the implementation of Globalization, companies are communicating with their customers and stake holders from various sub cultures, different languages and social backgrounds. Diversity of recruitment is taking place in different companies and greater emphasis on training is initiated to meet global standards (Sayfuddin. 2015). Cultural Consideration: Globalization has both negative and positive impact on the culture and traditional factors of the society. Not only in way of languages and customs. But globalization has created certain products and services those were not previously available. Every product is now available globally with similar taste but different pricing strategies. With the help of this, globalizations is making people aware of different culture of other countries and are decreasing gaps between continents. It provides combination of different cultures and weakening of exceptional cultural differences (Stormquist and Monkman 2014). Political and Economical Consideration: The globalization of the value chain is largely determined by two mechanisms, which consist of expansion of market through arms-length trade and expansion of internal structures of multinational enterprises. Globalization affects the political phase by moving from national systems towards a independent integrated system. With the advancement of economic globalization interdependence of national economies and trade between different nations are possible. The government of different nations has also abided with World Trade Organization framework for economic co-operation between nations. With the accomplishment of this there is a high level of investment done by foreign corporation in developing economies and thus increasing the growth and potential of the economy (Rani and Khan 2015). Corporate Social Responsibility Consideration: Globalization not only provides more opportunities and payback for multinational companies but they also help in adapting the changing environment of industrial level. Corporate Social Responsibility is one of the most significant factors for any organization to sustain in the competitive market place. Globalization promotes the development of Corporate Social Responsibility all over the globe, by making the public aware of the negative consequences such as income inequality among various companies, misuse of labour and lack of sustainability towards the environment. Often Corporate Social Responsibility helps is solving disputes among various global problems. Globalization also leads to failure of Corporate Social Responsibility in many developing countries. Most of the problems arise due to corporate irresponsibility by the managers. The solutions to these problems are providing public goods, security of citizens right and human rights (Sinha. 2015). With the transition of Globalization any business firm can exploit the performance by allocating its resources global. As the competition gets increased across boundaries more value and interest for the consumers are given importance and social, ethical and environmental factors are being taken into considerations (Rani and Khan 2015). Conclusion: This assessment consists of evaluating that how globalization has affected the value chain analysis. All the above mentioned considerations play an important role in shaping the value chain analysis of an organization. The effect of globalization in a society is enormous and also has its deep significance in business life span of any organization. With the help of globalization and introduction of mobile technology has given rise to effectiveness and efficiency in the process of Value Chain Analysis. The globalization and Supply Chain Management are interlinked with each other. Social Change Management enables globalization while globalization provides right of entry to new customer markets and new resource of procurement. Globalization also initiates the understanding of different markets, culture, social backgrounds, risk and regulation globally. Gaining of new information is the key towards successful Social Change Management which decreases disruptions at workplace and avoids delays. Hence with the help of globalization new opportunities are brought forward in the Supply Chain Management. References: Beck, U., 2015.What is globalization?. John Wiley Sons. Caniato, F., Golini, R. and Kalchschmidt, M., 2013. The effect of global supply chain configuration on the relationship between supply chain improvement programs and performance.International Journal of Production Economics,143(2), pp.285-293. Govindan, K., Azevedo, S.G., Carvalho, H. and Cruz-Machado, V., 2014. Impact of supply chain management practices on sustainability.Journal of Cleaner Production,85, pp.212-225. Jaumotte, F., Lall, S. and Papageorgiou, C., 2013. Rising income inequality: technology, or trade and financial globalization?.IMF Economic Review,61(2), pp.271-309. Marchi, V.D., Maria, E.D. and Micelli, S., 2013. Environmental strategies, upgrading and competitive advantage in global value chains.Business strategy and the environment,22(1), pp.62-72. Monczka, R.M., Handfield, R.B., Giunipero, L.C. and Patterson, J.L., 2015.Purchasing and supply chain management. Cengage Learning. Mudambi, R. and Puck, J., 2016. A Global Value Chain Analysis of the Regional StrategyPerspective.Journal of Management Studies. Rani, P. and Khan, M.S., 2015. Changing scenario of corporate social responsibility (CSR) in an era of globalization.IJAR,1(10), pp.111-114. Rushton, A., Croucher, P. and Baker, P., 2014.The handbook of logistics and distribution management: Understanding the supply chain. Kogan Page Publishers. Sayfuddin, A.T.M., 2014. Globalization and HRM: From Discrepancies to Adaptation.The International Journal of Business Management,2(5), p.79. Sinha, N., 2015. Globalization and Corporate Social Responsibility Disclosure (CSRD) Reporting Practices: An Investigation of Power and Oil Gas Sector in India.Globalization,7(34). Stromquist, N.P. and Monkman, K. eds., 2014.Globalization and education: Integration and contestation across cultures. RL Education.