niusouti.com

195 The person sending a message is NOT influenced by which of the followingA. sender's credibilityB. receiver's assumptionsC. receiver's evaluative and tendencyD. receiver's attitude and needsE. sender's knowledge

题目

195 The person sending a message is NOT influenced by which of the following

A. sender's credibility

B. receiver's assumptions

C. receiver's evaluative and tendency

D. receiver's attitude and needs

E. sender's knowledge


相似考题
参考答案和解析
正确答案:C
更多“195The person sending a message is NOT influenced by which of the following A.sender's cre ”相关问题
  • 第1题:

    ()father took part in the charity activity in the neighborhood yesterday?

    Peter's.

    A. Whose

    B. What

    C. Which


    参考答案:A

  • 第2题:

    使用VC6打开考生文件夹下的工程test28_3。此工程包含一个test28_3.cpp,其中定义了类Person,但该类的定义并不完整。请按要求完成下列操作,将程序补充完整。

    (1)定义类Person的私有数据成员forename、surname 和 money,forename 和 surname都是char型的指针数据,money是double型的数据。请在注释“//**1**”之后添加适当的语句。

    (2)完成类Person的带三个参数的构造函数Person(char *f, char *s,double m),分别为forename和surname申请新的空间来存储参数f和s指针指向的内容,注意空间的大小,最后把参数m的值赋给money,请在注释“//**2**”之后添加适当的语句。

    (3)完成类Person的析构函数的定义,把forename和surname指向的空间释放,请在注释“//**3**”之后添加适当的语句。

    (4)完成类Person的成员函数display的定义,使其以格式“forname surname has money”的形式输出内容,请在注释“//**4*。”之后添加适当的语句。

    注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。

    输出结果如下:

    Richard Berk has 1000.56

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

    include <iostream.h>

    include <string.h>

    class Person

    {

    private:

    //** 1 **

    double money;

    public:

    Person(char *f, char *s, double m);

    ~Person();

    void display();

    };

    Person::Person(char *f, char *s, double m)

    {

    //** 2 **

    strcpy(forename, f);

    surname = new char[strlen(s)+1];

    strcpy(surname, s);

    money=m;

    }

    Person: :-Person ()

    {

    //** 3 **

    }

    void Person:: display ( )

    {

    //** 4 **

    }

    void main ( )

    {

    Person p("Richard", "Berk", 1000.56);

    p.display ( );

    }


    正确答案:(1) char *forename; char *surname; (2) forename = new char[strlen(f)+1]; (3) delete []forename; delete []surname; (4) coutforename" "surname"has"moneyend1;
    (1) char *forename; char *surname; (2) forename = new char[strlen(f)+1]; (3) delete []forename; delete []surname; (4) coutforename" "surname"has"moneyend1; 解析:主要考查考生对于类的定义和字符指针的动态空间申请和释放的掌握,具中(2)中new关键字是动态申请空间,里面使用了函数strlen,该函数是返回参数字符串的长度,之所以加一是要加入字符串结尾标志,这一点考生切记。(3)中 delete是释放动态内存的关键字,释放一位数组占用的内存格式是先写[],之后是指针名,括号内不写数组的大小。

  • 第3题:

    The Declaration of Inspection made before oil transfer operations must be signed by the ______.

    A.Master of the vessel

    B.Captain of the Port

    C.person(s) in charge

    D.All of the above


    正确答案:C

  • 第4题:

    Youarecreatinganerrorpagethatprovidesauser-friendlyscreenwheneveraserverexceptionoccurs.Youwanttohidethestacktrace,butyoudowanttoprovidetheexception’serrormessagetotheusersotheusercanprovideittothecustomerserviceagentatyourcompany.WhichELcodesnippetinsertsthiserrormessageintotheerrorpage?()

    A.Message:<b>${exception.message}</b>

    B.Message:<b>${exception.errorMessage}</b>

    C.Message:<b>${request.exception.message}</b>

    D.Message:<b>${pageContext.exception.message}</b>

    E.Message:<b>${request.exception.errorMessage}</b>


    参考答案:D

  • 第5题:

    Melissa and Love Letter made use of the trust that exists between friends or colleagues. Imagine receiving an(66)from a friend who asks you to open it. This is what happens with Melissa and several other similar email(67).Upon running, such worms usually proceed to send themselves out to email addresses from the victim' s address book ,previous emails, web pages(68).

    As administrators seek to block dangerous email attachments through the recognition of well- known (69), virus writers use other extensions to circumvent such protection. Executable (.exe) files are renamed to . bat and . cnd plus a whole list of other extensions and will still run and successfully infect target users. Frequently, hackers try to penetrate networks by sending an attachment that looks like a flash movie, which, while displaying some cute animation, simultaneously runs commands in the background to steal your passwords and give the(70)access to your network.

    A.attachment

    B.paeket

    C.datagram

    D.message


    正确答案:A
    解析:梅丽莎病毒和爱虫病毒都是利用同事或朋友之间的信任。假设收到一封来自朋友的附件,并让你打开看看,这就是梅丽莎以及其他类似的邮件病毒惯用的方式。不断地前进,这些“蠕虫”会将自己寄给那些从牺牲者的邮件薄里或上一封邮件或网页登陆得来的邮箱地址。当管理员致力于阻止危险邮件通过知名软件的识别时,那些病毒制造者又在利用其他途径来回避这种保护,可执行文件被重新命名为批处理文件或dos文件加上一系列扩展名,将仍旧成功地感染终端使用者,黑客们经常会努力发一些看起来像动画电影的附件来进入网络,这些附件可以一边展现极具吸引力的动画制作技术,一边暗地里执行一些命令来获取你的密码,并安装一个炸弹进入你的网络。

  • 第6题:

    _________

    A.passing
    B.doing
    C.carrying
    D.sending

    答案:C
    解析: