【判断题】【消耗次数:1】
In 1916-1917, military service was considered a romantic occupation because the young men of college age at that time knew nothing of modern warfare.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 Only about one out of twelve of the young men and women of this country ____ college education.
①  receive
②  receives
③  have received
④  have been received
【单选题】 “The Sad Young Men” actually refers to _________.
①  the lost generation
②  the angry young men
③  Beat generation
④  the war profiteers
【单选题】 The young men began to enlist for ________.
①  fun in the war
②  the war before it was too late
③  the democracy before the war ended
④  the Victorian gentility after the war
【单选题】 The Sad Young Men included a group of young intellectuals except ________.
①  Hemingway and Dos Passos
②  Rod W. Horton and Herbert W. Edwards
③  F. Scott Fitzgerald and Eugene O’Neill
④  Ezra Pound, T. S. Eliot and E. E. Cummings
【单选题】 ____ of them knew about the plan because it was a secret.
①  Some
②  Any
③  No one
④  None
【单选题】 Which of the following did the Sad Young Men enjoy?
①  the Babbitts
②  Victorian gentility
③  Bohemianism and eccentricity
④  The hypocritical do-goodism of Prohibition
【单选题】 The electric fan does not work because of the ____ of service.
①  pause
②  break
③  interruption
④  breakdown
【单选题】 The electric fan does not work because of the _____of service.
①  pause
②  break
③  interruption
④  breakdown
【单选题】 —Have you considered ____ your job as a teacher? —Yes. I like the job because a teacher is often considered a gardener.
①  ?to change; to be
②  ?to change; being
③  ?changing; being
④  ?changing; to be
【单选题】 2. — Have you considered _____ your job as a teacher? —Yes. I like the job because a teacher is often considered _____ a gardener.
①  to change; to be
②  to change; being
③  changing; being
④  changing; to be
随机题目
【单选题】 以下程序段运行后,x[1]的值为()。intx[5]={5,4,3,2,1};x[1]=x[3]+x[2+2]-x[3-1];
①  6
②  0
③  1
④  5
【单选题】 构成C源程序的基本单位是()
①  语句
②  变量
③  运算符
④  函数
【单选题】 t和q分别指向图中所示结点:ptq↓↓↓┌──┬──┐┌──┬──┐┌──┬──┐│data│next┼→│data│next┼→│data│next┼→...└──┴──┘└──┴──┘└──┴──┘现要将t和q所指结点的先后位置交换,同时要保持链表的连续,以下错误的程序段是()
①  t-next=q-p-next=q;q-next=t;
②  p-next=q;t-next=q-q-next=t;
③  q-next=t;t-next=q-p-next=q;
④  t-next=q-q-next=t;p-next=q;
【单选题】 下列程序段中,非死循环的是()。
①  inti=100;while(1){i=i%100+1;if(i=100)break;}
②  intk=0;do{++k;}while(k
③  ints=10;while(++s%2+s%2)s++;
④  for(;;)
【单选题】
①  5
②  7
③  10
④  0
【单选题】
①  -1
②  1
③  0
④  5
【单选题】 下面关于C语言变量的叙述中,错误的是()。
①  可以用define关键字定义变量
②  变量名用大小写字母是有区别的
③  C语言允许不同基本类型的变量之间进行混合运算
④  C语言中要求对变量作强制定义的主要理由是:便于确定类型和分配空间
【单选题】
①  0
②  1
③  9
④  20
【单选题】 若有定义:inta;则表达式(B)不能用来判断a值为奇数是“真”,偶数是“假”。
①  a%2==1
②  !(a%2)
③  a%2
④  !(a%2==0)
【单选题】 以下程序的运行结果是()。voidmain(){ints=0,i=0;while(i8){i++;if(i%2==0)continue;s+=i;}printf("%d\n",s);}
①  36
②  7
③  16
④  12