【单选题】【消耗次数:1】
The History of Tom Jones, a Foundling written by Henry Fielding is a/an __________
Essay
Novel
Prose
Poem
参考答案:
复制
纠错
相关题目
【判断题】 The History of Tom Jones, a Foundling written by Henry Fielding is a/an Essay.
①  正确
②  错误
【单选题】 Which of the following is not written by Henry James?
①  Daisy Miller
②  The Wings of the Dove
③  The American
④  Self-Reliance
【单选题】 This morning he bought a novel. [] was written by Mao Dun.
①  It
②  Which
③  At
④  That
【单选题】 Tom ____more than twenty pounds on the novel.
①  spent
②  paid
③  cost
④  took
【单选题】 Tom ________ more than twenty pounds on the novel.
①  spent
②  paid
③  cost
④  took
【单选题】 “The apparition of these faces in the crowd; Petals on a wet, black bough”. This is the shortest poem written by?______.
①  T. S. Eliot
②  Robert Frost
③  Ezra Pound
④  Wallace Stevens
【单选题】 Beowulf, the oldest great long poem ever written in English, is composed in a form of____.
①  epics
②  lyrics
③  folk songs
④  sagas
【判断题】 Beowulf, the oldest great long poem ever written in English, is composed in a form of epics.
①  正确
②  错误
【判断题】 “The apparition of these faces in the crowd; Petals on a wet, black bough”. This is the shortest poem written by?Robert Frost.
①  正确
②  错误
【单选题】 Stylistically, Henry James’ fiction is characterized by ________.
①  highly refined language
②  ordinary American speech
③  short, clear sentences
④  abundance of local images
随机题目
【单选题】 下述程序的运行结果( )。 #includevoid main() { int a=5,b=4,c=3,d=2; if(ac)printf(%d\n else if((c-1=d)==1)printf(%d\n,d+1); else printf(%d\n,d+2); }
①  0
②  1
③  2
④  3
【单选题】 以下不正确的语句为( )。
①  if(x
②  if(x=y)(x!=0)x+=y;
③  if(x!=y)scanf(%d,else scanf(%d,y)
④  if(xy){x++;y++;}
【单选题】 以下程序的运行结果是( )。 Main() {int k=4,a=3,b=2,c=; printf(\n %d\n,ka?k:cb?c:a); }
①  4
②  3
③  2
④  1
【单选题】 有如下程序段,从键盘输入数据的正确形式应是( )。(注:?代表空格) int x,y,z; scanf(x=%d,y=%d,z=%d,x,y,
①  123
②  x=1, y=2, z=3
③  1, 2, 3
④  x=1?y=2?z=3
【单选题】 以下正确的叙述是( )。
①  在C程序中,每行中只能写一条语句
②  若a是实型变量,C程序中允许赋值a=10,因此实型变量中允许存放整型数。
③  在C程序中,无论是整数还是实数,都能被准确无误的表示。
④  在C程序中,%只能用于整数运算的运算符。
【单选题】 下列四组选项中,均不是C语言关键字的选项是( )。
①  define IF type
②  getc char printf
③  include scanf case
④  while go pow
【单选题】 C语言中的基本数据类型包括( )。
①  整型、实型、逻辑型
②  整型、实型、字符型
③  整型、字符型、逻辑型
④  整型、实型、逻辑型、字符型
【单选题】 下列四组选项中,均是C语言关键字的选项是( )。
①  auto enum include
②  switch typedef continue
③  signed union scanf
④  if struct type
【单选题】 以下符合C语言语法的赋值表达式是( )。
①  d=9+e+f=d+9
②  d=9+e,f=d+9
③  d=9+e,e++,d+9
④  d=9+e++=d+7
【单选题】 以下不正确的叙述是( )。
①  在C程序中,逗号运算符的优先级最低。
②  在C程序中,APH和aph是两个不同的变量
③  若a和b类型相同,在执行了赋值表达式a=b后b中的值将放入a中,而b中的值不变。
④  当从键盘输入数据时,对于整形变量只能输入整型数值,对于实型变量智能输入实型数值。