计算机专业外文文献翻译6

计算机专业外文文献翻译6
计算机专业外文文献翻译6

外文文献翻译(译成中文2000字左右):

As research laboratories become more automated,new problems are arising for laboratory managers.Rarely does a laboratory purchase all of its automation from a single equipment vendor. As a result,managers are forced to spend money training their users on numerous different software packages while purchasing support contracts for each. This suggests a problem of scalability. In the ideal world,managers could use the same software package to control systems of any size; from single instruments such as pipettors or readers to large robotic systems with up to hundreds of instruments. If such a software package existed, managers would only have to train users on one platform and would be able to source software support from a single vendor.

If automation software is written to be scalable, it must also be flexible. Having a platform that can control systems of any size is far less valuable if the end user cannot control every device type they need to use. Similarly, if the software cannot connect to the customer’s Laboratory Information Management System (LIMS) database,it is of limited usefulness. The ideal automation software platform must therefore have an open architecture to provide such connectivity.

Two strong reasons to automate a laboratory are increased throughput and improved robustness. It does not make sense to purchase high-speed automation if the controlling software does not maximize throughput of the system. The ideal automation software, therefore, would make use of redundant devices in the system to increase throughput. For example, let us assume that a plate-reading step is the slowest task in a given method. It would make that if the system operator connected another identical reader into the system, the controller software should be able to use both readers, cutting the total throughput time of the reading step in half. While resource pooling provides a clear throughput advantage, it can also be used to make the system more robust. For example, if one of the two readers were to experience some sort of error, the controlling software should be smart enough to route all samples to the working reader without taking the entire system offline.

Now that one embodiment of an ideal automation control platform has been described let us see how the use of C++ helps achieving this ideal possible.

DISCUSSION

C++: An Object-Oriented Language

Developed in 1983 by BjarneStroustrup of Bell Labs,C++ helped propel the concept of object-oriented programming into the mainstream.The term ‘‘object-oriented programming language’’ is a familiar phrase that has been in use for decades. But what does it mean? And why is it relevant for automation software? Essentially, a language that is object-oriented provides three important programming mechanisms:

encapsulation, inheritance, and polymorphism.

Encapsulation is the ability of an object to maintain its own methods (or functions) and properties (or variables).For example, an ‘‘engine’’ object might contain methods for starting, stopping, or accelerating, along with properties for ‘‘RPM’’ and ‘‘Oil pressure’’. Further, encapsulation allows an object to hide private data from a ny entity outside the object. The programmer can control access to the object’s data by marking methods or properties as public, protected,or private. This access control helps abstract away the inner workings of a class while making it obvious to a caller which methods and properties are intended to be used externally.

Inheritance allows one object to be a superset of another object. For example, one can create an object called Automobile that inherits from Vehicle. The Automobile object has access to all non-private methods and properties of Vehicle plus any additional methods or properties that makes it uniquely an automobile.

Polymorphism is an extremely powerful mechanism that allows various inherited objects to exhibit different behaviors when the same named method is invoked upon them. For example, let us say our Vehicle object contains a method called CountWheels. When we invoke this method on our Automobile, we learn that the Automobile has four wheels.However, when we call this method on an object called Bus,we find that the Bus has 10 wheels.Together, encapsulation, inheritance, and polymorphism help promote code reuse, which is essential to meeting our requirement that the software package be flexible. A vendor can build up a comprehensive library of objects (a serial communications class, a state machine class, a device driver class,etc.) that can be reused across many different code modules.A typical control software vendor might have 100 device drivers. It would be a nightmare if for each of these drivers there were no building blocks for graphical user interface (GUI) or communications to build on. By building and maintaining a library of foundation objects, the vendor will save countless hours of programming and debugging time.

All three tenets of object-oriented programming are leveraged by the use of interfaces. An interface is essentially a specification that is used to facilitate communication between software components, possibly written by different vendors. An interface says, ‘‘if your cod e follows this set of rules then my software component will be able to communicate with it.’’ In the next section we will see how interfaces make writing device drivers a much simpler task.

C++ and Device Drivers

In a flexible automation platform, one optimal use for interfaces is in device drivers. We would like our open-architecture software to provide a generic way for end users to write their own device drivers without having to divulge the secrets of our source code to them. To do this, we define a simplified

C++ interface for a generic device, as shown here:

class IDevice

{

public:

virtual string GetName() ? 0; //Returns the name

//of the device

virtual void Initialize() ? 0; //Called to

//initialize the device

virtual void Run() ? 0; // Called to run the device

};

In the example above, a Ctt class (or object) called IDevice has been defined. The prefix I in IDevice stands for ‘‘interface’’. This class defines three public virtual methods: GetName, Initialize, and Run. The virtual keyword is what enables polymorphism, allowing the executing program to run the methods of the inheriting class. When a virtual method declaration is suffixed with ?0, there is no base class implementation. Such a method is referred to as ‘‘pure virtual’’. A class like IDevice that contains only pure virtual functions is known as an ‘‘abstract class’’, or an

‘‘interface’’. The IDevice definition, along with appropriate documentation, can be published to the user community,allowing developers to generate their own device drivers that implement the IDevice interface.

Suppose a thermal plate sealer manufacturer wants to write a driver that can be controlled by our software package. They would use inheritance to implement our IDevice interface and then override the methods to produce the desired behavior: class CSealer : public IDevice

{

public:

virtual string GetName() {return ‘‘Sealer’’;}

virtual void Initialize() {InitializeSealer();}

virtual void Run() {RunSealCycle();}

private:

void InitializeSealer();

void RunSealCycle();

};

Here the user has created a new class called CSealer that inherits from the IDevice interface. The public methods,those that are accessible from outside of the class, are the interface methods defined in IDevice. One, GetName, simply returns the name of the device type that this driver controls.The other methods,Initialize() and Run(), call private methods that actually perform the work. Notice how the private

keyword is used to prevent external objects from calling InitializeSealer() and RunSealCycle() directly.When the controlling software executes, polymorphism will be used at runtime to call the GetName, Initialize, and Run methods in the CSealer object, allowing the device defined therein to be controlled.

DoSomeWork()

{

//Get a reference to the device driver we want to use

IDevice&device ? GetDeviceDriver();

//Tell the world what we’re about to do.

cout !! ‘‘Initializing ’’!! device.GetName();

//Initialize the device

device.Initialize();

//Tell the world what we’re about to do.

cout !! ‘‘Running a cycle on ’’ !!

device.GetName();

//Away we go!

device.Run();

}

The code snippet above shows how the IDevice interface can be used to generically control a device. If GetDevice-Driver returns a reference to a CSealer object, then DoSomeWork will control sealers. If GetDeviceDriver returns a reference to a pipettor, then DoSomeWork will control pipettors. Although this is a simplified example, it is straightforward to imagine how the use of interfaces and polymorphism can lead to great economies of scale in controller software development.

Additional interfaces can be generated along the same lines as IDevice. For example, an interface perhaps called ILMS could be used to facilitate communication to and from a LIMS.

The astute reader will notice that the claim that anythird party can develop drivers simply by implementing the IDevice interface is slightly flawed. The problem is that any driver that the user writes, like CSealer, would have to be linked directly to the controlling software’s exec utable to be used. This problem is solved by a number of existing technologies, including Microsoft’s COMor .NET, or by CORBA. All of these technologies allow end users to implement abstract interfaces in standalone components that can be linked at runtime rather than at design time. The details are beyond the scope of this article.

中文翻译:

随着研究实验室更加自动化,实验室管理人员出现的新问题。很少有实验室向一个供应商

购买其所有自动化设备。因此,管理人员被迫花钱,同时为每个采购支持合同训练他们对

各种不同的软件服务包的用户。这表明可伸缩性问题。在理想的世界中,管理者可以使用

相同的软件程序包,到控制系统的任意的大小;从单一文书如移液器或大型机器人系统读者达数百种仪器。如果已存在一个软件包,管理人员只需从单一的供应商在一个平台上的

得到用户培训和能源软件支持。

如果编写自动化软件进行扩展,它还必须灵活。有一个平台,可以控制任何大小的系统是

远没有那么宝贵,如果最终用户不能控制他们需要使用的每个设备类型。同样,如果软件

无法连接到客户的实验室信息管理系统 (LIMS)数据库,是的用处有限。理想的自动化软

件平台因此必须具有开放的体系结构,提供这种连接。

增加的吞吐量和改进的假死的自动化实验室的两个强劲的原因。它不清楚购买高速自动化,如果控制软件不会未最大化的系统的吞吐量。理想的自动化的软件,因此,会使系统中的

冗余设备使用的增加吞吐量。例如,让我们假设板阅读迈出的一步是在给定的方法中最慢

的任务。它将使,如果系统操作员连接到系统的另一个完全相同的读卡器,控制器软件应

该能够使用这两种阅读器,节省一半的总吞吐量时间阅读步骤。虽然资源池提供了一个明

确的吞吐量的优势,它还可以用来使系统更强健。例如,如果两个读者之一是某种错误的

经验,应该足够智能路由到工作读卡器的所有样本不让整个系统离线的情况下控制软件。

现在已被描述的理想自动化控制平台这一体现,让我们看到如何使用 c + + 帮助实现这种理想的可能。

在 1983 年由BjarneStroustrup的贝尔实验室的发展,c + + 推动面向对象编程的概念纳

入主流。术语面向对象的编程语言是熟悉的短语,几十年来使用了。但它又意味着什么呢?又为什么说它相关的自动化软件?实质上,一是面向对象的语言提供了三个重要编程机制:封装、继承和多态性。

封装是维持其自己的方法(或功能)对象的能力和属性(或变量)。例如,引擎对象可能会包含方法启动、停止或加速,随着 'RPM ' 和油压力的属性。进一步,封装,允许一个对象以隐藏对象以外的任何实体的私人数据。程序员可以通过标记的方法或属性为公共

的受保护的或私人控制对象的数据的访问。此访问控制可以帮助走了抽象类的内部工作,

同时使它明显到调用方的方法和属性拟供外部使用。

继承允许一个对象成为另一个对象的超集。例如,一个可以创建的对象称为车辆从继承的

汽车。汽车对象可以访问所有非私有方法和属性的车辆加任何其他方法或属性,使它成为

唯一的汽车。

多态性是一种非常强大的机制,允许各类继承的对象相同的命名的方法调用在他们身上时,表现出不同的行为。例如,让我们假设我们车辆对象包含调用 CountWheels 方法。我们在我们的汽车上调用此方法,当我们学习汽车有四个轮子。然而,当我们称为总线的对象上

调用此方法,我们发现公共汽车已 10 轮。一起封装、继承和多态性帮助促进代码重用,这是基本符合我们要求的软件包可灵活。供应商可以建立全面的跨许多不同的代码模块可

重复使用的对象(串行通信类、状态机类、设备驱动程序类等)的库。一个典型的控

制软件供应商可能有 100 的设备驱动程序。如果这些驱动程序的每个有没有构造块的图形

用户界面 (GUI) 或通信的基础上,它将是一场噩梦。通过构建和维护基础对象的库,供应商将节省无数小时的编程和调试时间。

所有三个信条的面向对象的编程接口的使用都可利用。接口是本质上是一个规范,用于促进可能是由不同的供应商编写的软件组件之间的沟通。接口说,如果你的代码遵循这套规则然后我的软件组件将能够与之联系。在下一节中我们将会看到如何接口使编写设备驱动程序多的简单任务。

一个灵活的自动化平台上,一个优化使用的接口是设备驱动程序。我们想要我们的开放式软件提供的最终用户可以编写自己的设备驱动程序,而不必将我们的源代码的秘密泄露给他们的泛型方法。为此,我们定义简化的 c + + 接口的通用设备,如下所示:

class IDevice

{

public:

virtual string GetName() ? 0; //Returns the name

//of the device

virtual void Initialize() ? 0; //Called to

//initialize the device

virtual void Run() ? 0; // Called to run the device

};

在上面的示例中,铁通类(或对象)称为 IDevice 已经定义。前缀 IDevice 在我代表接口。此类定义三个公共的虚拟方法: GetName,初始化,并运行。虚拟关键字是类的一种使多态性,允许执行的程序运行继承的方法。当虚拟方法声明的后缀的? 0,没有任何基类实现。这种方法被称为纯虚拟。像 IDevice 包含只纯虚函数的类称为抽象类或接口。IDevice 的定义,连同相应的文档,可以发布到用户社区,允许开发人员可以生成自己实现 IDevice 接口的设备驱动程序。

假设热板封口机制造商想要写一个驱动程序,可以通过我们的软件程序包进行控制。他们将使用继承来实现我们的 IDevice 接口,然后重写的方法,以产生所需的行为:

class CSealer : public IDevice

{

public:

virtual string GetName() {return ‘‘Sealer’’;}

virtual void Initialize() {InitializeSealer();}

virtual void Run() {RunSealCycle();}

private:

void InitializeSealer();

void RunSealCycle();

};

在这里已创建一个新的类称为 CSealer 从 IDevice 接口继承的用户。公共方法,那些可以从类以外的访问是 IDevice 中定义的接口方法。一,GetName,只返回此驱动程序控制

的设备类型的名称。其他方法,Initialize() 和 Run(),调用的私有方法,实际上执行的工作。请注意如何 private 关键字用于防止外部对象直接调用 InitializeSealer() 和RunSealCycle()。控制软件执行时,多态性将用于在运行时调用 CSealer 对象,对象允许定义其中所能控制的设备中的 GetName、初始化和运行方法。

{

//Get a reference to the device driver we want to use

IDevice&device ? GetDeviceDriver();

//Tell the world what we’re about to do.

cout!! ‘‘Initializing ’’!! device.GetName();

//Initialize the device

device.Initialize();

//Tell the world what we’re about to do.

cout!! ‘‘Running a cycle on ’’ !!

device.GetName();

//Away we go!

device.Run();

}

上面的代码段显示了如何 IDevice 接口可用于一般控制设备。如果 GetDevice 驱动程序返回 CSealer 对象的引用,DoSomeWork 将控制密封件。如果 GetDeviceDriver 返回的引用到移液器,DoSomeWork 将控制移液器。虽然这是规模的一个简化的例子,是规模的简单直观,想象一下如何使用接口和多态性导致伟大控制器软件开发中经济。

沿 IDevice 的一样,可以生成附加接口。例如,也许称为专题讨论会的接口可用于促进通信和 LIMS。

聪明的读者会注意到任何第三方可以开发驱动程序,只需通过实现 IDevice 接口的索赔略有瑕疵。问题是任何驱动程序用户写道,像 CSealer,将不得不直接挂钩,用于控制软件可执行文件。通过大量的现有技术,包括微软的 COM 解决此问题或。NET,或 CORBA。所有这些技术使最终用户可以在运行时(而不是在设计时链接的独立组件中实现抽象接口。细节会超出了本文的范围。

指导教师审阅意见:

指导教师:

年月日

毕业论文外文文献翻译-数据库管理系统的介绍

数据库管理系统的介绍 Raghu Ramakrishnan1 数据库(database,有时拼作data base)又称为电子数据库,是专门组织起来的一组数据或信息,其目的是为了便于计算机快速查询及检索。数据库的结构是专门设计的,在各种数据处理操作命令的支持下,可以简化数据的存储,检索,修改和删除。数据库可以存储在磁盘,磁带,光盘或其他辅助存储设备上。 数据库由一个或一套文件组成,其中的信息可以分解为记录,每一记录又包含一个或多个字段(或称为域)。字段是数据存取的基本单位。数据库用于描述实体,其中的一个字段通常表示与实体的某一属性相关的信息。通过关键字以及各种分类(排序)命令,用户可以对多条记录的字段进行查询,重新整理,分组或选择,以实体对某一类数据的检索,也可以生成报表。 所有数据库(最简单的除外)中都有复杂的数据关系及其链接。处理与创建,访问以及维护数据库记录有关的复杂任务的系统软件包叫做数据库管理系统(DBMS)。DBMS软件包中的程序在数据库与其用户间建立接口。(这些用户可以是应用程序员,管理员及其他需要信息的人员和各种操作系统程序)。 DBMS可组织,处理和表示从数据库中选出的数据元。该功能使决策者能搜索,探查和查询数据库的内容,从而对在正规报告中没有的,不再出现的且无法预料的问题做出回答。这些问题最初可能是模糊的并且(或者)是定义不恰当的,但是人们可以浏览数据库直到获得所需的信息。简言之,DBMS将“管理”存储的数据项,并从公共数据库中汇集所需的数据项以回答非程序员的询问。 DBMS由3个主要部分组成:(1)存储子系统,用来存储和检索文件中的数据;(2)建模和操作子系统,提供组织数据以及添加,删除,维护,更新数据的方法;(3)用户和DBMS之间的接口。在提高数据库管理系统的价值和有效性方面正在展现以下一些重要发展趋势; 1.管理人员需要最新的信息以做出有效的决策。 2.客户需要越来越复杂的信息服务以及更多的有关其订单,发票和账号的当前信息。 3.用户发现他们可以使用传统的程序设计语言,在很短的一段时间内用数据1Database Management Systems( 3th Edition ),Wiley ,2004, 5-12

财务管理外文文献及翻译--跨国公司财务

附录A:外文文献(译文) 跨国公司财务 有重大国外经营业务的公司经常被称作跨国公司或多国企业。跨国公司必须考虑许多并不会对纯粹的国内企业产生直接影响的财务因素,其中包括外币汇率、各国不同的利率、国外经营所用的复杂会计方法、外国税率和外国政府的干涉等。 公司财务的基本原理仍然适用于跨国企业。与国内企业一样,它们进行的投资项目也必须为股东提供比成本更多的收益,也必须进行财务安排,用尽可能低的成本进行融资。净现值法则同时适用于国内经营和国外经营,但是,国外经营应用净现值法则时通常更加复杂。也许跨国财务中最复杂的是外汇问题。当跨国公司进行资本预算决策或融资决策时,外汇市场能为其提供信息和机会。外汇、利率和通货膨胀三者的相互关系构成了汇率基本理论。即:购买力平价理论、利率平价理论和预测理论。 跨国公司融资决策通常要在以下三种基本方法中加以选择,我们将讨论每种方法的优缺点。 (1) 把现金由国内输出用于国外经营业务; (2) 向投资所在国借贷; (3) 向第三国借贷。 1专业术语 学习财务的学生通常会听到一个单词总在耳边嗡嗡作响:全球化( g l o b a l i z a t i o n )。学习资金市场的全球化必须首先掌握一些新的术语,以下便是在跨国财务中,还有本章中最常用到的一些术语: (1) 美国存托证(American Depository Receipt,ADR)。它是在美国发行的一种代表外国股权的证券,它使得外国股票可在美国上市交易。外国公司运用以美元发行的ADR,来扩大潜在美国投资者群体。ADR以两种形式代表大约690家外国公司:一是在某个交易所挂牌交易的ADR,称为公司保荐形式;另一种是非保荐形式,这些ADR通常由投资银行持有并为其做市。这两种形式的ADR均可由个人投资和买卖,但报纸每天只报告保荐形式

零售企业营销策略中英文对照外文翻译文献

零售企业营销策略中英文对照外文翻译文献(文档含英文原文和中文翻译)

译文: 零售企业的营销策略 Philip Kotlor 今天的零售商为了招徕和挽留顾客,急欲寻找新的营销策略。过去,他们挽留顾客的方法是销售特别的或独特的花色品种,提供比竞争对手更多更好的服务提供商店信用卡是顾客能赊购商品。可是,现在这一切都已变得面目全非了。现在,诸如卡尔文·克连,依佐和李维等全国性品牌,不仅在大多数百货公司及其专营店可以看到,并且也可以在大型综合商场和折扣商店可以买到。全国性品牌的生产商为全力扩大销售量,它们将贴有品牌的商品到处销售。结果是零售商店的面貌越来越相似。 在服务项目上的分工差异在逐渐缩小。许多百货公司削减了服务项目,而许多折扣商店却增加了服务项目。顾客变成了精明的采购员,对价格更加敏感。他们看不出有什么道理要为相同的品牌付出更多的钱,特别是当服务的差别不大或微不足道时。由于银行信用卡越来越被所有的商家接受,他们觉得不必从每个商店赊购商品。 百货商店面对着日益增加的价格的折扣店和专业商店的竞争,准备东山再起。历史上居于市中心的许多商店在郊区购物中心开设分店,那里有宽敞的停车场,购买者来自人口增长较快并且有较高收入的地区。其他一些则对其商店形式进行改变,有些则试用邮购盒电话订货的方法。超级市场面对的是超级商店的竞争,它们开始扩大店面,经营大量的品种繁多的商品和提高设备等级,超级市场还增加了它们的促销预算,大量转向私人品牌,从而增加盈利。 现在,我们讨论零售商在目标市场、产品品种和采办、服务以及商店气氛、定价、促销和销售地点等方面的营销策略。 一、目标市场 零售商最重要的决策时确定目标市场。当确定目标市场并且勾勒出轮廓时,零售商才能对产品分配、商店装饰、广告词和广告媒体、价格水平等作出一致的决定。如沃尔玛的目标市场相当明确:

管理信息系统外文翻译

管理信息系统外文翻译-标准化文件发布号:(9456-EUATWK-MWUB-WUNN-INNUL-DDQTY-KII

英文文献翻译 二〇年月日

科技文章摘译 Definition of a Management Information System There is no consensus of the definition of the term "management information system". Some writers prefer alternative terminology such as "information processing system", "information and decision system", "organizational information system", or simply "information system" to refer to the computer-based information processing system which supports the operations, management, and decision-making functions of an organization. This text uses “MIS” because it is descriptive and generally understood; it also frequently uses “information system” instead of “MIS” to refer to an organizational information system. A definition of a management information system, as the term is generally understood, is an integrated, user-machine system for providing information to support operations, management, and decision-making functions in an organization. The system utilizes computer hardware and software; manual procedures; models for analysis planning, control and decision making; and a database. The fact that it is an integrated system does not mean that it is a single, monolithic structure; rather, it means that the parts fit into an overall design. The elements of the definition are highlighted below. 1 Computer-based user-machine system Conceptually, management information can exist without computer, but it is the power of the computer which makes MIS feasible. The question is not whether computers should be used in management information system, but the extent to which information use should be computerized. The concept of a user-machine system implies that some tasks are best performed by humans, while others are best done by machine. The user of an MIS is any person responsible for entering input data, instructing the system, or utilizing the information output of the system. For many problems, the user and the computer form a combined system with results obtained through a set of interactions between the computer and the user. User-machine interaction is facilitated by operation in which the user’s input-output device (usually a visual display terminal) is connected to the computer. The computer can be a personal computer serving only one user or a large computer that

财务管理外文翻译

财务风险管理 尽管近年来金融风险大大增加,但风险和风险管理不是当代的主要问题。全球市场越来越多的问题是,风险可能来自几千英里以外的与这些事件无关的国外市场。意味着需要的信息可以在瞬间得到,而其后的市场反应,很快就发生了。经济气候和市场可能会快速影响外汇汇率变化、利率及大宗商品价格,交易对手会迅速成为一个问题。因此,重要的一点是要确保金融风险是可以被识别并且管理得当的。准备是风险管理工作的一个关键组成部分。 什么是风险? 风险给机会提供了基础。风险和暴露的条款让它们在含义上有了细微的差别。风险是指有损失的可能性,而暴露是可能的损失,尽管他们通常可以互换。风险起因是由于暴露。金融市场的暴露影响大多数机构,包括直接或间接的影响。当一个组织的金融市场暴露,有损失的可能性,但也是一个获利或利润的机会。金融市场的暴露可以提供战略性或竞争性的利益。 风险损失的可能性事件来自如市场价格的变化。事件发生的可能性很小,但这可能导致损失率很高,特别麻烦,因为他们往往比预想的要严重得多。换句话说,可能就是变异的风险回报。由于它并不总是可能的,或者能满意地把风险消除,在决定如何管理它中了解它是很重要的一步。识别暴露和风险形式的基础需要相应的财务风险管理策略。 财务风险是如何产生的呢? 无数金融性质的交易包括销售和采购,投资和贷款,以及其他各种业务活动,产生了财务风险。它可以出现在合法的交易中,新项目中,兼并和收购中,债务融资中,能源部分的成本中,或通过管理的活动,利益相关者,竞争者,外国政府,或天气出现。当金融的价格变化很大,它可以增加成本,降低财政收入,或影响其他有不利影响的盈利能力的组织。金融波动可能使人们难以规划和预算商品和服务的价格,并分配资金。 有三种金融风险的主要来源: 1、金融风险起因于组织所暴露出来的市场价格的变化,如利率、汇率、和大宗商品价格。 2、引起金融风险的行为有与其他组织的交易如供应商、客户,和对方在金融衍生产品中的交易。 3、由于内部行动或失败的组织,特别是人、过程和系统所造成的金融风险。 什么是财务风险管理? 财务风险管理是用来处理金融市场中不确定的事情的。它涉及到一个组织所面临的评估和组织的发展战略、内部管理的优先事项和当政策一致时的财务风险。企业积极应对金融风险可以使企业成为一个具有竞争优势的组织。它还确保管理,业务人员,利益相关者,董事会董事在对风险的关键问题达成协议。金融风险管理组织就必须作出那些不被接受的有关风险的决定。那些被动不采取行动的战略是在默认情况下接受所有的风险,组织使用各种策略和产品来管理金融风险。重要的是要了解这些产品和战略方面,通过工作来减少该组织内的风险承受能力和目标范围内的风险。 风险管理的策略往往涉及衍生工具。在金融机构和有组织的交易所,衍生物广泛地进行

市场营销_外文翻译_外文文献_英文文献_顾客满意策略与顾客满意

顾客满意策略与顾客满意营销 原文来源:《Marketing Customer Satisfaction 》自20世纪八十年代末以来, 顾客满意战略已日益成为各国企业占有更多的顾客份额, 获得竞争优势的整体经营手段。 一、顾客满意策略是现代企业获得顾客“货币选票”的法宝随着时代的变迁, 社会物质财富的极大充裕, 顾客中的主体———消费者的需求也先后跨越了物质缺乏的时代、追求数量的时代、追求品质的时代, 到了20世纪八十年代末进入了情感消费时代。在我国, 随着经济的高速发展,我们也已迅速跨越了物质缺乏时代、追求数量的时代乃至追求品质的时代, 到今天也逐步迈进情感消费时代。在情感消费时代, 各企业的同类产品早已达到同时、同质、同能、同价, 消费者追求的已不再是质量、功能和价格, 而是舒适、便利、安全、安心、速度、跃动、环保、清洁、愉快、有趣等,消费者日益关注的是产品能否为自己的生活带来活力、充实、舒适、美感和精神文化品位, 以及超越消费者期望值的售前、售中、售后服务和咨询。也就是说, 今天人们所追求的是具有“心的满足感和充实感”的商品, 是高附加值的商品和服务,追求价值观和意识多元化、个性化和无形的满足感的时代已经来临。 与消费者价值追求变化相适应的企业间的竞争, 也由产品竞争、价格竞争、技术竞争、广告竞争、品牌竞争发展到现今的形象竞争、信誉竞争、文化竞争和服务竞争, 即顾客满意竞争。这种竞争是企业在广角度、宽领域的时空范围内展开的高层次、体现综合实力的竞争。它包括组织创新力、技术创新力、管理创新力、产业预见力、产品研发力、员工向心力、服务顾客力、顾客亲和力、同行认同力、社会贡献力、公关传播沟通力、企业文化推动力、环境适应力等等。这些综合形象力和如何合成综合持久的竞争力, 这就是CSft略所要解决的问题。CS寸代,企业不再以“自己为中心”,而是以“顾客为中心”;“顾客为尊”、“顾客满意”不再是流于形式的口号, 而是以实实在在的行动为基础的企业经营的一门新哲学。企业不再以质量达标, 自己满意为经营理念, 而是以顾客满意, 赢得顾客高忠诚度为经营理念。企业经营策略的焦点不再以争取或保持市场占有率为主, 而是以争取顾客满意为经营理念。因此, 营销策略的重心不再放在竞争对手身上而是放在顾客身上, 放在顾客现实的、潜在的需求上。当企业提供的产品和服务达到了顾客事先的期望值, 顾客就基本满意;如果远远超越顾客的期望值, 且远远高于其他同行, 顾客才真正满意;如果企业能不断地或长久地令顾客满意, 顾客就会忠诚。忠诚的顾客不仅会经常性地重复购买, 还会购买企业其它相关的产品或服务;忠诚的顾客不仅会积极向别人推荐他所买的产品, 而且对企业竞争者的促销活动具有免疫能力一个不满意的顾客会将不满意告诉16-20个人, 而每一个被告知者会再传播给12-15个人。这样, 一个不满意者会影响到二、三百人。在互联网普及的今天, 其影响则更大。据美国汽车业的调查, 一个满意者会引发8笔潜在的生意, 其中至少有一笔会成交。而另一项调查表明, 企业每增加5%的忠诚顾客, 利润就会增长25%-95%。一个企业的80%的利润来自20%的忠诚顾客;而获取一个新顾客的成本是维持一个老顾客成本的6倍。所以,美国著名学者唐?佩 珀斯指出: 决定一个企业成功与否的关键不是市场份额, 而是在于顾客份额。 于是, 企业纷纷通过广泛细致的市场调研、与消费者直接接触、顾客信息反馈等方式来了解顾客在各方面的现实需求和潜在需求。依靠对企业满意忠诚的销售、服务人员, 定期、定量地对顾客满意度进行综合测定, 以便准确地把握企业经营中与“顾客满意” 目标的差距及其重点领域, 从而进一步改善企业的经营活动。依靠高亲和力的企业文化、高效率的人文管理和全员共同努力, 不断地向顾客提供高附加值的产品, 高水准的亲情般的服

外文文献及其翻译电子政务信息

外文文献及其翻译电子政务信息 1.政府信息化的含义? 政府信息化是指:政府有效利用现代信息和通信技术,通过不同的信息服务设施,对政府的业务流程、组织结构、人员素质等诸方面进行优化、改造的过程。 2.广义和狭义的电子政务的定义? 广义的电子政务是指:运用信息技术和通信技术实现党委、人大、政协、政府、司法机关、军队系统和企事业单位的行政管理活动。(电子党务、电子人大、电子政协) 狭义的电子政务是指:政府在其管理和服务职能中运用现代信息和通信技术,实现政府组织结构和工作流程的重组优化,超越时间、空间和部门分隔的制约,全方位的向社会提供优质规范、透明的服务,是政府管理手段的变革。 3.电子政务的组成部分? ①:政府部门内部办公职能的电子化和网络化; ②:政府职能部门之间通过计算机网络实现有权限的实时互通的信息共享; ③:政府部门通过网络与公众和企业间开展双向的信息交流与策; 4.理解电子政务的发展动力? ①:信息技术的快速发展; ②:政府自身改革与发展的需要; ③:信息化、民主化的社会需求的推动; 5.电子政务的应用模式?

模式有:1.政府对公务员的电子政务(G2E); 2.政府间的电子政务(G2G); 3.政府对企业的电子政务(G2B); 4.政府对公众的电子政务(G2C); 6.电子政务的功能? ①:提高工作效率,降低办公成本; ②:加快部门整合,堵塞监管漏洞; ③:提高服务水平,便于公众的监督; ④:带动社会信息化发展; 7.我国电子政务发展存在的主要问题? ①:政府公务员与社会公众对电子政务的认识不足; ②:电子政务发展缺乏整体规划和统一性标准; ③:电子政务管理体制改革远未到位; ④:电子政务整体应用水平还较低; ⑤:政府公务员的素质有待提高; ⑥:电子政务立法滞后; ⑦:对电子政务安全问题缺乏正确认识; 8.政府创新的含义和内容? 含义:是指各级政府为适应公共管理与行政环境的需要,与时俱进的转变观念与职能,探索新的行政方法与途径,形成新的组织结

外文文献翻译---中小型企业财务管理中存在的问题及其对策

广东工业大学华立学院 本科毕业设计(论文) 外文参考文献译文及原文 系部会计学系 专业会计学 年级 08级 班级名称 2008级会计(7)班 学号 14010807030 学生姓名吴智聪 2012年 2 月 9 日

目录 1. 外文译文 (1) 2. 外文原文 (5)

中小型企业财务管理中存在的问题及其对策中小型企业在中国经济发展中发挥着重要的作用。统计数据表明,在工商行政管理局登记在册的企业中,中小型企业占了99%,产值和利润分别占总额的60%和40%。此外,中小型企业所提供了75%的城镇就业机会。可见其为中国的稳定和经济繁荣作出了重要贡献。 虽然中小型企业在国民经济中占有重要地位,对中国经济发展与社会稳定具有很重大的意义。但是,中小型企业发展的主要障碍是缺乏有效的财务管理。本文分析了当前中小型企业财务管理中存在的问题,并就改善中小型企业财务管理提出了相应对策。 1.1 中小型企业的财务管理现状 自从21世纪以来,中国的中小型企业的蓬勃发展,在经济增长和社会发展中发挥着非常重要的作用。据财政部统计数据,直到2005年底,中小型企业总数已超过1000万,占中国企业总数的99%。中小型企业提供了75%的城镇就业机会,工业企业的总产值、销售收入、实现的利得税和出口额分别占总数的60%、57%、40%和60%,上缴的税收已经接近了国家税收总额的一半。中小型企业承载着超过75%的技术革新和超过65%的专利发明,他们以其灵活的经营机制和积极创新活动,为经济发展提供了增长的最根本动力。近年来,中国中小企业的消亡率将近70%,大约有30%的中小型企业存在赤字。中小型企业应该如何建立现代企业制度,加强财务管理,并科学地进行资本运作以谋求自身的健康发展,是我们密切关注的一个问题。 1.2 中小型企业财务管理中存在的问题 ⑴财务管理理念滞后,而且方法保守 中小型企业由于管理者自身知识水平的限制,使得企业的管理能力和管理质量较低。他们的管理思想已经不适合现代企业,并且大多数企业领导人缺乏财务管理的理论和方法,忽视了企业资本运作的作用。管理者既不重视财务事,也不参与企业政策的制定和相关管理活动。因此,财务管理无法发挥其应有职能,从而导致企业缺乏现代财务管理的理念,也无从去培训合格的财务人员。 ⑵财务管理工作基础薄弱,缺乏财务监督

最新财务管理外文文献

景德镇陶瓷学院科技艺术学院法商系 外文文献 学号: 200930333145 姓名:留芳名 院(系):科技艺术学院法商系 专业:财务管理 指导老师:鄢涛 二0一三年五月

Journal of Economic Behavior and Organization Abstract: The primary goal of this study is to provide a theoretical model that shows explicit solutions for equilibrium prices and derives the equilibrium required return for the firm’s stock price. In other words, this theoretical study provides a direct link between accounting information, related to the firm’s reports, and the cost of capital within an equilibrium setting. Accounting information is judged to be of high value because it affects the market’s ability to direct firms’ capital allocation choices. The findings showed that an increase in ex-pected cash flows, coming from improvements in the quality of accounting information, leads to a reduction in the firm’s cost of capital. Keywords:theoretical Model, Accounting Information, Cost of Capital, Stock Returns 1. Introduction and Literature One of the key decisions a firm has to reach is the fundamental determination of its cost of capital. This has asubstantial impact on both the composition of the firm’s operations and its profitability, since shocks onto an ticipated cash flows are reflected in the firm’s cost of capital. Many studies have spent tons of ink coming up with proposals leading to a lower cost of capital. [1] argue that it is the environment of a firm, which is described by many parameters, such as accounting s tandards, market microstructure and information coming from the firm’s reports, that really influences the accounting type of in- formation that determines the firm’s cost of capital and, consequently, its stock price. Accounting information reduces information asymmetries, which lead to adverse selection in transaction ac-tivities in the stock market ([2]) as well as to enhanced liquidity, which lowers the discounts at which firms must issue capital ([3]). [4] argue that accounting information tends to compensate shareholders through stock returns by reducing their exposure to investment risks. Research in asset-pricing models has not, so far, modelled explicitly the accounting information environment in determining the firm’s required return, though [5] a rgue that more

差异化营销策略外文文献翻译

文献出处: Dalman, M. Deniz, and Junhong Min. "Marketing Strategy for Unusual Brand Differentiation: Trivial Attribute Effect." International Journal of Marketing Studies 6.5 (2014): 63-72. 原文 Marketing Strategy for Unusual Brand Differentiation: Trivial Attribute Effect Dalman, M. Deniz & Junhong Min Abstract This research investigates that brand differentiation creating superior values can be achieved not only by adding meaningful attributes but also meaningless attributes, which is called "trivial attribute effect." Two studies provided empirical evidences as following; first, trivial attribute effect creates a strong brand differentiation even after subjects realize that trivial attribute has no value. Second, trivial attribute effect is more pronounced in hedonic service category compared to the utilitarian category. Last, the amount of willingness to pay is higher when trivial attribute is presented and evaluated in joint evaluation mode than separate evaluation mode. Finally, we conclude with discussion and provide suggestions for further research. Keywords: brand differentiation, evaluation mode, service industry, trivial attribute Introduction Problem Definition Perhaps the most important factor for new product success is to create the meaningful brand differentiation that provides customers with superior values beyond what the competitors can offer in the same industry (Porter, 1985). Not surprisingly, more than 50 percent of annual sales in consumer product industries including automobiles, biotechnology, computer software, and pharmaceuticals are attributed to such meaningful brand differentiation by including new or noble attributes (Schilling &Hill, 1998). However, the brand differentiation that increases consumer preference is not only by introducing meaningful attributes but also meaningless attributes. For

外文翻译-----学生信息管理系统的设计与发展

英文译文 学生信息管理系统的设计与发展 随着信息技术的日新月异,各种管理系统的相继出现,让日常生活变的更加具有条理化, 尽可能的合理的运用网络资源可以大大的减少人工管理上带来的不 便及时间的浪费. 二十一世纪现代化程度的不断加速,科学文化水平的不断提高,学生数量的急剧增长,势必增加了管理学生信息带来的压力,人工检索的低效完全不符合整个社会的需要.学生信息管理系统是信息管理系统中的一种,目前信息技术不断的发展,网络技术已经广泛的应用于我们身边的各行各业,有了网络技术的发展,各高校都利用计算机来管理办学,以前学校靠手工操作的一切繁琐事情都得到了快速且高效率的解决,特别是学生成绩管理系统在学校中起到了很大的作用,对于学生和教师来说都能够更方便、快捷、准确地了解和管理各方面信息。 采用人工管理庞大的数据库是一项繁重枯燥的工作,无论是数据录入,查询还是修改都存在着工作量大,效率低下,周期长的缺点。而计算机管理系统的引进将给人工管理数据库的工作带来一次彻底的变革。学校由于学生众多,学生数据信息库庞大,使信息的管理成为了一个复杂繁琐的工作。本系统针对学校,经过实际的需求分析,采用功能强大的VB6.0作为开发工具来开发学生信息管理系统。整个系统从符合操作简便,界面美观、灵活、实用的要求出发,完成学生信息管理的全过程,包括系统管理、基本信息管理、学习管理、奖惩管理和打印报表等功能。经过使用证明,本文所设计的学生信息管理系统可以满足学校对学生信息管理方面的需要。论文主要介绍了本课题的开发背景,所要完成的功能和开发的过程。重点的说明了系统设计的重点、开发设计思想、难点技术和解决方案。学生管理系统的产生大大减少了人力上的不便,让整个学生数据管理更加科学合理。本系统最有特色的地方就是后台数据库对学生信息的统一管理。该系统主要分为系统管理,学生专业管理,学生档案管理,学费管理,课程管理,成绩管理和打印报表。系统的界面是运用vb软件制作的,以上几个模块都是运用vb 控件绑定的方法来实现对后台数据库的连接,后台数据库大概分为以下几个表:专业信息表,收费类别表,学生职务表,学生信息表,学生政治面貌表,用户登入表。采用Client/Server结构进行设计,本系统是在由一台数据服务器和若干台

会计信息质量外文文献及翻译

会计信息质量在投资中的决策作用对私人信息和监测的影响 安妮比蒂,美国俄亥俄州立大学 瓦特史考特廖,多伦多大学 约瑟夫韦伯,美国麻省理工学院 1简介 管理者与外部资本的供应商信息是不对称的在这种情况下企业是如何影响金融资本 的投资的呢?越来越多的证据表明,会计质量越好,越可以减少信息的不对称和对融资成本的约束。与此相一致的可能性是,减少了具有更高敏感性的会计质量的公司的投资对内部产生的现金流量。威尔第和希拉里发现,对企业投资和与投资相关的会计质量容易不足,是容易引发过度投资的原因。 当投资效率低下时,会计的质量重要性可以减轻外部资本的影响,供应商有可能获得私人信息或可直接监测管理人员。通过访问个人信息与控制管理行为,外部资本的供应商可以直接影响企业的投资,降低了会计质量的重要性。符合这个想法的还有比德尔和希拉里的比较会计对不同国家的投资质量效益的影响。他们发现,会计品质的影响在于美国投资效益,而不是在日本。他们认为,一个可能的解释是不同的是债务和股权的美国版本的资本结构混合了SUS的日本企业。 我们研究如何通过会计质量灵敏度的重要性来延长不同资金来源对企业的投资现金 流量的不同影响。直接测试如何影响不同的融资来源会计,通过最近获得了债务融资的公司来投资敏感性现金流的质量的效果,债务融资的比较说明了对那些不能够通过他们的能力获得融资的没有影响。为了缓解这一问题,我们限制我们的样本公司有所有最近获得的债务融资和利用访问的差异信息和监测通过公共私人债务获得连续贷款的建议。我们承认,投资内部现金流敏感性可能较低获得债务融资的可能性。然而,这种可能性偏见拒绝了我们的假设。 具体来说,我们确定的数据样本证券公司有1163个采样公司(议会),通过发行资本公共债务或银团债务。我们限制我们的样本公司最近获得的债务融资持有该公司不断融资与借款。然而,在样本最近获得的债务融资的公司,也有可能是信号,在资本提供进入私人信息差异和约束他们放在管理中的行为。相关理论意味着减少公共债务持有人获取私人信息,因而减少借款有效的监测。在这些参数的基础上,我们预测,会计质量应该有一

外文文献(市场营销策略)

Marketing Strategy Market Segmentation and Target Strategy A market consists of people or organizations with wants,money to spend,and the willingness to spend it.However,within most markets the buyer' needs are not identical.Therefore,a single marketing program starts with identifying the differences that exist within a market,a process called market segmentation, and deciding which segments will be pursued ads target markets. Marketing segmentation enables a company to make more efficient use of its marketing resources.Also,it allows a small company to compete effectively by concentrating on one or two segments.The apparent drawback of market segmentation is that it will result in higher production and marketing costs than a one-product,mass-market strategy.However, if the market is correctly segmented,the better fit with customers' needs will actually result in greater efficiency. The three alternative strategies for selecting a target market are market aggregation,single segment,and multiple segment.Market-aggregation strategy involves using one marketing mix to reach a mass,undifferentiated market.With a single-segment strategy, a company still uses only one marketing mix,but it is directed at only one segment of the total market.A multiple-segment strategy entails selecting two or more segments and developing a separate marketing mix to reach segment. Positioning the Product Management's ability to bring attention to a product and to differentiate it in a favorable way from similar products goes a long way toward determining that product's revenues.Thus management needs to engage in positioning,which means developing the image that a product projects in relation to competitive products and to the firm's other products. Marketing executives can choose from a variety of positioning strategies.Sometimes they decide to use more than one for a particular product.Here are several major positioning strategies:

信息系统和数据库中英文对照外文翻译文献

中英文对照翻译 信息系统开发和数据库开发 在许多组织中,数据库开发是从企业数据建模开始的,企业数据建模确定了组织数据库的范围和一般内容。这一步骤通常发生在一个组织进行信息系统规划的过程中,它的目的是为组织数据创建一个整体的描述或解释,而不是设计一个特定的数据库。一个特定的数据库为一个或多个信息系统提供数据,而企业数据模型(可能包含许多数据库)描述了由组织维护的数据的范围。在企业数据建模时,你审查当前的系统,分析需要支持的业务领域的本质,描述需要进一步抽象的数据,并且规划一个或多个数据库开发项目。图1显示松谷家具公司的企业数据模型的一个部分。 1.1 信息系统体系结构 如图1所示,高级的数据模型仅仅是总体信息系统体系结构(ISA)一个部分或一个组织信息系统的蓝图。在信息系统规划期间,你可以建立一个企业数据模型作为整个信息系统体系结构的一部分。根据Zachman(1987)、Sowa和Zachman (1992)的观点,一个信息系统体系结构由以下6个关键部分组成: 数据(如图1所示,但是也有其他的表示方法)。 操纵数据的处理(着系可以用数据流图、带方法的对象模型或者其他符号表示)。 网络,它在组织内并在组织与它的主要业务伙伴之间传输数据(它可以通过网络连接和拓扑图来显示)。 人,人执行处理并且是数据和信息的来源和接收者(人在过程模型中显示为数据的发送者和接收者)。 执行过程的事件和时间点(它们可以用状态转换图和其他的方式来显示)。 事件的原因和数据处理的规则(经常以文本形式显示,但是也存在一些用于规划的图表工具,如决策表)。 1.2 信息工程 信息系统的规划者按照信息系统规划的特定方法开发出信息系统的体系结构。信息工程是一种正式的和流行的方法。信息工程是一种面向数据的创建和维护信息系统的方法。因为信息工程是面向数据的,所以当你开始理解数据库是怎样被标识和定义时,信息工程的一种简洁的解释是非常有帮助的。信息工程遵循自顶向下规划的方法,其中,特定的信息系统从对信息需求的广泛理解中推导出来(例如,我们需要关于顾客、产品、供应商、销售员和加工中心的数据),而不是合并许多详尽的信息请求(如一个订单输入屏幕或按照地域报告的销售汇总)。自顶向下规划可使开发人员更全面地规划信息系统,提供一种考虑系统组件集成的方法,增进对信息系统与业务目标的关系的理解,加深对信息系统在整个组织中的影响的理解。 信息工程包括四个步骤:规划、分析、设计和实现。信息工程的规划阶段产

相关文档
最新文档