Which of the following is least likely to be used in explaining to a team member why you consider his/her performance substandard?A Project office memoB counseling sessionC project team meetingD formal letterE individual conversation

题目

Which of the following is least likely to be used in explaining to a team member why you consider his/her performance substandard?

A Project office memo

B counseling session

C project team meeting

D formal letter

E individual conversation


相似考题
参考答案和解析
正确答案:C
更多“Which of the following is least likely to be used in explaining to a team member why you c ”相关问题
  • 第1题:

    You’re going to have a quiz ( )by another two in the ( )month.

    A. followed,followed

    B. followed,following

    C. following,followed

    D. following,following


    参考答案:B

  • 第2题:

    使用VC6打开考生文件夹下的工程proj1。此工程包含一个源程序文件mainl.cpp,但该程序运行有问题。请改正主函数中的错误,使程序的输出结果是:

    member = 0

    member = 5

    member = 10

    源程序文件 mainl.cpp 清单如下:

    //mainl.cpp

    include <iostream>

    using namespace std;

    class MyClass

    {

    public:

    MyClass(int i)

    {

    member=i;

    }

    void SetMember(int m)

    {

    member=m;

    }

    int GetMember()const

    {

    return member;

    }

    void Print() const

    {

    cout<<"member="<<member<<end1;

    }

    private:

    int member;

    };

    int main()

    {

    /***************found***********/

    MyClass obj1;

    obj1. Print();

    MyClass obj2(3);

    /***************found***********/

    obj1.member = 5;

    /***************found***********/

    MyClass. SetMember(10);

    obj1. Print();

    obj2. Print();

    return 0;

    }


    正确答案:修改后的主函数应该为: int main() { MyClass obj1(0); obj1.Print(); MyClass obj2(3); obj1.SetMember(5); obj2.SetMember(10); obj1.Print(); obj2.Print(); return 0; }
    修改后的主函数应该为: int main() { MyClass obj1(0); obj1.Print(); MyClass obj2(3); obj1.SetMember(5); obj2.SetMember(10); obj1.Print(); obj2.Print(); return 0; } 解析:本题主要考核类与对象的应用。程序中出现了3个出错标识符,说明此程序有3处错误。
    第1处错误:“MyClass obj1;obj1.Print();”,此时对象。obj1没有给出初始化值,所以应该改为“Myclass obj1(0);obj1.Print();”。
    第2处错误:“obj1.member=5;”,由于类MyClass中,数据成员member是私有成员不能通过类的对象。obj1访问。所以应该改为“obj1.SetMember(5);”。
    第3处错误:“MyClass.SetMember(10);”,此处MyClass是一个类名,这样的访问方式不合法,应该改为“obj2.SetMember(10);”。

  • 第3题:

    I was most surprised to hear Susan's marriage.

    A: very
    B: really
    C: more
    D: least

    答案:A
    解析:
    句意:苏珊结婚的消息让我很吃惊。四个选项中,B . really的意思是“真正地”;C. more的意思是“更多的”,在形容词前可表示比较级;D. least的意思是“最小的、最少的”,是littie的最高级;A. very的意思是“很、非常”,题目中画线部分most的用法很多,放在形容词前与定冠词连用表示形容词的最高级,如不加定冠词表示“很、非常”的意思,本题属于第二种情况,因此A选项符合题意。

  • 第4题:

    使用VC6打开考生文件夹下的工程test14_1,此工程包含一个源程序文件test14_1.cpp,但该程序运行有问题,请改正程序中的错误,使该程序的输出结果如下:

    member1=5member2=5

    member1=7member2=9

    源程序文件test14_1.cpp清单如下:

    include<iostream.h>

    class My Class

    {

    /************** found *****************

    friend void setMember(MyClass myObj,char meml)

    {

    myObj.member1=mem1;

    myObj.member2=mem1;

    cout<<"member1="<<myObi.member1<<" member2="<<myObj.member2<<endl;

    }

    /************** found ***************/

    void setMember(MyClass& myObj,char mem1,char mem2)

    {

    myObj.member1=mem1;

    myObj.member2=mem2;

    cout<<"member1:"<<myObj.member1<<"member2="<<myObj.member2<<endl;

    }

    private:

    char member1;

    char member2;

    };

    void main()

    {

    MyClass theObj;

    /************** found ****************/

    theObj.setMember(theObj,'5');

    theObj.setMember(theObj,'7','9');

    }


    正确答案:(1)错误:friend void setMember(MyClass myObjchar mem1) 正确:friend void set Member(MyClass & myObjchar mem1) (2)错误:void setMember(MyClass & myObjchar mem1char mem2) 正确:friend void setMembe (MyClass & myObjchar mem1char mem2) (3)错误:theObj.setMember(theObj'5'); theObj.setMember(theObj'7''9'); 正确:setMember(theOebj'5'); setMember(theObj'7''9');
    (1)错误:friend void setMember(MyClass myObj,char mem1) 正确:friend void set Member(MyClass & myObj,char mem1) (2)错误:void setMember(MyClass & myObj,char mem1,char mem2) 正确:friend void setMembe (MyClass & myObj,char mem1,char mem2) (3)错误:theObj.setMember(theObj,'5'); theObj.setMember(theObj,'7','9'); 正确:setMember(theOebj,'5'); setMember(theObj,'7','9'); 解析:(1)主要考查考生对于友元函数定义的掌握,应该使用引用调用才能改变该对象的成员值;
    (2)主要考查考生对于友元函数重载的掌握,因为前面已经有了同名函数,很明显这个函数也应该为友元函数,所以关键字friend声明;
    (3)主要考查考生是否会使用友元函数,调用友元函数和普通函数的方法一样,不需要使用对象访问。

  • 第5题:

    统计表总标题的内容应当满足“3W”要求,标明统计数据的( )。

    A.统计目的(Why)

    B.时间(when)

    C.地点(Where)

    D.何种数据(What)

    E.数据倾向(Which)


    正确答案:BCD

  • 第6题:

    共用题干
    第三篇

    Saving Money

    Where you save your money often depends on what you are saving for. If you are saving to buy a dictionary or to go to a concert,then probably keep your money somewhere in your room.
    If you are saving for a big purchase like a mountain bike or a school trip,where would you save your money?
    One place to save money is the bank.Putting your money in a savings account will help your money earn more money. If you put your money in a piggy bank(猪形储蓄罐), one year later you'll still have the same amount of money you put in?If you put your money in a savings account,one year later,you'll have more money than you put in.Why?
    When you keep your money in a bank,your money earns interest.Interest is the amount of money a bank pays you to use your money.The bank uses your money(and the money of other people,too)to loan money to people and businesses.
    The bank will send you a statement several times a year. A bank statement tells you how much money there is in your account. It also tells you how much interest you have earned.If you leave your money in the bank,you can watch it grow!
    Another way you can save money is to buy a certificate of deposit or CD.If you have some money that you don't need to use for a long time,this is a good way to make your money grow. You can buy a CD at a bank.You agree not to use the money for a certain period of time.That period might be from six months to five years.
    You can't touch your money during that time.If you do,you must pay a penalty,or fee.
    Since the bank is using your money for that time period,it will pay you interest.You will earn more interest with a CD than in a savings account. Can you guess why?It's because you promise to leave your money in the bank for a certain period of time.Banks pay different rates of interest.So, you may want to compare rates in newspaper ads before buying a CD.

    The word"touch"in Paragraph 7 could be best replaced by_______.
    A:deposit
    B:borrow
    C:use
    D:cash

    答案:C
    解析:
    文章第三段提到“Putting your money in a savings account will help your money earn more money",因此选D。
    第四段第二句“Interest is the amount of money a bank pays you to use your money",利息是银行付给储户的钱。
    第五段第二句提到bank statement告诉储户账户里有多少钱,其中利息收入是多少。
    第七段说到如果你提前支取,会被收取一定的费用,所以选D。
    touch在此的意思是储户在储蓄期内不可以取钱,因此选C。