In the dictionary a workaholic is () as a person obsessively addicted to work.A、regardedB、definedC、takenD、labeled

题目
In the dictionary a workaholic is () as a person obsessively addicted to work.

A、regarded

B、defined

C、taken

D、labeled


相似考题
更多“In the dictionary a workaholic is () as a person obsessively addicted to work. ”相关问题
  • 第1题:

    A data( )is a file that contains metadata—that is,data about data.

    A.structure

    B.table

    C.base

    D.dictionary


    正确答案:D
    解析:数据字典就是包含元数据的文件,即关于数据的数据。

  • 第2题:

    This is a()dictionary.

    Aone lingual

    Bsingle lingual

    Cmonolingual

    Dsololigual


    C

  • 第3题:

    以下创建字典的语句中,会引发异常的是

    A.d = {}

    B.d = {(4,5,6):'dictionary'}

    C.d = {4:6}

    D.d = {[4,5,6]:'dictionary'}


    d = {[4,5,6]:'dictionary'}

  • 第4题:

    Dictionary对象的缺省属性为(),所以可以直接对Dictionary对象进行缺省操作。
    Item

  • 第5题:

    Person类可能的拷贝构造函数格式为:

    A.Person(){}

    B.Person(Person *p){}

    C.Person(Person &p){}

    D.Person(Person p){}


    Person(const Person& p);

  • 第6题:

    【计算题】(6-9)定义Person类(属性有姓名,年龄),完成如下任务: (1)在Test类中定义方法Boolean contains(Person[]per,Person temp),该方法判断Person数组是否有Person对象temp,如果数组中存在与per相同的Person对象返回boolean; (2)定义showPerson(Person[] per)输出Person对象数组所有元素; (3)对上面定义的方法进行测试。


    TestHashCode.java