听力原文:Other aspects of operational risk include major failure of information technology systems or events such as major fires or other disasters.(6)A.Information technology system can cause operational risk.B.A major fire can be a cause of operational risk

题目

听力原文:Other aspects of operational risk include major failure of information technology systems or events such as major fires or other disasters.

(6)

A.Information technology system can cause operational risk.

B.A major fire can be a cause of operational risk.

C.The most important types of operational risk involve breakdowns in internal controls and corporate governance.

D.Other aspects of operational risk include firing its dealers, lending officers or other staff exceeding their authority or conducting business in an unethical or risky manner.


相似考题
更多“听力原文:Other aspects of operational risk include major failure of information technology ”相关问题
  • 第1题:

    听力原文:A bank or insurance company issues a document to guarantee that exporter will supply the goods or services as the required standard.

    (4)

    A.A bank or insurance company issues an advance payment bond.

    B.A bank or insurance company issues a tender bond.

    C.A bank or insurance company issues a maintenance bond.

    D.A bank or insurance company issues a performance bond.


    正确答案:D
    解析:单句的意思为“银行和保险公司发行单据以保证出口商按照规定的标准提供货物和服务。”performance bond履约保函。advance payment bond预付款保函。tender bond投标保证金。maintenance bond保修协议。

  • 第2题:

    听力原文:The tax return does not show accrued income.

    (8)

    A.The tax return is not shown in the income.

    B.The income is not accurate in taxation.

    C.The tax should be returned according to the income.

    D.The tax return is not in accordance with the income that should be taxed.


    正确答案:D
    解析:单句意思为“纳税申报单不能反映应计收入”,D项意思与之接近。

  • 第3题:

    2002年急性透析质量建议组将急性肾损伤分为

    A、危险(risk)

    B、损伤(injury)

    C、衰竭(failure)

    D、丧失(loss)

    E、终末期肾病(ESRD)


    参考答案:ABCDE

  • 第4题:

    听力原文:The rate of interest on savings accounts is usually a little lower than that on deposit accounts.

    (5)

    A.There is a higher rate of interest on deposit account.

    B.There is a higher rate of interest on savings account.

    C.The rate of interest on deposit accounts is always much higher than that on savings accounts.

    D.The rate of interest on deposit accounts is usually much lower than that on savings accounts.


    正确答案:A
    解析:单句意思为“储蓄账户利率通常比定期存款利率低”。

  • 第5题:

    听力原文:From an early date bankers have made a charge for the services which they provide for their customers.

    (9)

    A.From an early date the banker have charged a commission for their services.

    B.From an early date the banker has an obligation to serve the customers.

    C.From an early date the customers have charged a commission.

    D.From an early date the customer has an obligation to serve the banker.


    正确答案:A
    解析:单句意思为“银行在一开始就会向其提供服务的客户收取费用”。make a charge和charge a commission都是“收费”的意思。

  • 第6题:

    听力原文:[解析] 有以下程序:includeusing namespace Std;Class R{public:R(int r1,i

    听力原文:[解析]

    有以下程序: #include<iostream> using namespace Std; Class R {public: R(int r1,int r2) {R1=r1; R2=r2;} void print(); void print()const; private: int R1,R2;}; roid R::print() {cout<<R1<<“,”<<R2<<endl;} void R::print()con

    A.5,4

    B.20,52

    C.0,0

    D.4,5


    正确答案:B
    解析: 使用const关键字修饰的对象成为常对象,题中对象b被声明为类R的常对象。使用const关键宇说明的成员函数称为常成员函数,类R中用const重载了函数print()。在使用常对象和常成员函数时应注意的是:const是函数类型的一个组成部分,因此在常成员函数部分也要带const关键宇;常成员函数不能更新对象的数据成员,也不能调用该类中没有用const修饰的成员函数;如果将一个对象说明为常对象,则通过该常对象只能调用它的常成员函数,不能调用其他的成员函数;const关键字可以参与区分重载函数。