問題詳情
F . Scott Fitzgerald, born on September 24,1896, an American novelist, was once a student of St.Paul Academy, the Newman School and attended Princeton. University for a short while. In 1917 he joined the army and was posted in Alabama, where he met his future wife Zelda Sayre. Then he had to make some money to impress her.His life with her was full of great happiness, as he wrote in his diary :“ My own happiness in the past often approached such joy that I could share it even with the person dearest to me but had to walk it away in quiet streets and take down parts of it in my diary.”This side of paradise, his first novel, was published in 1920. encouraged by its success, Fitzgerald began to devote more time to his writing. Then he continued with the novel the Beautiful and Damned (1922), a collection of short stories Thales of the Jazz Age (1922), and a play The Vegetable (1923). But his greatest success was The Great Gatsby, published in 1925,which quick brought him praise from the literary world Yet it failed to give him the needed financial security. Then, in 1926, he published another collection lf short stories All the Sad Young Men.However, Fitzgerald’s problems with his wife Zelda affected his writing. During the 1920s he tried to reorder his life, but failed By 1930, his wife had her first breakdown and went to a Swiss clinic During this period he completed novels Tender Is the Night in 1934 and The love of the last Tycoon in 1940. while his wife was in hospital in the United States, he got totally addicted to alcohol. Sheila Graham, his dear friend, helped him fight his alcoholism.
56.How many novels written by Fitzgerald are mentioned in the passage ?
(A) 5
(B) 6
(C) 7
(D) 8
56.How many novels written by Fitzgerald are mentioned in the passage ?
(A) 5
(B) 6
(C) 7
(D) 8
參考答案
答案:A
難度:適中0.5
統計:A(0),B(0),C(0),D(0),E(0)
內容推薦
- 65.The underlined word“inform”in Paragraph 2 probably means“ ”.(A)affect (B)change (C)disturb (D
- 38(A) when (B)before (C)unless (D)until
- Teachers recommend parents their children under 12 to ride bicycles to school for safety.(A)not a
- 55(A) thrown (B) lost (C) divided (D) reflected
- 46(A) guessed (B) forget (C) doubted (D) ignored
- CBusinesses are witnessing a difficult time, which has in turn produced influence on consumers’ edsi
- 37(A) ahead (B) around (C) along (D)aside
- Every year a flood of farmers arrive in shenzhen for the money—making jobs theybefore leaving the
- 54(A) it (B) us (C) me (D)them
- 45(A) farm (B) stand (C) pond (D) marked
內容推薦
- 66.According to Harry Morrison, businesses .(A)will benefit from cutting carbon emissions(B)shou
- 48(A) second (B) effort (C) desire (D) movement
- Which of the following is the correct order to describe Fitzgerald’s life according to the p
- 67 .We can learn from the passage that businesses will .(A)have a strong desire to reduce costs(
- 49(A) forcing (B)allowing (C) persuading (D) leading
- We can infer from the passage that Fitzgerald .(A) had made some money when he met Zelda in
- Columbus College , 241 Queen Elizabeth Drive ,Kowloon CityTo: All StaffFrom: Jakie Mok , Secretary;S
- The passage is probably followed by a concluding paragraph about .(A) Zelda’s personal life(
- It can be inferred from the passage that(A)students taking part in basket ball will walk to t
- 1 企業型官僚與民主政治間會有何種緊張關係存在?(A)行政與人民互動間緊張關係(B)企業自主與民主課責緊張關係(C)非營利組織與立法緊張關係(D)利益團體與行政間緊張關係
- 《官僚內幕》(Inside Bureaucracy)作者:(A) 貝隆( C. J. Bellone )(B) 尼斯坎南( W.Niskanen)(C) 歐斯洞( V.Ostrom )(D) 黨斯(
- It can be concluded that(A)each sport will take only on hour(B)students will be chaarged for
- The purpose of the memo is to(A)attract students’interest in the programme(B)require the pare
- 10)有两个关系R和T如下: 则由关系K得到关系T的操作是(A)选择 (B)投影 (C)交 (D)并
- 2)算法的时间复杂度是指(A)算法的执行时间 (B)算法所处理的数据量 (C)算法程序中的语句或指令条数 (D)算法在执行过程中所需要的基本运算次数
- 11)以下叙述正确的是(A)C语言程序是由过程和函数组成的 (B)C语言函数可以嵌套调用,例如:fun(fun(x)) (C)C语言函数不可以单独编译 (D)C语言中除了main函数,其他函数不
- 20)有以下程序 #include<s七dio.h> main ) {in i,j,m=1; for i=1;i<3;i++) {for j=3;j>O;j--) {if i*j)>3)b
- 3)软件按功能可以分为:应用软件、系统软件和支撑软件 或工具软件)。下面属于系统软件的是(A)编辑软件 (B)操作系统 (C)教务管理系统 (D)浏览器
- 12)以下关于C语言的叙述中正确的是(A)C语言中的注释不可以夹在变量名或关键字的中间 (B)C语言中的变量可以在使用之前的任何位置进行定义 (C)在C语言算术表达式的书写中,运算符两侧的运算数类
- 21)有以下程序 #include stdio.h> main ) {int a=l;b=2; for ;a<8;a++) {b+=a;a+=2;} printf "%d,%d\n
- 30)有以下程序 #include main ) {int b [3][3]={O,1,2,0,1,2,O,1,2},i,j,t=1; for i=0;i<3;i++) for j=
- 4)软件 程序)调试的任务是(A)诊断和改正程序中的错误 (B)尽可能多地发现程序中的错误 (C)发现并改正程序中的所有错误 (D)确定程序中错误的性质
- 13)以下C语言用户标识符中,不合法的是(A)_ (B)AaBc (C)a_b (D)a-b
- 22)有以下程序,其中k的初值为八进制数 #include main ) {int k=011; printf "%d\n",k++); } 程序运行后的输出结果是(
- 40)有以下程序 #include main ) { FILE *fp;char str[10]; fp=fopen "myfile.dat","w"