The working conditions in your store are better than those in my factory.(翻译)

题目
The working conditions in your store are better than those in my factory.(翻译)

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

第1题:

Nice to meet____(your).


正确答案:
37. you

第2题:

The price of our new products is 8%()than()of similar products of Japanese origin.

A、lower⋯that

B、below⋯those

C、under⋯that

D、lower⋯those


参考答案:A

第3题:

9.Which do you like _________ ,Beijing _________ Shanghai?

A. better,or

B. best,or

C. better,and

D. best,and


正确答案:C

第4题:

Which of the following shows the correct sentence stress in normal cases


A.His 'brother is my 'best Mend.

B.They 'help one 'another in their work.

C.They have 'been in the 'countryside recently.

D.She 'thought herself 'better 'than 'anyone else.

答案:A
解析:
考查句子重读规则。在英语连贯的说话和朗读中,有些词说得或读得又轻又快,而且较为含糊。有些词则说得或读得又重又慢,而且较为清晰。那些说得或读得响亮而清晰的词就是句子重音所在。一般来说,在句子中需重读的词都是实词,比如.名词、动词(除be动词和助动词外)、形容词、副词、指示代词等;不重读的多为虚词,比如,冠词、连词、介词、人称代词、相互代词等。但这也不是绝对的,一个词在句中重读与否,同它在句中所起的意义和作用有密切的关系。B、C、D三项中均有不属于重读范围的词。即B项one another是相互代词,C项been是be动词的过去分词形式,D项than是介词。故选A。

第5题:

下列程序的运行结果是【 】。 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 解析:本题考查静态成员变量在不同对象间的共享现象。无论哪个对象修改了其静态变量的值,其他对象再访问该变量时已经发生了变化。

第6题:

—Which subject do you like______?

—I like chemistry than any other one.

A. better, better

B. best, better

C. best, best

D. better, best


正确答案:B
10.答案为B  参考译文:——你最喜欢哪门课?——相对其他课程我比较喜欢化学课。本题考查形容词的比较级和最高级的应用。

第7题:

What's ( )job? Are ( ) British?

A. your, your

B. you, your

C. your, you


正确答案:C

第8题:

7. Hi! This is_______ new teacher.__________ name is Linda.

A. your; My

B. his; Your

C. your ; Her

D. her; His


正确答案:C
7.C【解析】只看第一个空四个选项在字面上都符合。根据句意,是介绍他人,所以第二个空就排除了A、B。又因为Linda是女名,所以排除D。

第9题:

( ) – Is Miss White __________ English teacher, Maria?

– No, she teaches __________ geography.

A.your;my

B.you;mine

C.you;us

D.your;us


正确答案:D

第10题:

【单选题】下面程序的输出是。 main() {enum team {my,your=4,his,her=his+10}; printf("%d%d%d%dn",my,your,his,her);}

A.0 1 2 3

B.0 4 0 10

C.0 4 5 15

D.l 4 5 15


DDBBCC C语言对枚举的定义规定:在枚举中声明的各个枚举元素,如果没有明确指出某个枚举元素的值,它的上一个元素存在并有明确值的情况下,这个枚举元素的值为其上一个元素的值+1。在本题中,没有明确说明枚举元素em3的值,则em3=em2+1=1+1=2,进而可知,在printf()打印函数中,要打印的数组元素是aa[3]、aa[1]、aa[2],因此最后的打印结果应当为“DDBBCC”。