更多“Are those your books? I want to borrow some good _____. A. one B. once C. ”相关问题
  • 第1题:

    下列程序的运行结果是【 】。 include class SomeClass { public: SomeClass(int va

    下列程序的运行结果是【 】。

    include <iostream. h>

    class SomeClass

    {

    public:

    SomeClass(int value) { some_value=value;};

    void show_data(void) { cout<<data<<"<<~some_value<<endl; };

    static void set_data(int value) {data=value; }

    private:

    static int data;

    int some_value

    };

    int SomeClass::data

    void main(void)

    {

    SomeClass my_class(1001),your_class(2002);

    your_class. set_data(4004);

    my_elass. show_data()

    }


    正确答案:4004 1001
    4004 1001 解析:本题考查静态成员变量在不同对象间的共享现象。无论哪个对象修改了其静态变量的值,其他对象再访问该变量时已经发生了变化。

  • 第2题:

    A: I’d like ________ information about the school. B: You could have ________ word with the schoolmaster.

    A.some / a

    B.an / some

    C.some / some


    参考答案:A

  • 第3题:

    30、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { for(j=0;books[i][j]!=0;j++){ if(books[i][0]<books[i][j]) books[i][0]= books[i][j]; } } printf("%c",books[0][0]); return 0; }

    A.E

    B.s

    C.n

    D.h


    B 解析: 本题涉及字符串最基本的两个概念:①字符串的长度是指字符串中字符的个数,但不包括字符串结束符;②以反斜杠“\\”开头的特殊字符序列,意思是把反斜杠后面的字符序列转换成特定的含义,而不是原来的含义,不包含在字符串长度之内,“\\”连同后面的字符为一个长度。

  • 第4题:

    I______to be a scientist when I______ a boy.

    A、wanted, was

    B、want, am

    C、wanted, am

    D、want, was


    正确答案:A

  • 第5题:

    ()are?those?costs?that?cannot?be?directly?traced?to?a specific?project?and?therefore?will?be?accumulated?and allocated?equitably?over?multiple?projects?by?some?approved and?documented?accounting?procedure.

    A.Direct costs
    B.Operation costs
    C.Indirect costs
    D.Implement costs

    答案:C
    解析:
    本题翻译:
    ()是指不能直接追溯到特定项目的成本,因此将通过一些批准和记录的会计程序在多个项目上平均累计和分配。
    A.直接成本B.运营成本C.间接成本D.实施成本
    本题考查成本的分类,不能直接的就可以理解为间接,间接成本:来自一般管理费用科目或几个项目共同负担的项目成本所分摊给本项目的费用。
    而成本管理中不是涉及运营成本、实施成本。排除BD选项。所以此题选择C选项。

  • 第6题:

    29、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { strcat(books[i],"book"); } printf("%s",&books[i-1][3]); return 0; }

    A.Physicalbook

    B.sical

    C.Physical

    D.sicalbook


    B 解析: 本题涉及字符串最基本的两个概念:①字符串的长度是指字符串中字符的个数,但不包括字符串结束符;②以反斜杠“\\”开头的特殊字符序列,意思是把反斜杠后面的字符序列转换成特定的含义,而不是原来的含义,不包含在字符串长度之内,“\\”连同后面的字符为一个长度。