网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
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. A、regardedB、definedC、takenD、labeled ” 相关考题
考题 Smokers become _______ to nicotine, and on stopping smoking the sudden loss of nicotine can cause unpleasant illnesses. (A) belong(B) addict(C) addicted(D) belonged

考题 The ability to tolerate pain varies ______ person ______ person. (A) between … and(B) both … and(C) from … to(D) of … to

考题 Between labor and play______(stand)work.

考题 Xiao Ming is( )about everything and keeps asking questions.A.stubbornB.interestedC.curiousD.addicted

考题 A data( )is a file that contains metadata—that is,data about data.A.structureB.tableC.baseD.dictionary

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

考题 This is a()dictionary.Aone lingualBsingle lingualCmonolingualDsololigual

考题 Person类可能的拷贝构造函数格式为:A.Person(){}B.Person(Person *p){}C.Person(Person p){}D.Person(Person p){}

考题 以下创建字典的语句中,会引发异常的是A.d = {}B.d = {(4,5,6):'dictionary'}C.d = {4:6}D.d = {[4,5,6]:'dictionary'}

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