If a project manager communicates a verbal message to a subordinate, and the subordinate leaves without saying a word, the project manager should assume:A the message was understoodB the message was not understoodC the subordinate discarded the informatio

题目

If a project manager communicates a verbal message to a subordinate, and the subordinate leaves without saying a word, the project manager should assume:

A the message was understood

B the message was not understood

C the subordinate discarded the information

D the information was not appropriate

E None of the above.


相似考题
参考答案和解析
正确答案:E
更多“If a project manager communicates a verbal message to a subordinate, and the subordinate l ”相关问题
  • 第1题:

    从以下备选答案内为程序中(3)~(7)处空缺选择正确答案。(3)A.request B.response C.application D.session(4)A.rs.eof B.rs.bof C.notrs.eof D.notrs.bof(5)A.i+1 B.rs.recordnumber C.rs.recordcount D.i(6)A.<table name="message" cols="40" rows="5" id="message"></table> B.<textarea name="message" cols="40" rows="5" id="message"></textarea> C.<input name="message" cols="40"rows="5" id="message"></input> D.<IMG nClick=over(this)title=放大name="message"cols="40"rows="5"id="message"></IMG nClick=over(this)title=放大>(7)A.submit B.text C.post D.radio


    正确答案:(3)B或response(4)C或notrs.eof(5)D或i (6)B或textarea name="message" cols="40" rows="5" id="message">/textarea> (7)A或submit
    (3)B或response(4)C或notrs.eof(5)D或i (6)B或textarea name="message" cols="40" rows="5" id="message">/textarea> (7)A或submit 解析:Active Server Pages提供内建对象,这些对象使用户更容易收集通过浏览器请求发送的信息、响应浏览器及存储用户信息(如用户首选项)。本文简要说明每一个对象。
    .Application对象:用于给定应用程序的所有用户共享信息。
    .Request对象:使用Request对象访问任何用HTTP请求传递的信息,包括从HTML表格用POST方法或GET方法传递的参数、cookie和用户认证。Request对象使用户能够访问发送给服务器的二进制数据,如上传的文件。
    .Response对象:用于控制发送给用户的信息。包括直接发送信息给浏览器、重定向浏览器到另一个URL或设置cookie的值。
    .Server对象:提供对服务器上的方法和属性进行的访问。最常用的方法是创建
    ActiveX组件的实例(Server Create Object)。其他方法用于将URL或HTML编码成字符串,将虚拟路径映射到物理路径及设置脚本的超时期限。
    .Session对象:用于存储特定的用户会话所需的信息。当用户在应用程序的页之间跳转时,存储在Session对象中的变量不会清除;而用户在应用程序中访问页时,这些变量始终存在。也可以使用Session方法显式地结束一个会话和设置空闲会话的超时期限。
    .ObjectContext对象:用于提交或撤销由ASP脚本初始化的事务。

  • 第2题:

    Just because I’m________ to him, my boss thinks he can order me around without showing me any respect.

    A.redundant
    B.trivial
    C.versatile
    D.subordinate

    答案:D
    解析:
    本题考查形容词辨析

    句意为“仅仅因为我 _______他,我的老板就认为他可以随意指使我而不给我一点尊重”subordinate “从属的,上级对下级的”。根据题意,应该为我是他的下属,综上,D选项正确。

    A选项,redundant “多余的”,故排除。

    B选项,trivial“琐碎的,微不足道的”,故排除。

    C选项,versatile “多才多艺的”,故排除。

    故正确答案为D项。

  • 第3题:

    What is the construction of the sentence “The boy smiled”?( )

    A.Exocentric
    B.Endocentric
    C.Coordinate
    D.Subordinate

    答案:A
    解析:
    考查语义知识。Exocentric construction(离心结构)refers to a group of syntactically related words where none of the words is functionally equivalent to the group as a whole.There is no definable “Center” or“Head”inside the group,

  • 第4题:

    TwoVPNpeersarenegotiatingIKEphase1usingmainmode.Whichmessagepairinthenegotiation containsthephase1proposalforthepeers?()

    A.message1and2

    B.message3and4

    C.message5and6

    D.message7and8


    参考答案:B

  • 第5题:

    Just because I’m( )to him,my boss thinks he can order me around without showing me any respect.

    A.redundant
    B.versatile
    C.trivial
    D.subordinate

    答案:D
    解析:
    本题考察词义辨析,题目意为“我的老板觉得可以不顾我的尊严而任意指使我做事情,就是因为我是他的属下。”A选项意为“过多的,冗长的”,B选项意为“多才多艺的”,C选项意为“琐碎的,不重要的”,D选项意为“下级的,隶属的”。说话人和老板是上下级关系。
      

  • 第6题:

    已知基类Employee只有一个构造函数,其定义如下: Employee::Employee(int n):id(n){ } Manager是Employee的派生类,则下列对Manager的构造函数的定义中,正确的是?

    A.Manager::Manager(int n):id(n){}

    B.Manager::Manager(int n){id=n;}

    C.Manager::Manager(int n):Employee(n){}

    D.Manager::Manager(int n){Employee(n);}


    Manger::manger(int n):Employee(n){}