191 Which is not one of the five classifications of work found in a purchasing operafion?A. ManagementB. BuyingC. Follow-up and expeditingD. MarketingE. Clerical

题目

191 Which is not one of the five classifications of work found in a purchasing operafion?

A. Management

B. Buying

C. Follow-up and expediting

D. Marketing

E. Clerical


相似考题
更多“191Which is not one of the five classifications of work found in a purchasing operafion? A ”相关问题
  • 第1题:

    Apple is a()word.

    A、five-letter

    B、five-letters

    C、fives-letters

    D、five letters


    正确答案: D

  • 第2题:

    执行下列程序,显示的结果是【 】。

    ne="WORK"

    two=""

    a=LEN(one)

    i=a

    DO WHILE i>=l

    two=two+SUBSTR(one,i, 1)

    i=i-1

    ENDDO

    ?two


    正确答案:KROW
    KROW 解析:DO WHILE—ENDDO语句格式:
    DO WHILE条件>
    语句序列1>
    [LOOP]
    语句序列2>
    [EXIT]
    语句序列3>
    ENDDO
    执行该语句时,先判断DO WHILE处的循环条件是否成立,如果条件为真,则执行DO WHILE与ENDDO之间的命令序列(循环体)。当执行到ENDDO时,返回到DO WHILE,再次判断循环条件是否为真,以确定是否再次执行循环体。若条件为假,则结束该循环语句,执行ENDDO后面的语句。
    而常用函数中:LEN(字符表达式):返回一个字符串的长度,返回值是数值型。
    SUBSTR(字符表达式,起点位置[,长度]):在一个字符串中,从指定位置起返回给定长度的子串,返回值是字符型。

  • 第3题:

    During this period American car manufacturers set about improving their products and work efficiency.As a result,the yearly income of the average family increased from 1950 to 1975 faster than the price of cars.For this reason( )a new car takes a smaller part of a family s total earmnings today.

    A.bringing
    B.obtain
    C.bought
    D.purchasing

    答案:D
    解析:
    purchase,买(正式用语)。

  • 第4题:

    A General Election is held every __ years and there are ___ members of Parliaments are elected.

    A.five, 600

    B.five, 650

    C.five, 651

    D.four, 651


    正确答案:C

  • 第5题:

    13.

    A. four’thirty

    B. five

    C. five’fifteen

    D. five’thirty


    正确答案:A

  • 第6题:

    【填空题】运行下列程序,输出结果是____。 #include <iostream> using namespace std; enum opt{ONE,TWO,THREE,FOUR,FIVE,SIX,SEVEN}op; int main(void) { cout<<ONE; cout<<TWO; cout<<SIX; return 0; }


    B 解析:本题考查循环辅助控制语句break和continue,前者退出整个for循环,后者跳过本次循环没有执行完的若干条语句,开始下一次循环操作,建议读者采用本书推荐的列表法分析。