As the saying goes, all work and no play makes Jack a dull boy. So we should ____ work

题目

As the saying goes, all work and no play makes Jack a dull boy. So we should ____ work and play.

A、keep a good balance between

B、both

C、better

D、just

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

It's nearly seven o'clock. Jack ( )be there at any moment.

A. must

B. need

C. should


正确答案:C

第2题:

将考生文件夹下WIN文件夹中的文件WORK更名为PLAY。


正确答案:略

第3题:

在Windows中,下列正确的文件名是

A.work:2

B.work*2

C.work[2]

D.work>2


正确答案:C

第4题:

2、若有以下说明和语句,则引用方式不正确的是? struct worker{ int no; char *name; }work, *p=&work;

A.work.no

B.(*p).no

C.p->no

D.work->no


work->no

第5题:

下列哪些工程名是合法的()。

A.work_2

B.work2

C.2work

D.work2_


本题答案:A

第6题:

GiventhatastaticmethoddoIt()inaclassWorkrepresentsworktobedone,whatblockofcodewillsucceedinstartinganewthreadthatwilldothework?

CODEBLOCKa:

Runnabler=newRunnable(){

publicvoidrun(){

Work.doIt();

}

};

Threadt=newThread(r);

t.start();

CODEBLOCKb:

Threadt=newThread(){

publicvoidstart(){

Work.doIt();}};

t.start();

CODEBLOCKc:

Runnabler=newRunnable(){

publicvoidrun(){

Work.doIt();

}

};

r.start();

CODEBLOCKd:

Threadt=newThread(newWork());

t.start();

CODEBLOCKe:

Runnablet=newRunnable(){

publicvoidrun(){

Work.doIt();

}

};

t.run();


参考答案:A

第7题:

在HTML文件中,( )标记在页面中显示work为斜体字。

A.<pre>work</pre>
B.<u>work</u>
C.<i>work</i>
D.<b>work</b>

答案:C
解析:
本题考查HTML的基础知识。
在HTML中,<u></u>标记定义在页面中显示文字为带下划线样式,<i></i>标记定义在页面中显示文字为斜体字样式,<b></b>标记定义在页面中显示文字为加粗样式。<pre></pre>标记的作用是可定义预格式化的文本。被包围在pre标记中的文本通常会保留空格和换行符,而文本也会呈现为等宽字体。

第8题:

We ( ) on it for many hours but we have not yet reached any conclusion.

A、have had worked

B、have been working

C、are working

D、work


参考答案:B

第9题:

若有以下说明和语句,则以下引用方式中不正确的是()。 struct worker { int no; char *name; }work, *p=&work;

A.work.no

B.(*p).no

C.p->no

D.work->no


D解析:?的优先级远高于'&'和'*'。

第10题:

若有以下说明和语句,则引用方式不正确的是? struct worker{ int no; char *name; }work, *p=&work;

A.work.no

B.(*p).no

C.p->no

D.work->no


D